/* ===================================================================
   NEW PADSTAL VIBE STYLESHEET
   - Font Family: 'Montserrat', sans-serif
   - Main Colors:
     - Navy: #03214c
     - Gold: #f8cb17
     - Dark BG: #1a1a1a
     - Light BG: #ffffff
     - Text: #eeeeee
     - Dark Text: #333333
=================================================================== */

/* --- 1. Global Reset & Base Styles --- */
* {
    box-sizing: border-box;
    scroll-behavior: smooth;
    user-select: none;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    background-color: #f4f4f4; /* Light grey for areas between sections */
    font-family: 'Montserrat', sans-serif;
    font-size: 10px; /* Base font size for rem units (1rem = 10px) */
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #f8cb17; /* Gold for links */
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none;
    opacity: 0.8;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    padding: 0;
    line-height: 1.3;
}

h1 { font-size: 4.8rem; font-weight: 900; }
h2 { font-size: 4rem; font-weight: 900; }
h3 { font-size: 2.4rem; font-weight: 700; }
h4 { font-size: 2rem; font-weight: 700; }
p { font-size: 1.6rem; margin-bottom: 1.5rem; }

.container {
    max-width: 1200px;
}

/* --- 2. Re-usable Section Styles --- */
.section-title {
    text-align: center;
    color: #03214c;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1.5rem;
}

/* Gold underline effect */
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #f8cb17;
}

.section-subtitle {
    text-align: center;
    font-size: 1.8rem;
    color: #555;
    margin-bottom: 5rem;
    font-weight: 400;
}


/* --- 3. Top Bar --- */
.top-bar {
    background: #1a1a1a;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 1.4rem;
}

.top-bar-links a {
    color: #eee;
    margin-right: 2rem;
    font-weight: 700;
}

.top-bar-links a i {
    color: #f8cb17;
    margin-right: 0.5rem;
}

.top-bar-socials a {
    color: #eee;
    font-size: 1.8rem;
    margin-left: 1.5rem;
}

@media (max-width: 768px) {
    .top-bar {
        justify-content: center;
        gap: 1.5rem;
    }
    .top-bar-links a { margin: 0 1rem; }
}

/* --- 4. Header & Navigation --- */
.header {
    z-index: 999;
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    
    /* MODIFIED: Make it semi-transparent with a blur effect */
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px); /* For Safari */
    
    height: 8rem;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.header.sticky {
    top: 0;
    height: 7rem;
    padding: 0.5rem 3rem;
    background: rgba(255, 255, 255, 0.95); /* More opaque when scrolling */
}

.header .brand {
    height: 100%;
    display: flex;
    align-items: center;
}
.header .brand img {
    height: 80%;
    width: auto;
    max-height: 6rem;
}

.header .menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.header .menu a {
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    color: #03214c;
    margin: 0 1.5rem;
    padding: 0.5rem 0;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease-in;
}

.header .menu a:hover,
.header .menu a.active {
    color: #f8cb17;
    border-bottom-color: #f8cb17;
}

.header .menu a.cta-button {
    background: #f8cb17;
    color: #03214c;
    padding: 1rem 2rem;
    border-radius: 50px;
    border-bottom: none;
}
.header .menu a.cta-button:hover {
    background: #03214c;
    color: #f8cb17;
}

.header .btn {
    color: #03214c;
    cursor: pointer;
    display: none;
    font-size: 2.5rem;
}

/* Mobile Menu */
@media (max-width: 992px) {
    .header { padding: 1rem 2rem; }
    .header .btn { display: flex; }
    .header .menu {
        position: fixed;
        background: #03214c;
        flex-direction: column;
        justify-content: flex-start;
        width: 300px;
        height: 100vh;
        top: 0;
        right: -100%;
        padding: 8rem 2rem;
        transition: all 0.5s ease;
        align-items: flex-start;
    }
    .header .menu.active { right: 0; }
    .header .menu .close-btn {
        position: absolute;
        top: 2rem;
        left: 2rem;
        color: #f8cb17;
        font-size: 3rem;
    }
    .header .menu a {
        display: block;
        font-size: 2rem;
        margin: 1.5rem 0;
        color: #fff;
    }
    .header .menu a.cta-button {
        margin-top: 3rem;
    }
}


/* --- 5. Hero Carousel --- */
#hero { 
    /* REMOVED: This gets rid of the "gap" */
    /* margin-top: 8rem; */ 
}

