
/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #eee1d9; /* Background color for the entire website, including individual sections */
    --default-color: #56443f; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #8b645a; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #a47864; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #e4cabb; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #f1e9df; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #e4c7b7;  /* The default color of the main navmenu links */
    --nav-hover-color: #a47864; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #fefdfc; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #fefdfc; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #56443f; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #a47864; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

#odryas .light-background {
    --background-color: #eee1d9;
    --surface-color: #ffffff;
}

#odryas .dark-background {
    --background-color: #56443f;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #8b645a;
    --contrast-color: #ffffff;
}


/* HOME HERO */
#odryas .travel-hero {
    background: linear-gradient(180deg, color-mix(in srgb, var(--background-color), transparent 10%) 0%, color-mix(in srgb, var(--accent-color), transparent 70%) 100%), url("../img/odryas/hero/odryas-vastu-shastra-ganesh.webp") center center no-repeat;
    background-size: cover;
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

#odryas .bg-fonce {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}


#odryas .why-us .intro-content .tagline {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 1rem;
    padding: 6px 16px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 4px;
}



#odryas .call-to-action .cta-image .image-accent-border-left {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-color);
    border-radius: 16px;
    z-index: -1;
}

@media (max-width: 992px) {
    #odryas .call-to-action .cta-image .image-accent-border-left {
        display: none;
    }
}

#odryas .featured-destinations .help-banner {
    margin-top: 10px;
}


/* TARIF  */

#odryas .travel-tour-details .inclusions-grid .inc-card.included-moccha {
    background: color-mix(in srgb, #a47864, transparent 94%);
    border: 1px solid color-mix(in srgb, #a47864, transparent 80%);
}

#odryas .travel-tour-details .inclusions-grid .inc-card.included-fonce {
    background: color-mix(in srgb, #a47864, transparent 94%);
    border: 1px solid color-mix(in srgb, #8b645a, transparent 80%);
}

/*
#odryas .travel-tour-details .inclusions-grid .inc-card.included-fonce h3 {
    color: #8b645a;
}
*/


/* FORMULAIRE CONTACT, DEMANDE DEVIS */

#odryas .contact .form-card {
    height: inherit;
}

#odryas .contact .expliq-devis {
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    #odryas .contact .expliq-devis {
        margin-bottom: 20px;
    }
}

#odryas .contact .expliq-devis .inc-card {
    padding: 36px;
    border-radius: 16px;
    height: 100%;
}

#odryas .contact .expliq-devis .inc-card h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#odryas .contact .expliq-devis .inc-card h3 i {
    font-size: 1.2rem;
}

#odryas .contact .expliq-devis .inc-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#odryas .contact .expliq-devis .inc-card ul li {
    position: relative;
    padding: 10px 0 10px 28px;
    font-size: 0.95rem;
    line-height: 1.5;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 65%);
}

#odryas .contact .expliq-devis .inc-card ul li:last-child {
    border-bottom: none;
}

#odryas .contact .expliq-devis .inc-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

#odryas .contact .expliq-devis .inc-card.included {
    background: color-mix(in srgb, #8b645a, transparent 94%);
    border: 1px solid color-mix(in srgb, #8b645a, transparent 80%);
}

#odryas .contact .expliq-devis .inc-card.included h3 {
    color: #8b645a;
}

#odryas .contact .expliq-devis .inc-card.included h3 i {
    color: #8b645a;
}

#odryas .contact .expliq-devis .inc-card.included ul li::before {
    background: #8b645a;
}


/* RETOUR PAIEMENT */
.confirm-paiement {
    padding: 120px 0;
    /*min-height: 100vh;*/
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 100%);
}

.confirm-paiement .confirm-paiement-content {
    margin-bottom: 80px;
}



.confirm-paiement .confirm-paiement-content .confirm-paiement-title {
    font-size: 3rem;
    font-weight: 300;
    color: var(--heading-color);
    margin-bottom: 30px;
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    .confirm-paiement .confirm-paiement-content .confirm-paiement-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .confirm-paiement .confirm-paiement-content .confirm-paiement-title {
        font-size: 2rem;
    }
}

.confirm-paiement .confirm-paiement-content .confirm-paiement-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .confirm-paiement .confirm-paiement-content .confirm-paiement-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }
}

.confirm-paiement .confirm-paiement-content .confirm-paiement-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.confirm-paiement .confirm-paiement-content .confirm-paiement-actions .btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.confirm-paiement .confirm-paiement-content .confirm-paiement-actions .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 10%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.confirm-paiement .confirm-paiement-content .confirm-paiement-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background-color: transparent;
    color: var(--heading-color);
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.confirm-paiement .confirm-paiement-content .confirm-paiement-actions .btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .confirm-paiement .confirm-paiement-content .confirm-paiement-actions {
        flex-direction: column;
        align-items: center;
    }

    .confirm-paiement .confirm-paiement-content .confirm-paiement-actions .btn-primary,
    .confirm-paiement .confirm-paiement-content .confirm-paiement-actions .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}



