/*-----------------------------------------------------------------------------------

    Creator Name: Supergraphics - https://supergraphicsmedia.com
    Author: GR
    Support: info@supergraphicsmedia.com
    Version: 2.0

-----------------------------------------------------------------------------------

**********************************************/
/* === CSS Variables === */
        :root {
            --bg-color: #f0e3d3; 
            --accent-color: #cb977c;
            --accent-dark: #c58c6e; 
            --text-main: #c58c6e; 
            --text-light: #c58c6e;
            --white: #ffffff;
            --font-serif: 'Playfair Display', serif;
            --font-sans: 'Lato', sans-serif;
        }

        /* === Reset & Base === */
        * { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

        body {
            font-family: var(--font-sans);
            color: var(--text-main);
            background-color: var(--bg-color);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; }
        img { max-width: 100%; display: block; }

        /* === Header === */
        header {
            position: fixed;
            top: 0; left: 0; width: 100%;
            height: 80px;
            background-color: var(--white);
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
        }

        header.scrolled {
            background-color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(8px);
        }

        /* Header Logo Configuration */
        .logo {
            display: flex; align-items: center; text-decoration: none; gap: 12px;
        }
        
        /* Desktop Logo Size (Adjust width/height here if needed) */
        .logo-icon {
            width: 249px; 
            height: 70px; 
            /*border-radius: 50%;
            object-fit: cover; */
        }
        
        /* Desktop Logo Text Size (Adjust font-size here if needed) */
        .logo-text {
            font-family: var(--font-serif); 
            font-size: 1.8rem; 
            color: var(--accent-color);
            font-weight: 600; 
            letter-spacing: 1px;
        }

        .header-right { display: flex; align-items: center; gap: 20px; }

        /* Phone & Social Icons Desktop */
        .header-phone-text {
            color: var(--accent-color); 
            font-weight: 700; 
            font-size: 1.2rem; 
            text-decoration: none; 
            transition: color 0.3s;
        }
        .header-phone-text:hover { color: #c58c6e; }

        .social-icons { display: flex; gap: 8px; }
        .social-icons a {
            color: var(--white); background-color: var(--accent-color);
            width: 30px; height: 30px; border-radius: 50%;
            display: inline-flex; justify-content: center; align-items: center;
            text-decoration: none; font-size: 0.8rem; transition: opacity 0.3s;
        }
        .social-icons a:hover { opacity: 0.8; }

        /* Buttons & Mobile Phone Icon */
        .btn-outline {
            border: 1px solid var(--accent-color); color: var(--accent-color);
            padding: 8px 20px; text-decoration: none; font-size: 0.8rem;
            letter-spacing: 1px; text-transform: uppercase; transition: all 0.3s;
            white-space: nowrap; cursor: pointer; background: transparent;
        }
        .btn-outline:hover { background-color: var(--accent-color); color: var(--white); }

        .btn-solid {
            background-color: var(--accent-color); color: var(--white);
            border: 1px solid var(--accent-color); padding: 8px 20px;
            text-decoration: none; font-size: 0.8rem; letter-spacing: 1px;
            text-transform: uppercase; transition: all 0.3s; cursor: pointer;
        }
        .btn-solid:hover { opacity: 0.8; }

        .mobile-phone-icon {
            display: none; color: var(--accent-color); font-size: 1.4rem; text-decoration: none; transition: color 0.3s; padding-right: 10px;
        }
        .mobile-phone-icon:hover { color: #c58c6e; }

        /* Hamburger Styles */
        .hamburger {
            width: 40px; height: 40px; background-color: var(--accent-color); border-radius: 50%;
            display: flex; flex-direction: column; justify-content: center; align-items: center;
            cursor: pointer; gap: 5px; z-index: 1001; transition: opacity 0.3s;
        }
        .hamburger:hover { opacity: 0.8; }
        .hamburger span { width: 18px; height: 2px; background-color: var(--white); transition: 0.3s; }
        .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        /* Fullscreen Menu Overlay */
        .nav-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
            background-color: rgba(244, 239, 231, 0.98);
            display: flex; justify-content: center; align-items: center;
            opacity: 0; visibility: hidden; transition: all 0.5s ease; z-index: 999;
        }
        .nav-overlay.active { opacity: 1; visibility: visible; }
        .nav-content { display: flex; flex-direction: column; align-items: center; }
        .nav-content ul { list-style: none; text-align: center; }
        .nav-content ul li { margin: 20px 0; transform: translateY(30px); opacity: 0; transition: all 0.5s ease; }
        
        .nav-overlay.active ul li { transform: translateY(0); opacity: 1; }
        .nav-overlay.active ul li:nth-child(1) { transition-delay: 0.1s; }
        .nav-overlay.active ul li:nth-child(2) { transition-delay: 0.2s; }
        .nav-overlay.active ul li:nth-child(3) { transition-delay: 0.3s; }
        .nav-overlay.active ul li:nth-child(4) { transition-delay: 0.4s; }
        .nav-overlay.active ul li:nth-child(5) { transition-delay: 0.5s; }

        .nav-overlay ul li a {
            font-size: 3rem; color: var(--accent-color); text-decoration: none;
            font-family: var(--font-serif); transition: color 0.3s;
        }
        .nav-overlay ul li a:hover { color: var(--text-main); }

        /* === Image Carousel === */
        .hero-carousel {
            position: relative; margin-top: 80px; height: calc(100vh - 80px);
            overflow: hidden; background-color: #c58c6e;
            border-bottom: 8px solid var(--accent-dark); 
        }
        .carousel-track { display: flex; height: 100%; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); }
        .carousel-slide { min-width: 100%; height: 100%; display: block; position: relative; }
        .carousel-slide img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: opacity 0.3s; }
        .carousel-slide:hover img { opacity: 1; }

        .carousel-btn {
            position: absolute; top: 50%; transform: translateY(-50%);
            background: rgba(179, 125, 99, 0.5); color: white; border: none;
            width: 50px; height: 50px; border-radius: 50%; cursor: pointer;
            font-size: 1.2rem; z-index: 10; backdrop-filter: blur(5px);
            transition: background 0.3s, transform 0.3s; display: flex; justify-content: center; align-items: center;
        }
        .carousel-btn:hover { background: var(--accent-color); transform: translateY(-50%) scale(1.1); }
        .carousel-btn.prev { left: 20px; }
        .carousel-btn.next { right: 20px; }

        .carousel-dots { position: absolute; bottom: 30px; width: 100%; display: flex; justify-content: center; gap: 12px; z-index: 10; }
        .dot { width: 12px; height: 12px; background-color: rgba(255,255,255,0.4); border-radius: 50%; cursor: pointer; transition: background-color 0.3s, transform 0.3s; }
        .dot.active { background-color: var(--white); transform: scale(1.2); }

        /* === Quote Section === */
        .quote-section { text-align: center; padding: 40px 20px; background-color: var(--bg-color); }
        .quote-section-int { text-align: center; padding: 110px 20px 40px 20px; background-color: var(--bg-color); }
        .quote-section h2 { font-size: 3.5rem; color: var(--accent-color); max-width: 800px; margin: 0 auto 20px; line-height: 1.2; }
        .quote-section-int h2 { font-size: 3.5rem; color: var(--accent-color); max-width: 800px; margin: 0 auto 20px; line-height: 1.2; }
        .hands-icon { width: 80px; margin: 0 auto; opacity: 0.7; }

        /* === Categories Grid === */
        .categories-section { padding: 0 40px 60px; background-color: var(--bg-color); }
        .categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; max-width: 1400px; margin: 0 auto; }
        .category-card { position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; display: block; text-decoration: none; }
        .category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
        .category-card::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.3); transition: background 0.3s; }
        .category-card:hover img { transform: scale(1.08); }
        .category-card:hover::after { background: rgba(0,0,0,0.5); }
        .category-card h3 { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: var(--white); font-size: 2rem; z-index: 2; letter-spacing: 2px; text-transform: uppercase; }
        .view-all-container { text-align: center; margin-top: 40px; }

        /* === Features Bar === */
        .features-bar {
            background-color: var(--white); padding: 40px; display: grid; grid-template-columns: repeat(4, 1fr);
            gap: 20px; border-top: 1px solid #e5dfd5; border-bottom: 1px solid #e5dfd5;
        }
        .feature-item { display: flex; align-items: center; justify-content: center; gap: 15px; cursor: default; }
        .feature-item i { font-size: 2rem; color: var(--accent-color); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
        .feature-item:hover i { transform: translateY(-5px) scale(1.1); color: #d1a38b; }
        .feature-text h4 { font-size: 1rem; color: var(--text-main); font-weight: 700; }
        .feature-text p { font-size: 0.8rem; color: var(--text-light); }

        /* === Instagram Section === */
        .instagram-section { padding: 80px 0; background-color: var(--white); }
        .instagram-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; text-align: center; }
        .instagram-header { display: flex; align-items: center; justify-content: center; gap: 15px; margin-bottom: 40px; }
        .instagram-header h2 { font-size: 2.5rem; color: var(--accent-color); text-transform: uppercase; }
        .instagram-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 5px; }
        .insta-item { position: relative; aspect-ratio: 1/1; overflow: hidden; display: block; }
        .btn-insta { display: inline-block; margin-top: 40px; border: 1px solid #d1a38b; padding: 10px 30px; color: var(--accent-color); text-decoration: none; font-size: 0.85rem; letter-spacing: 1px; transition: all 0.3s; }
        .btn-insta:hover { background-color: var(--accent-dark); color: var(--white) }

        /* === Footer Main Structure === */
        footer { 
            background-color: var(--accent-color); 
            color: var(--white); 
            padding-top: 40px; 
        }
        
        .footer-content { 
            display: flex; 
            justify-content: space-between; 
            max-width: 1400px; 
            margin: 0 auto; 
            padding: 0 40px 30px; 
            gap: 40px; 
        }

        .footer-left h2 { font-size: 1.8rem; margin-bottom: 20px; letter-spacing: 1px; }
        
        .footer-left p { 
            margin-bottom: 12px; 
            font-size: 0.9rem; 
            display: flex; 
            align-items: flex-start; 
            gap: 12px; 
            line-height: 1.5;
        }
        
        .footer-left p i {
            margin-top: 3px; 
            font-size: 1rem;
        }
        
        .footer-email-link {
            color: #f0e3d3;
            text-decoration: none;
            transition: opacity 0.3s;
        }
        .footer-email-link:hover { opacity: 0.7; }

        .footer-links { margin-top: 20px; display: flex; gap: 15px; font-size: 0.8rem; }
        .footer-links a { color: var(--white); text-decoration: underline; cursor: pointer; transition: opacity 0.3s; }
        .footer-links a:hover { opacity: 0.7; }
        
        /* Mobile Social Icons default state (hidden on desktop) */
        .mobile-social-icons { display: none; }

        .footer-right { display: flex; flex-direction: column; align-items: flex-end; }
        
        .footer-menu { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; }
        .footer-menu a { color: var(--white); text-decoration: none; font-family: var(--font-serif); font-size: 1.1rem; transition: opacity 0.3s; }
        .footer-menu a:hover { opacity: 0.7; }
        
        .footer-logo { width: 58px; height: 68px; border-radius: 8px; object-fit: cover; margin-top: 20px; padding: 10px;
            background-color: #bb8162 !important;
            animation: pulse 0.8s infinite ease-in-out !important;
            transition: transform 0.25s ease !important;
            display: inline-block !important;
            }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.07); }
            100% { transform: scale(1); }
            }

        .footer-logo:hover {
            transform: scale(1.12) !important;
            background-color: #c58c6e !important;
            border-radius: 8px !important;
            padding: 10px;
            }

        /* === Sub-Footer (Darker Division) === */
        .footer-sub { background-color: var(--accent-dark); width: 100%; }
        .footer-sub-inner {
            display: flex; justify-content: space-between; align-items: center;
            max-width: 1400px; margin: 0 auto; padding: 20px 40px; font-size: 0.85rem; opacity: 0.9;
        }
        .copyright-group { display: flex; align-items: center; gap: 15px; flex-wrap: wrap; }
        .sub-footer-links { margin-top: 0; }

        /* Mobile specific inline block for subfooter text */
        .mobile-block { display: inline; }

        /* === Mobile CTA Bar default state (hidden on desktop) === */
        .mobile-cta-bar { display: none; }

        /* === Pop-Up Modals === */
        .modal {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background-color: rgba(0, 0, 0, 0.7); backdrop-filter: blur(3px);
            display: flex; justify-content: center; align-items: center; z-index: 2000;
            opacity: 0; visibility: hidden; transition: 0.3s ease-in-out;
        }
        .modal.active { opacity: 1; visibility: visible; }
        .modal-content {
            background-color: var(--white); width: 90%; max-width: 600px; max-height: 80vh; 
            border-radius: 8px; padding: 40px; position: relative; overflow-y: auto; box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        .modal-content h3 { font-size: 2rem; color: var(--accent-color); margin-bottom: 20px; }
        .modal-content p { font-size: 1rem; line-height: 1.6; margin-bottom: 15px; }
        .close-btn { position: absolute; top: 15px; right: 20px; font-size: 2rem; cursor: pointer; color: var(--text-main); transition: color 0.3s; line-height: 1; }
        .close-btn:hover { color: var(--accent-color); }

        /* === Cookie Banner === */
        .cookie-banner {
            position: fixed; bottom: -150%; left: 0; width: 100%;
            background-color: var(--white); box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
            z-index: 3000; padding: 25px 40px; display: flex; justify-content: space-between; align-items: center; gap: 30px;
            transition: bottom 0.6s cubic-bezier(0.25, 1, 0.5, 1);
            border-top: 4px solid var(--accent-color);
        }
        .cookie-banner.show { bottom: 0; }
        .cookie-content { flex: 1; font-size: 0.9rem; line-height: 1.5; color: var(--text-light); }
        .cookie-content h4 { font-family: var(--font-sans); font-weight: 700; color: var(--text-main); font-size: 1.2rem; margin-bottom: 8px; }
        
        .cookie-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
        
        /* Toggle Switch UI */
        .toggle-switch-wrapper {
            display: flex; align-items: center; gap: 10px; cursor: pointer;
            font-size: 0.85rem; font-weight: 700; color: var(--text-main);
        }
        .toggle-switch { position: relative; width: 44px; height: 24px; display: inline-block; }
        .toggle-switch input { opacity: 0; width: 0; height: 0; }
        .slider {
            position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
            background-color: #ccc; transition: .4s; border-radius: 24px;
        }
        .slider:before {
            position: absolute; content: ""; height: 18px; width: 18px; left: 3px; bottom: 3px;
            background-color: white; transition: .4s; border-radius: 50%; box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        input:checked + .slider { background-color: var(--accent-color); }
        input:checked + .slider:before { transform: translateX(20px); }

        /* === Scroll Reveal Animations === */
        .reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
        .reveal.active { opacity: 1; transform: translateY(0); }

        /* === Responsive View (Tablet / iPad) === */
        @media (min-width: 769px) and (max-width: 1024px) {
            /* Tablet Logo Size (Adjust here if needed) */
            .logo-icon { width: 213px; height: 60px; }
            .logo-text { font-size: 1.2rem; }
            
            .category-card h3 { font-size: 1.2rem; } 
            .instagram-grid { grid-template-columns: repeat(3, 1fr); }
            .quote-section h2 { font-size: 2.5rem; }
            .cookie-banner { flex-direction: column; align-items: flex-start; }
        }

        /* === Responsive View (Mobile) === */
        @media (max-width: 768px) {
            header { padding: 0 15px; }
            
            /* Mobile Logo Size (Adjust here if needed) */
            .logo-icon { width: 213px; height: 60px; } 
            .logo-text { font-size: 1.5rem; }
            
            .header-right { gap: 6px; }
            
            /* Hide Desktop Social/Contact items */
            .header-phone-text, .social-icons, .btn-outline { display: none; }
            
            /* Show Mobile specific items */
            .mobile-phone-icon { display: block; }
            .btn-outline {padding: 6px 12px; font-size: 0.7rem; }
            .hamburger { width: 35px; height: 35px; }

            .quote-section h2 { font-size: 2rem; }
            
            /* Categories Grid - 2 per row */
            .categories-section { padding: 0 20px 60px; }
            .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
            .category-card h3 { font-size: 1.1rem; } 

            /* Features Grid - 2 per row */
            .features-bar { grid-template-columns: repeat(2, 1fr); gap: 30px 15px; text-align: center; }
            .feature-item { flex-direction: column; text-align: center; }
            
            /* Instagram Container */
            .instagram-container { padding: 0 20px; }
            .instagram-grid { grid-template-columns: repeat(2, 1fr); }
            
            /* Footer Adjustments */
            .footer-content { padding: 0 20px 20px; flex-direction: column; text-align: center; align-items: center; }
            .footer-left { display: flex; flex-direction: column; align-items: center; }
            
            /* Mobile specific Footer Social Icons */
            .mobile-social-icons {
                display: flex; justify-content: center; gap: 15px;
                margin-top: 25px; margin-bottom: 0px !important; width: 100%;
            }
            .mobile-social-icons a {
                color: var(--white); background-color: var(--accent-dark);
                width: 38px; height: 38px; border-radius: 50%;
                display: inline-flex; justify-content: center; align-items: center;
                text-decoration: none; font-size: 1.1rem; transition: all 0.3s;
            }
            .mobile-social-icons a:hover {
                background-color: var(--white); color: var(--accent-dark);
            }

            .footer-links { justify-content: center; width: 100%; }
            
            /* Hidden Elements on Mobile */
            .footer-menu, .footer-logo { display: none; margin-top: -10px;}
            
            .footer-right { align-items: center; width: 100%; }
            
            /* Sub-Footer Mobile Stacking */
            .footer-sub-inner { 
                flex-direction: column; 
                gap: 5px; 
                text-align: center; 
                padding: 20px; 
                line-height: 1.6;
            }
            .copyright-group { 
                flex-direction: column; 
                gap: 5px; 
            }
            .copyright-text { order: 1; }
            .all-rights-text { order: 2; }
            .sub-footer-links { order: 3; }

            /* Wrap Subfooter Copyright on Mobile */
            .mobile-block { display: block; }
            
            .nav-overlay ul li a { font-size: 2.2rem; }
            .carousel-btn { width: 40px; height: 40px; font-size: 1rem; }

            /* --- Mobile CTA Bar --- */
            .mobile-cta-bar {
                display: flex; justify-content: center; align-items: center; gap: 15px;
                position: fixed; bottom: 0; left: 0; width: 100%;
                background-color: rgba(179, 125, 99, 0.9); /* light brown, transparent */
                backdrop-filter: blur(8px);
                padding: 15px 20px;
                z-index: 998;
            }
            .m-cta-btn {
                flex: 1; padding: 12px 0; text-align: center;
                font-size: 0.85rem; font-weight: 700; letter-spacing: 1px;
                text-transform: uppercase; text-decoration: none;
                border-radius: 4px; transition: all 0.3s;
            }
            .m-btn-call {
                background-color: transparent; color: var(--white); border: 2px solid var(--white);
            }
            .m-btn-call:hover {
                background-color: var(--white); color: var(--accent-color);
            }
            .m-btn-online {
                background-color: var(--white); color: var(--accent-color); border: 2px solid var(--white);
            }
            .m-btn-online:hover {
                background-color: transparent; color: var(--white);
            }
            
            /* Offset bottom spacing so sticky bar doesn't cover footer text */
            body { padding-bottom: 74px; }

            /* Mobile Cookie Banner Adjustments */
            .cookie-banner { flex-direction: column; padding: 20px; gap: 20px; text-align: left; }
            .cookie-actions { flex-direction: column; align-items: stretch; width: 100%; }
            .toggle-switch-wrapper { justify-content: space-between; }
            
            /* Force cookie banner to appear ABOVE the sticky CTA bar */
            .cookie-banner.show { bottom: 74px; }

            .pt50 {padding-top: 150px !important}
        }