.carousel {
    position: relative;
    width: 100%;
    /* MODIFIED: Changed to 85vh as requested */
    height: 85vh;
    overflow: hidden;
}

.carousel .carousel-inner,
.carousel .carousel-item {
    height: 100%;
}
.carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel .carousel-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5); /* Darker overlay */
    z-index: 1;
}
.carousel .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;

    /* ADDED: Pushes the text down so it's not hidden by the 8rem header */
    padding-top: 8rem;
}
.carousel .carousel-caption h1 {
    color: #fff;
    /* MODIFIED: This is now fully fluid */
    font-size: clamp(3.0rem, 7vw, 6rem); /* Min: 3rem, Ideal: 7vw, Max: 6rem */
    font-weight: 900;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}
.carousel .carousel-caption p {
    color: #fff;
    /* MODIFIED: This is also fully fluid */
    font-size: clamp(1.6rem, 3vw, 2.4rem); /* Min: 1.6rem, Ideal: 3vw, Max: 2.4rem */
    margin-bottom: 3rem;
    font-weight: 700;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}
.carousel .carousel-caption .btn {
    padding: 1.5rem 3rem;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #03214c;
    background: #f8cb17;
    border: 2px solid #f8cb17;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.carousel .carousel-caption .btn:hover {
    color: #f8cb17;
    background: transparent;
}

@media (max-width: 767.98px) {
    /* MODIFIED: Let's set a specific mobile height that feels right */
    .carousel { height: 75vh; } 
    
    .carousel .carousel-caption {
        width: 95%;
        padding-top: 6rem; /* Less padding needed on mobile */
    }
    
    .carousel .carousel-caption .btn { 
        padding: 1.2rem 2.5rem; 
    }
}


/* --- 6. UPDATED Features Section ("Why Kuier Here?") --- */
.features-section {
    padding: 8rem 0;
    background: #ffffff;
}

