 

/* Import Google Fonts as Fallbacks */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@400;600&display=swap');

/* Load Custom Font (Ameyallinda Signatur) */
/* Ensure you have the file in assets/fonts/ */
@font-face {
    font-family: 'Ameyallinda Signatur';
    src: url('../fonts/AmeyallindaSignatur.ttf') format('truetype'); /* or .woff2 */
    font-weight: normal;
    font-style: normal;
}

/* Font Families */
:root {
    /* Headers: Use Futura PT -> Gill Sans -> Fallback */
    --font-heading: "Futura PT", "Gill Sans", Montserrat, sans-serif;
    
    /* Body: Use Gill Sans -> Fallback */
    --font-body: "Gill Sans", "Open Sans", sans-serif;
    
    /* Special Signature */
    --font-signature: "Ameyallinda Signatur", cursive;
}

/* --- 2. COLOR PALETTE (From Image & #AD3304) --- */
:root {
    /* Requested Primary Color */
    --color-primary: #AD3304; 
    
    /* Colors from your Image (Gradient Palette) */
    --color-dark-red: #470600;
    --color-mid-red: #660000;
    --color-brown-gold: #A27B3F;
    --color-gold-highlight: #E0AC28;
    --color-gold-secondary: #DFA350;
    
    /* Backgrounds */
    --bg-cream: #FFFDE9;
    --bg-beige: #D5BDAF;
    --bg-light-gray: #E3D5CA;
    
    /* Text */
    --text-main: #333333;
    --text-muted: #666666;
    --text-light: #ffffff;
    
    /* Bootstrap Overrides */
    --bs-primary: var(--color-primary);
    --bs-secondary: var(--color-brown-gold);
    --bs-light: var(--bg-cream);
    --bs-dark: var(--color-dark-red);
}
 
 /* =========================
           SECTION 1: HERO
           ========================= */
        /* #hero-section {
            position: relative;
            width: 100%;
            height: 100vh;
            background-image: url('../uploads/images/ssspnk.jpg'); 
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
        } */


        /* Real image background */
.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 🔥 Perfect zoom */
    object-position: center;
    background-color: #FFFDE9;
}

