/* ---------- FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'Gotham Bold';
    src: url('Gotham-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Book';
    src: url('Gotham-Book.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Light';
    src: url('Gotham-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Medium';
    src: url('Gotham-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}


/* Default fonts for body and all elements */
body {
    font-family: "Cormorant Garamond", sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}


/* ---------- FULLSCREEN BACKGROUND ---------- */
.full-screen {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.bg-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    transform: scale(1.1);
    transition: transform 0.3s ease-out;
}

/* ---------- TEXT STYLES ---------- */
.pre-text {
    font-family: "Cormorant Garamond", sans-serif;
    font-size: 12pt;
    line-height: 14.4pt;
    letter-spacing: 0.01em;
    color: #fff;
    margin-bottom: 50px;
}

h1,
h2 {
    font-family: "Gotham Medium", sans-serif;
    font-weight: 500;
    line-height: 42pt;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

h1 {
    font-size: 30pt;
}

h2 {
    font-size: 24pt;
    margin-bottom: 20px;
}

h5 {
    font-family: "Gotham Medium", sans-serif;
    font-size: 15px;
}

h3, h4 {
    font-family: "Gotham Medium", sans-serif;
    font-size: 20px;
}

.badge {
    font-family: "Gotham Medium", sans-serif;
}

p,
.styled-list,
.styled-list li {
    font-family: "Cormorant Garamond", sans-serif !important;
    font-size: 17px !important;
    line-height: 1.6 !important;
    color: #333 !important;
}

.list-unstyled {
    font-family: "Gotham Light", sans-serif;
    font-size: 13px;
}

.styled-list {
    padding-left: 20px;
}

    .styled-list.list-unstyled {
        padding-left: 0;
    }

/* ---------- BUTTONS ---------- */
.btn-primary {
    background-color: rgba(53, 68, 177, 1);
    padding: 0.7rem 1.5rem;
    border-radius: 3px;
    border: 2px solid rgba(53, 68, 177, 1);
}

    .btn-primary:hover,
    .btn-primary:focus {
        background-color: rgba(53, 68, 177, 0.8);
    }

.btn-inverted,
.btn-inverted-orange {
    background-color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 3px;
}

.btn-inverted {
    border: 2px solid #3544b1;
    color: #3544b1;
}

    .btn-inverted:hover,
    .btn-inverted:focus {
        background-color: #3544b1;
        color: white;
    }

.btn-inverted-orange {
    border: 2px solid rgba(247, 156, 55, 1);
    color: rgba(247, 156, 55, 1);
    font-weight: bolder;
}

    .btn-inverted-orange:hover,
    .btn-inverted-orange:focus {
        background-color: rgba(247, 156, 55, 1);
        color: white;
    }

/* ---------- STRUCTURE ---------- */
.section {
    padding: 50px 0;
}

    .section .section {
        padding: 30px 0;
    }

/* ---------- JUMBOTRON ---------- */
.jumbotron {
    background-color: rgba(16, 31, 60, 1);
    color: white;
    margin-bottom: 0;
}

/* ---------- NAVBAR ---------- */
.hero {
    width: 100%;
    height: auto;
    overflow: hidden;
    text-align: center;
    position: relative;
}

    .hero img {
        width: 100%;
        max-width: 1920px; /* Match your image width */
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .hero .container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        text-align: center;
        z-index: 2;
        color: white;
    }

.navbar {
    position: relative; /* Not fixed */
    width: 100%;
    z-index: 1000;
}

.navbar-nav {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
}

/* Make sure to remove or override the scrolled class if it's not needed */
.navbar.scrolled {
    background-color: #9e9d99; /* Same background so it doesn't change */
}

.navbar-dark .navbar-nav .nav-link {
    font-family: "Gotham Light", sans-serif; /* Switch to a lighter font variant */
    font-weight: normal; /* Ensure the font weight is not heavy */
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link:focus {
        color: #ffffff; /* Keep hover color the same or slightly brighter */
        text-decoration: none; /* Ensure no underline */
    }

/* If you have a dropdown, keep it simple and clean */
.navbar-dark .navbar-nav .dropdown-menu {
    background-color: #ffffff;
    border-radius: 0;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    padding: 0;
}

    .navbar-dark .navbar-nav .dropdown-menu .dropdown-item {
        font-family: "Gotham Light", sans-serif; /* Switch to a lighter font variant */
        font-weight: normal; /* Make sure the weight is normal or lighter */
        font-size: 12px; /* Smaller font size */
        color: #333;
        padding: 0.7rem 1.5rem;
        text-transform: uppercase; /* If you want to keep it consistent with uppercase text */
        letter-spacing: 1px;
    }

        .navbar-dark .navbar-nav .dropdown-menu .dropdown-item:hover,
        .navbar-dark .navbar-nav .dropdown-menu .dropdown-item:focus {
            background-color: #efefef;
            color: #333;
        }


/* ---------- FOOTER ---------- */
.footer {
    background-color: #f8f9fa;
    color: #333;
    font-size: 14px;
}

    .footer h5 {
        font-weight: 600;
        font-size: 13px;
        letter-spacing: 1.5px;
        margin-bottom: 1rem;
    }

    .footer p,
    .footer ul li {
        color: #666;
    }

    .footer a {
        color: #666;
        transition: color 0.3s ease;
    }

        .footer a:hover {
            color: #333;
        }

.copyright {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.copyright-text {
    color: #666;
    font-size: 13px;
}

.about-text {
    font-size: 13px;
    font-family: "Gotham Book", sans-serif;
}

/* ---------- RESPONSIVE MEDIA QUERIES ---------- */
@media (max-width: 768px) {
    .full-screen {
        min-height: 70vh;
    }

    .pre-text {
        font-size: 10pt;
    }

    h1.responsive-title {
        font-size: 24pt;
    }
}

@media (max-width: 480px) {
    .full-screen {
        min-height: 50vh;
    }

    .pre-text {
        font-size: 9pt;
    }

    h1.responsive-title {
        font-size: 20pt;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: transparent; /* Changed to transparent */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    border: none;
    outline: none;
    cursor: pointer;
}

    .scroll-to-top:hover {
        background-color: rgba(0, 0, 0, 0.1); /* Light background on hover */
        transform: translateY(-5px);
    }

    .scroll-to-top.show {
        opacity: 1;
        visibility: visible;
    }

    .scroll-to-top img {
        width: 24px;
        height: 24px;
        opacity: 0.6; /* Make the icon slightly transparent */
    }

    .scroll-to-top:hover img {
        opacity: 1; /* Full opacity on hover */
    }

    .scroll-to-top:active {
        transform: scale(0.95);
    }

.press-release {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

    .press-release h3 {
        font-size: 1.2rem;
        font-weight: bold;
    }

    .press-release .text-muted {
        font-size: 0.9rem;
    }

/* Add these new styles at the end of the file */

/* Custom background colors */
.bg-light-custom {
    background-color: #f8f9fa;
}

.bg-white-custom {
    background-color: #ffffff;
}

/* Add padding to sections */
.section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Ensure full width for container-fluid */
.container-fluid {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
}

    /* Adjust container within container-fluid */
    .container-fluid > .container {
        padding-right: 15px;
        padding-left: 15px;
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-padding {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

/* FAQ Accordion Styles */
#faqAccordion .card {
    border: none;
    margin-bottom: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#faqAccordion .card-header {
    background-color: #f8f9fa;
    border: none;
    padding: 0;
}

#faqAccordion .btn-link {
    display: block;
    width: 100%;
    text-align: left;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    padding: 1rem 1.25rem;
    position: relative;
    transition: all 0.3s ease;
}

    #faqAccordion .btn-link:hover,
    #faqAccordion .btn-link:focus {
        background-color: #e9ecef;
        color: #3544b1;
    }

    #faqAccordion .btn-link::after {
        content: "\f107";
        font-family: "Font Awesome 5 Free";
        position: absolute;
        right: 1.25rem;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s ease;
    }

    #faqAccordion .btn-link[aria-expanded="true"]::after {
        transform: translateY(-50%) rotate(180deg);
    }

#faqAccordion .card-body {
    padding: 1.25rem;
    background-color: #ffffff;
    border-top: 1px solid #e9ecef;
    font-size: 15px;
}

/* Enhanced CTA Button */
.btn-secondary.btn-lg {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 30px;
}

    .btn-secondary.btn-lg:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .btn-secondary.btn-lg .fa-arrow-right {
        transition: transform 0.3s ease;
    }

    .btn-secondary.btn-lg:hover .fa-arrow-right {
        transform: translateX(5px);
    }

/* Adjusted CTA Button */
.view-all-btn {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
}

    .view-all-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .view-all-btn .fa-arrow-right {
        transition: transform 0.3s ease;
        font-size: 0.9rem;
    }

    .view-all-btn:hover .fa-arrow-right {
        transform: translateX(3px);
    }

/* Language Switcher */
#languageToggle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    cursor: pointer;
}

    #languageToggle:hover,
    #languageToggle:focus {
        color: rgba(255, 255, 255, 1);
        text-decoration: none;
    }

/* Ensure consistent styling with other nav items */
.navbar-dark .navbar-nav .nav-link,
#languageToggle {
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Divider */
.navbar-nav .divider {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    height: 20px;
    margin: auto 15px;
}

/* Adjust spacing for language toggle */
#languageToggle {
    margin-left: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .navbar-nav .divider {
        display: none;
    }

    #languageToggle {
        margin-left: 1rem;
    }
}


strong {
    display: block;
    margin-bottom: 5px;
    letter-spacing: 1.5px;
    font-size: 13px;
    font-family: "Gotham Medium", sans-serif;
}

.card-title {
    font-size: 15px;
}

@media (min-width: 768px) {
    .text-container h2 {
        margin-top: -15px;
        padding-top: 0;
    }
}