.features-grid {
    display: grid;
    /* Using auto-fit is good for responsiveness */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

/* ADDED: Enforce 3 columns on medium-large screens for a clean 2-row grid */
@media (min-width: 992px) {
    .features-grid {
        /* This will create 3 columns, and 6 items will fill it perfectly */
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: #fff;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    overflow: hidden; /* Contain the image */
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-card .feature-image {
    width: 100%;
    height: 220px; /* Consistent height for all images */
    overflow: hidden;
}

.feature-card .feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fill the space nicely */
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.05); /* Subtle zoom on hover */
}

.feature-content {
    padding: 3rem;
}

.feature-content h3 {
    color: #03214c;
    font-size: 2.2rem;
    font-weight: 900;
}

.feature-content p {
    font-size: 1.5rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0; /* Remove default p margin */
}


/* --- 7. UPDATED "ANIMATED FUNKY" Weekly Vibe Carousel Section --- */
.weekly-vibe-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden; /* Ensure blobs don't overflow */
    
    /* Animated background properties */
    background: radial-gradient(circle at 20% 50%, #03214c80, transparent 70%),
                radial-gradient(circle at 80% 20%, #4a00e080, transparent 70%),
                radial-gradient(circle at 50% 80%, #00d4ff80, transparent 70%);
    background-size: 300% 300%; /* Make gradients larger than viewport */
    animation: animateBackground 15s ease infinite alternate; /* Animates the background */
}

/* Keyframes for the background animation */
@keyframes animateBackground {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.weekly-vibe-section .section-title {
    color: #ffffff; /* White title */
    z-index: 10; /* Ensure text is above blobs */
    position: relative;
}
.weekly-vibe-section .section-subtitle {
    color: #eeeeee; /* Light grey subtitle */
    z-index: 10; /* Ensure text is above blobs */
    position: relative;
}
.weekly-vibe-section .section-title::after {
    background-color: #f8cb17; /* Gold line */
}

/* Styles for the individual slide wrapper */
.vibe-slide {
    padding: 1rem 0.5rem; /* Padding for shadow */
    height: auto;
    z-index: 10; /* Ensure cards are above blobs */
    position: relative;
}

.vibe-card {
    /* "Glassmorphism" effect */
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    height: 100%; 
    display: flex;
    flex-direction: column;
}

.vibe-card:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.vibe-card i {
    font-size: 4rem;
    color: #f8cb17; /* GOLD icon */
    line-height: 1;
    margin-bottom: 2rem;
}

.vibe-card h3 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff; /* White day */
    margin-bottom: 1rem;
}

.vibe-card .vibe-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #f8cb17; /* GOLD title */
    margin-bottom: 1rem;
    text-transform: uppercase;
    line-height: 1.3;
    padding: 0;
}

.vibe-card .vibe-description {
    font-size: 1.5rem;
    color: #eeeeee; /* Light grey text */
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 0;
    flex-grow: 1; 
}

/* CTA button on each card (INVERTED) */
.vibe-card .vibe-cta {
    display: inline-block;
    background: #f8cb17; /* GOLD button */
    color: #03214c; /* Navy text */
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap; /* ADDED: Prevents text wrapping */
}

.vibe-card .vibe-cta:hover {
    background: #ffffff; /* White on hover */
    color: #03214c;
}

/* Styling for the OwlCarousel dots (REMOVED) */
.weekly-vibe-section .owl-carousel .owl-dots {
    display: none !important;
}

/* Main CTA button below the slider */
.section-cta-container {
    text-align: center;
    margin-top: 4rem;
    z-index: 10; /* Ensure button is above blobs */
    position: relative;
}

.section-cta-button {
    display: inline-block;
    background: #f8cb17; /* Gold button */
    color: #03214c; /* Navy text */
    padding: 1.5rem 4rem;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.8rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    white-space: nowrap; /* ADDED: Prevents text wrapping */
}

.section-cta-button:hover {
    background: #ffffff;
    color: #03214c;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}


/* --- 8. Events Section --- */
.events-section {
    padding: 8rem 0;
    background: #fff;
}

.event-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.event-card img {
    width: 100%;
    aspect-ratio: 1 / 1; /* Makes the image a perfect square */
    object-fit: cover; /* Ensures image fills the square, cropping as needed */
}

.event-card .event-content {
    padding: 2.5rem;
}

.event-card .event-content h3 {
    color: #03214c;
    font-size: 2.2rem;
    font-weight: 900;
}

.event-card .event-content p {
    font-size: 1.5rem;
    color: #444;
    font-weight: 600;
}

.event-card .event-content .event-cta {
    display: inline-block;
    background: #03214c;
    color: #f8cb17;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 1rem;
}

.event-card .event-content .event-cta:hover {
    background: #f8cb17;
    color: #03214c;
}


/* --- 9. UPDATED HTML Menu Section --- */
.menu-section {
    padding: 8rem 0;
    background-color: #f4f4f4;
}

.menu-category-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #03214c;
    border-bottom: 3px solid #f8cb17;
    padding-bottom: 1rem;
    margin-bottom: 3rem;
}
.menu-category-title.text-center {
    text-align: center;
    border-bottom: none; /* No line for the centered title */
}


.menu-item {
    margin-bottom: 2.5rem;
    position: relative;
    background: #fff;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.menu-item-name {
    color: #333;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    padding-right: 7rem; /* Space for price */
}

.menu-item-price {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    font-weight: 900;
    color: #03214c;
}

.menu-item-desc {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
}

.full-menu-display {
    margin-top: 6rem; /* Space between highlights and full menu */
}

.menu-image-wrapper {
    margin-bottom: 3rem;
    text-align: center;
}

.menu-image-wrapper img {
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    /* REMOVED margin-bottom, handled by wrapper */
}

/* Style for the clickable menu image */
.menu-image-clickable {
    cursor: zoom-in;
    transition: all 0.3s ease;
}
.menu-image-clickable:hover {
    opacity: 0.8;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Centering wrapper for the download button */
.menu-downloads {
    text-align: center;
    margin-top: 3rem; /* Spacing from images to button */
}

.menu-download-btn {
    display: inline-block;
    background: #03214c;
    color: #f8cb17;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    margin: 0.5rem 1rem; 
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.menu-download-btn:hover {
    background: #f8cb17;
    color: #03214C;
}

/* ============================================= */
/* --- 10. NEW: Supporters Section --- */
/* ============================================= */
.supporters-section {
    padding: 8rem 0;
    background-color: #fff; /* Match the menu section bg */
}

.supporter-slideshow {
    width: 100%;
    height: 40vh;   
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 8px;   
    position: relative;
    overflow: hidden;
}

.supporter-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0; /* Hidden by default */
    transition: opacity 1.5s ease-in-out; /* The fade effect */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* This class is added by JS to show the slide */
.supporter-slide.active {
    opacity: 1;
}

.supporter-slide img {    
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Ensures logo is never stretched */
}

@media (max-width: 768px) {
    .supporter-slideshow {
        width: 95%;
        height: 30vh; /* More reasonable height on mobile */
    }
}


/* --- 11. Branches Section --- */
.branches-section {
    padding: 8rem 0;
    background-color: #ffffff;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.branch-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    text-align: left;
}

.branch-card h3 {
    background: #03214c;
    color: #f8cb17;
    padding: 2rem;
    margin: 0;
    font-size: 2.2rem;
    font-weight: 900;
}

.branch-card .branch-address {
    font-size: 1.6rem;
    color: #333;
    padding: 2rem 2rem 0 2rem;
    font-weight: 700;
}
.branch-card .branch-address i {
    color: #03214c;
    margin-right: 1rem;
}

.branch-card .contact-details {
    padding: 1rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.branch-card .contact-details a {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
}
.branch-card .contact-details a i {
    color: #f8cb17;
    background: #03214c;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin-right: 1rem;
}

.branch-card iframe {
    width: 100%;
    height: 250px;
    border: none;
    display: block;
}


/* --- 12. Contact Section --- */
.contact-section {
    padding: 8rem 0;
    background-color: #1a1a1a;
    /* Using a subtle background image for texture */
    background-image: linear-gradient(rgba(26, 26, 26, 0.97), rgba(26, 26, 26, 0.97)), url('images/land-3.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #eee;
}

.contact-section .section-title {
    color: #fff;
    text-align: left;
}
.contact-section .section-title::after {
    left: 0;
    transform: none;
}
.contact-section .section-subtitle {
    color: #ccc;
    text-align: left;
}

.contact-info p {
    font-size: 1.6rem;
    color: #ccc;
}
.contact-info p strong {
    color: #f8cb17;
}

.contact-info-links {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-links a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}
.contact-info-links a i {
    color: #f8cb17;
    font-size: 2rem;
    margin-right: 1.5rem;
    width: 25px;
}

.contact-form {
    background: rgba(0, 0, 0, 0.2);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid #444;
}

.contact-form .inp,
.contact-form #msg-box {
    display: block;
    width: 100%;
    padding: 1.5rem;
    border: 2px solid #555;
    background: #333;
    font-size: 1.6rem;
    color: #fff !important;
    margin-bottom: 2rem;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
}
.contact-form .inp::placeholder,
.contact-form #msg-box::placeholder {
    color: #aaa !important;
}

.contact-form .inp:focus,
.contact-form #msg-box:focus {
    outline: none;
    border-color: #f8cb17;
    background: #444;
}

.contact-form #msg-box {
    resize: vertical;
    height: 15rem;
}

.contact-form .sub-btn {
    width: 100%;
    padding: 1.5rem;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background: #f8cb17;
    color: #03214c;
    font-size: 1.8rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    transition: all 0.3s ease;
}

.contact-form .sub-btn:hover {
    background: #fff;
    color: #03214c;
}


/* --- 13. Footer --- */
.footer {
    position: relative;
    padding-top: 8rem;
    background: #03214c;
    font-family: 'Montserrat', sans-serif;
    color: #ccc;
    font-size: 1.5rem;
}

.footer .footer-about,
.footer .footer-link,
.footer .footer-contact {
    position: relative;
    margin-bottom: 4.5rem;
}

.footer-about img {
    width: 50%;
    min-width: 150px;
    margin-bottom: 1.5rem;
}
.footer-about p {
    font-size: 1.5rem;
    color: #ccc;
}

.footer h2 {
    position: relative;
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
    font-weight: 900;
    color: #f8cb17;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 1rem;
    color: #fff;
    transition: 0.3s;
    font-size: 1.5rem;
    text-align: left;
    font-weight: 600;
}
.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 1rem;
    color: #f8cb17;
}
.footer .footer-link a:hover {
    color: #f8cb17;
    letter-spacing: 1px;
}

.footer .footer-contact p {
    text-align: left;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}
.footer .footer-contact p i {
    width: 25px;
    text-align: left;
    color: #f8cb17;
    margin-right: 1rem;
}

.footer .footer-social {
    position: relative;
    margin-top: 2rem;
}
.footer .footer-social a {
    display: inline-block;
    color: #f8cb17;
    font-size: 2.2rem;
    margin-right: 1.5rem;
}
.footer .footer-social a:hover {
    color: #fff;
}

.footer .footer-menu {
    border-top: 1px solid #444;
}
.footer .footer-menu .f-menu {
    position: relative;
    padding: 1.5rem 0;
    font-size: 0;
    text-align: center;
}
.footer .footer-menu .f-menu a {
    color: #f8cb17;
    font-size: 1.4rem;
    margin-right: 1.5rem;
    padding-right: 1.5rem;
    border-right: 1px solid #555;
    font-weight: 600;
}
.footer .footer-menu .f-menu a:hover {
    color: #fff;
}
.footer .footer-menu .f-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .copyright {
    padding: 3rem 1.5rem;
    background:#03214c; /* Slightly darker navy */
    color: #ccc;
    font-size: 1.4rem;
}
.footer .copyright p {
    margin: 0;
}
.footer .copyright .col-md-6:last-child p {
    text-align: right;
}
.footer .copyright p a {
    color: #f8cb17;
    font-weight: 700;
}
.footer .copyright p a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}