/* SVG overlay */
.hero-map {
    position: absolute;
    width: 100%;
    height: 100%;
    /* background-color: #FFFDE9; */
    z-index: 2;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

        #hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    /* background-color: #FFFDE9; */
     background-image: url('../images/ssspnk.png');
    overflow: hidden;
}
        /* .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            z-index: 1;
        } */

        /* HEADER: Left Logo + Right Hamburger */
        .hero-header {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            padding: 25px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1001; /* Above the sidebar */
        }

        .logo-left img {
            height: 60px;            
            transition: all 0.3s;
        }

        .logo-left img:hover {
            transform: scale(1.05);
            filter: invert(42%) saturate(1892%)  brightness(98%) contrast(101%);
        }
        

        /* Hamburger Button */
        .menu-toggle-btn {
            background: transparent;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .menu-toggle-btn:hover {
            transform: scale(1.1);
        }

        /* =========================
           SIDEBAR MENU (RIGHT-TO-LEFT)
           ========================= */
        
        /* The Backdrop (Dark transparent background) */
        .sidebar-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s;
        }
        .sidebar-backdrop.active {
            opacity: 1;
            visibility: visible;
        }

        /* The Sidebar Card */
        .sidebar-menu {
            position: fixed;
            top: 80px;
            right: -350px; /* Start off-screen to the right */
            width: 320px;
            height: 520px;
            border-radius: 15px 0 0 15px;
            background: #FFFDE9;
            z-index: 1001; /* Above backdrop */
            box-shadow: -5px 0 30px rgba(0,0,0,0.2);
            transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
            display: flex;
            flex-direction: column;
        }

        .sidebar-menu.active {
            right: 0; /* Slide in */
        }

        /* Sidebar Header */
        .sidebar-header {
            padding: 25px;
            border-bottom: 1px solid #eee;
             border-radius: 15px 0 0 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #FFFDE9;
        }

        .sidebar-header h4 {
            color: #AD3304;
            font-weight: 700;
            margin: 0;
        }

        .close-btn {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #555;
        }

        /* Menu List Styling */
        .menu-list {
            list-style: none;
            padding: 0;
            margin: 0;
            overflow-y: auto;
        }

        .menu-item {
            border-bottom: 1px solid #f1f1f1;
        }

        .menu-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 25px;
            text-decoration: none;
            color: #333;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s;
        }

        .menu-link:hover {
            background-color: #D5BDAF;
            color: #AD3304;
            padding-left: 30px; /* Slide effect */
        }

        /* Sub Menu */
        .sub-menu {
            list-style: none;
            background-color: #fafafa;
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .sub-menu.open {
            max-height: 300px; /* Open sub-menu */
        }

        .sub-link {
            padding: 12px 25px 12px 40px; /* Indented */
            display: block;
            text-decoration: none;
            color: #666;
            font-size: 14px;
            border-bottom: 1px solid #eee;
        }
        .sub-link:hover {
            color: #AD3304;
            background: #fff;
        }

        /* Arrow Icon Animation */
        .arrow-icon {
            transition: transform 0.3s;
        }
        .menu-link.active .arrow-icon {
            transform: rotate(180deg);
        }

        /* =========================
           SECTION 2: BEAUTIFUL BUTTONS
           (Kept from previous step)
           ========================= */
        #section-buttons {
            position: relative;
            z-index: 20;
            margin-top: -60px;
            padding-bottom: 50px;
        }

        .btn-beautiful {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 25px 15px;
            border-radius: 15px;
            background: #FFFDE9;
            background-image: linear-gradient(90deg, #f6d365 0%, #fda085 100%);
           
            
            border: none;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            text-decoration: none;
            color: #333;
            width: 100%;
            height: 100%;
        }

        .btn-beautiful i {
            font-size: 28px;
            margin-bottom: 10px;
            color: #AD3304;            
            
        }

        .btn-beautiful span {
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-beautiful:hover {
            transform: translateY(-10px);
            background: #AD3304;
            color: white;
            box-shadow: 0 15px 30px rgba(173, 51, 4, 0.4);
        }
        .btn-beautiful:hover i { color: white; }


           #testimonials-section {
        padding: 80px 0;
        margin-top: -80px;
        background: #FFFDE9;
        background: linear-gradient(180deg, rgba(255, 253, 233, 1) 0%, rgba(213, 189, 175, 1) 100%); /* Light Gray Background */
    }

    .section-title-center {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .section-title-center h2 {
        font-weight: 800;
        color: #660000;
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
    }

    /* Orange underline */
    .section-title-center h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background-color: #AD3304;
    }

    /* --- SLIDER STYLES --- */
    .testimonial-slider-wrapper {
        overflow: hidden;
        width: 100%;
        position: relative;
        padding: 0 20px; /* Space for arrows */
    }

    .testimonial-slider {
        display: flex;
        gap: 30px;
        transition: transform 0.6s ease;
        will-change: transform;
    }

    /* --- CARD DESIGN --- */
    .t-card {
        min-width: 320px; /* Width of one card */
        height: 320px;
        background: #fff;
        border-radius: 20px;
        padding: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        border: 1px solid #eee;
        position: relative;
    }

    /* Quote Icon Background */
    .t-card::before {
        content: '\f10d';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 30px;
        color: rgba(173, 51, 4, 0.1); /* Faint Primary Color */
    }

    .t-img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 15px;
        border: 3px solid #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .t-stars {
        color: #FFC107; /* Gold */
        font-size: 12px;
        margin-bottom: 10px;
    }

    .t-text {
        font-style: italic;
        color: #555;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
        flex-grow: 1; /* Pushes footer down */
    }

    .t-name {
        font-weight: 700;
        color: #333;
        font-size: 16px;
    }

    .t-role {
        font-size: 12px;
        color: #AD3304; /* Primary Color */
        text-transform: uppercase;
        font-weight: 600;
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 991px) {
        .t-card { min-width: 280px; height: 300px; }
    }
    @media (max-width: 768px) {
        .t-card { min-width: 260px; height: 280px; }
        .testimonial-slider-wrapper { padding: 0; } /* Remove padding on mobile */
    }


       #gallery-section {
        background: #D5BDAF;
        background: linear-gradient(180deg, rgba(213, 189, 175, 1) 0%, rgba(219, 194, 149, 1) 100%); /* Black background makes photos pop */
        padding: 20px;
       
        overflow: hidden;
    }

    /* The Slider Container - Full Width */
    .gallery-slider-wrapper {
        width: 100%;
        position: relative;
        padding: 0 50px; /* Space for arrows */
    }

    .gallery-slider {
        display: flex;
        gap: 30px;
        transition: transform 0.6s ease;
        will-change: transform;
    }

    /* --- CARD DESIGN (3:4 ASPECT RATIO) --- */
    .gallery-card {
        /* Width can be fixed or percentage. Let's use fixed width for strict 3:4 control */
        width: 280px; 
        height: 373px; /* Strict 3:4 ratio (280 * 1.33) */
        border-radius: 15px;
        overflow: hidden;
        position: relative;
        flex-shrink: 0; /* Prevent squishing */
        box-shadow: 8px 8px rgba(43, 42, 42, 0.5);
        cursor: pointer;
        transition: transform 0.3s;
    }

    .gallery-card:hover {
        transform: scale(1.05);
        z-index: 10;
    }

    /* Image covers the card completely */
    .gallery-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s;
    }

    /* Text Overlay (Bottom) */
    .card-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 20px;
        background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
        color: white;
        opacity: 0; /* Hidden by default for clean look */
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    /* Show text on hover */
    .gallery-card:hover .card-overlay {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Mobile Adjustments */
    @media (max-width: 768px) {
        .gallery-card { width: 200px; height: 266px; } /* Smaller cards */
        .gallery-slider-wrapper { padding: 0 20px; }
        .card-overlay { opacity: 1; background: rgba(0,0,0,0.5); transform: translateY(0); } /* Always show text on mobile */
    }

       #blog-section {
        padding: 80px 0;
        background: #DBC295;
        background: linear-gradient(180deg, rgba(219, 194, 149, 1) 0%, rgba(255, 236, 210, 1) 100%); /* Light Gray Background */
    }

    .blog-card {
        background: #fff;
        border-radius: 15px;
        overflow: hidden;
        border: none;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .blog-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

    /* Image Container */
    .blog-img-container {
        position: relative;
        overflow: hidden;
        height: 220px;
    }

    .blog-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    /* Zoom effect on image hover */
    .blog-card:hover .blog-img {
        transform: scale(1.1);
    }

    /* Floating Category Tag */
    .blog-tag {
        position: absolute;
        top: 15px;
        right: 15px;
        background-color: #AD3304;
        color: white;
        padding: 6px 15px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        z-index: 2;
    }

    .blog-body {
        padding: 25px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .blog-date {
        font-size: 13px;
        color: #888;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .blog-title {
        font-size: 20px;
        font-weight: 700;
        color: #333;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .blog-excerpt {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
        flex-grow: 1;
    }

    .blog-link {
        color: #AD3304;
        font-weight: 700;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: gap 0.3s;
    }

    .blog-link:hover {
        gap: 15px; /* Arrow moves right */
        color: #8a2603;
    }











    


    /* === PARTNERS SECTION === */
    #partners-section {
        padding: 80px 0;
 background: #DBC295;
        background: linear-gradient(180deg,  rgba(255, 236, 210, 1) 0%, rgba(219, 194, 149, 1) 100%); /* Light Gray Background */
    }

    .partner-logo {
        max-width: 150px;
        max-height: 80px;
        filter: grayscale(100%);
        opacity: 0.5;
        transition: all 0.4s ease;
    }

    .partner-logo:hover {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.1);
    }


       /* === FOOTER === */
    footer {
        background-color: #470600; /* Dark Navy Background */
        color: #cbd5e1;
        font-size: 14px;
        padding-top: 60px;
        padding-bottom: 20px;
    }

    footer h5 {
        color: #fff;
        font-weight: 700;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    footer a {
        color: #cbd5e1;
        text-decoration: none;
        transition: color 0.3s;
        display: block;
        margin-bottom: 10px;
    }

    footer a:hover {
        color: #AD3304; /* Primary Orange */
        padding-left: 5px;
    }

    /* Footer Social Icons */
    .social-icon {
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,0.1);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin-right: 10px;
        transition: all 0.3s;
        color: white;
    }

    .social-icon:hover {
        background: #AD3304;
        transform: translateY(-3px);
    }

    .copyright {
        border-top: 1px solid rgba(255,255,255,0.1);
        margin-top: 50px;
        padding-top: 20px;
        text-align: center;
        font-size: 12px;
    }

        .area {
        fill: rgba(173, 51, 4, 0.0); /* Transparent fill initially */
        cursor: pointer;
        transition: 0.3s;
    }

    .area:hover {
        fill: rgba(173, 51, 4, 0.6); /* Red/Brown hover color */
    }

    .popup {
        position: absolute;
        background: white;
        padding: 10px 15px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        display: none;
        font-weight: bold;
        color: #333;
        z-index: 999;
        pointer-events: none; /* Lets mouse clicks pass through so it doesn't flicker */
        white-space: nowrap;
        border-left: 4px solid var(--color-primary);
    }

    /* --- CLOUD LAYER EFFECT --- */
.cloud-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10; /* Above SVG (2) and Header (50) initially, or just above SVG */
    pointer-events: none; /* CRITICAL: Allows clicks to pass through to the Map */
    object-fit: cover;
    opacity: 0.9; /* Slightly transparent so hints of map show through */
    
    /* ANIMATION SETTINGS */
    transform: scale(1.0); /* Start Zoomed IN (140% size) */
    transition: transform 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 2s;
}

/* The class JS will add to zoom out */
.cloud-overlay.revealed {
    transform: scale(1.6); /* Zoom OUT to Normal size */
    opacity: 0.6; /* Fade out slightly to let map be visible */
}