.confirm-paiement .helpful-links .links-title {
    font-size: 2rem;
    font-weight: 300;
    color: var(--heading-color);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    .confirm-paiement .helpful-links .links-title {
        font-size: 1.75rem;
        margin-bottom: 40px;
    }
}

.confirm-paiement .helpful-links .link-item {
    text-align: center;
    padding: 40px 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.confirm-paiement .helpful-links .link-item:hover {
    transform: translateY(-10px);
}

.confirm-paiement .helpful-links .link-item .link-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 20%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.3s ease;
}

.confirm-paiement .helpful-links .link-item .link-icon i {
    font-size: 1.75rem;
    color: var(--contrast-color);
}

.confirm-paiement .helpful-links .link-item h4 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--heading-color);
    margin-bottom: 20px;
}

.confirm-paiement .helpful-links .link-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 25px;
}

.confirm-paiement .helpful-links .link-item .link-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.confirm-paiement .helpful-links .link-item .link-cta:hover {
    color: color-mix(in srgb, var(--accent-color), black 15%);
    gap: 12px;
}

.confirm-paiement .helpful-links .link-item .link-cta i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.confirm-paiement .helpful-links .link-item .link-cta:hover i {
    transform: translateX(3px);
}

.confirm-paiement .helpful-links .link-item:hover .link-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 35px color-mix(in srgb, var(--accent-color), transparent 65%);
}

@media (max-width: 992px) {
    .confirm-paiement {
        padding: 80px 0;
    }

    .confirm-paiement .helpful-links .link-item {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .confirm-paiement {
        padding: 60px 0;
        min-height: auto;
    }

    .confirm-paiement .confirm-paiement-content {
        margin-bottom: 60px;
    }

    .confirm-paiement .helpful-links .links-title {
        margin-bottom: 40px;
    }
}




/*  BLOG DETAIL */

#odryas .blog-details h2 {
    margin-top:4rem;
}

#odryas .blog-details .policy-sidebar .sidebar-intro {
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 30px;
    line-height: 1.6;
}

#odryas .blog-details .policy-sidebar .policy-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding-top: 25px;
}

#odryas .blog-details .policy-sidebar .policy-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 2px;
    border-radius: 10px;
    color: var(--default-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

#odryas .blog-details .policy-sidebar .policy-nav .nav-link:hover,
#odryas .blog-details .policy-sidebar .policy-nav .nav-link.active {
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    color: var(--accent-color);
}

#odryas .blog-details .policy-sidebar .policy-nav .nav-link:hover .nav-number,
#odryas .blog-details .policy-sidebar .policy-nav .nav-link.active .nav-number {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

#odryas .blog-details .policy-sidebar .policy-nav .nav-link .nav-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

#odryas .blog-details .policy-sidebar .policy-nav .nav-link .nav-text {
    font-size: 0.9rem;
    font-weight: 500;
}


#odryas .blog-details .usage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

#odryas .blog-details .usage-grid .usage-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

#odryas .blog-details .usage-grid .usage-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

#odryas .blog-details .usage-grid .usage-item i {
    font-size: 1.4rem;
    color: var(--accent-color);
}

#odryas .blog-details .usage-grid .usage-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--heading-color);
}

#odryas .blog-details .primary-action {
    background: var(--contrast-color);
    color: var(--accent-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

#odryas .blog-details .primary-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px color-mix(in srgb, #000, transparent 70%);
    color: var(--accent-color);
}


#odryas .blog-details .secondary-action {
    background: transparent;
    border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 30%);
    color: var(--contrast-color);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

#odryas .blog-details .secondary-action:hover {
    background: color-mix(in srgb, var(--contrast-color), transparent 85%);
    border-color: var(--contrast-color);
    color: var(--contrast-color);
}


/* FAQ */
/*
#odryas  .faq .faq-item .faq-content p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 26px;
    overflow: hidden;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
}*/

#odryas .faq .faq-item .faq-content ul li {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 26px;
    overflow: hidden;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
}

#odryas  .faq .faq-item .faq-content p, #odryas .faq .faq-item .faq-content ul, #odryas .faq .faq-item .faq-content ul li {
    visibility: hidden;
    opacity: 0;
    height: 0;
}

#odryas  .faq .faq-item.faq-active .faq-content p, #odryas .faq .faq-item.faq-active .faq-content ul, #odryas .faq .faq-item.faq-active .faq-content ul li,
#odryas  .faq .faq-item.active .faq-content p, #odryas .faq .faq-item.active .faq-content ul, #odryas .faq .faq-item.active .faq-content ul li {
    visibility: visible;
    opacity: 1;
    height: inherit;
}

#odryas .faq .help-banner .btn-help {
    padding: 12px 18px;
}