/* --- 14. Responsive Button Fixes --- */
@media (max-width: 400px) {
    /* Main CTA button below slider */
    .section-cta-button {
        font-size: 1.6rem; /* Make font smaller */
        padding: 1.5rem 2.5rem; /* Reduce padding */
    }

    /* CTA buttons inside slider cards */
    .vibe-card .vibe-cta {
        font-size: 1.4rem; /* Make font smaller */
        padding: 1.2rem 2rem; /* Reduce padding */
    }
}

/* --- 15. Image Modal Styles --- */
#imageModal .modal-lg {
    max-width: 90%; /* Allow modal to be wider */
}
@media (min-width: 992px) {
    #imageModal .modal-lg {
        max-width: 1000px; /* Set a max-width on desktop */
    }
}

#imageModal .modal-content {
    background-color: #f4f4f4;
    border: none;
    border-radius: 8px;
}
#imageModal .modal-header {
    background-color: #03214c;
    color: #f8cb17;
    border-bottom: none;
    font-weight: 900;
}
#imageModal .modal-header .modal-title {
    font-size: 2rem;
    font-weight: 900;
}
#imageModal .modal-header .close {
    color: #f8cb17;
    text-shadow: none;
    opacity: 0.8;
    font-size: 3rem;
}
#imageModal .modal-header .close:hover {
    opacity: 1;
}
#imageModal .modal-body {
    padding: 0.5rem;
}

.og
{
    display: none;
}
/* --- 16. Work at Padstal Popup --- */
.work-popup-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8); /* Dark overlay */
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.work-popup-content {
    background-color: #03214c; /* Navy Background */
    margin: 10% auto;
    padding: 3rem;
    border: 2px solid #f8cb17; /* Gold Border */
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    position: relative;
    text-align: center;
    box-shadow: 0 0 20px rgba(248, 203, 23, 0.3);
}

.close-popup {
    color: #f8cb17;
    float: right;
    font-size: 3rem;
    font-weight: bold;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    cursor: pointer;
}

.close-popup:hover {
    color: #fff;
}

.popup-header h3 {
    color: #f8cb17;
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.popup-header p {
    color: #eee;
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.popup-input {
    width: 100%;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    border: 1px solid #f8cb17;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
}

.popup-input:focus {
    outline: none;
    box-shadow: 0 0 5px #f8cb17;
}

.popup-btn {
    background-color: #03214c; /* CHANGED: Navy Blue instead of Green */
    color: #f8cb17; /* Gold text */
    border: 2px solid #f8cb17; /* Gold border */
    padding: 1.2rem 2rem;
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.popup-btn:hover {
    background-color: #f8cb17;
    color: #03214c;
}

.popup-btn i {
    margin-left: 0.5rem;
}


/* --- 17. Thank You Page Styles --- */
.thanks-section {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Re-using the funky animated background */
    background: radial-gradient(circle at 20% 50%, #03214c80, transparent 70%),
                radial-gradient(circle at 80% 20%, #4a00e080, transparent 70%),
                radial-gradient(circle at 50% 80%, #00d4ff80, transparent 70%);
    background-size: 300% 300%;
    animation: animateBackground 15s ease infinite alternate;
    background-color: #1a1a1a;
}

.thanks-content {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 4rem;
    border-radius: 15px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    max-width: 600px;
    margin: 0 auto;
}

.thanks-content i {
    font-size: 6rem;
    color: #f8cb17; /* Gold Icon */
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #fff;
}

.thanks-content p {
    font-size: 1.8rem;
    color: #eee;
    margin-bottom: 3rem;
}

.home-btn {
    display: inline-block;
    background: #f8cb17;
    color: #03214c;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.6rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.home-btn:hover {
    background: #fff;
    color: #03214c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}