  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        
        /* Header Styles */
        .page-header {
            background: linear-gradient(135deg, #264535 0%, #2f4538 100%);
            color: white;
            padding: 40px 0;
            text-align: center;
        }

        .page-header h1 {
            font-size: 36px;
            margin-bottom: 10px;
            font-family: 'Playfair Display', serif;
        }

        .breadcrumb {
            color: #F2A23E;
        }

        .breadcrumb a {
            color: #F2A23E;
            text-decoration: none;
        }

        /* Gallery Container */
        .gallery-container {
            max-width: 1400px;
            margin: 50px auto;
            padding: 0 20px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title h2 {
            font-size: 32px;
            color: #264535;
            font-family: 'Playfair Display', serif;
            margin-bottom: 10px;
        }

        .section-title p {
            color: #8b7b6b;
            font-size: 16px;
        }

        /* ===== TAB NAVIGATION ===== */
        .gallery-tabs {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .tab-btn {
            padding: 14px 45px;
            background: transparent;
            color: #264535;
            border: 2px solid #264535;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            cursor: pointer;
            border-radius: 3px;
            transition: all 0.3s ease;
            font-family: 'Playfair Display', serif;
        }

        .tab-btn:hover {
            background: rgba(38, 69, 53, 0.1);
        }

        .tab-btn.active {
            background: linear-gradient(135deg, #8B0000 0%, #A52A2A 100%);
            color: #fff;
            border-color: #8B0000;
            box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
        }

        /* Tab Content */
        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .tab-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            height: 300px;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Overlay */
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(38, 69, 53, 0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .icon-circle {
            width: 60px;
            height: 60px;
            background: #F2A23E;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            transform: scale(0);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .icon-circle {
            transform: scale(1);
        }

        .icon-circle:hover {
            background: #8B0000;
            transform: scale(1.1) !important;
        }

        /* Lightbox Modal */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-img,
        .lightbox-video {
            max-width: 100%;
            max-height: 85vh;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }

        .lightbox-video {
            width: 80vw;
            max-width: 1000px;
            height: 60vh;
            background: #000;
        }

        /* Close Button */
        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 40px;
            cursor: pointer;
            z-index: 10000;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .lightbox-close:hover {
            background: rgba(139, 0, 0, 0.8);
            transform: rotate(90deg);
        }

        /* Navigation Arrows */
        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 40px;
            cursor: pointer;
            z-index: 10000;
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .lightbox-nav:hover {
            background: rgba(242, 162, 62, 0.9);
            transform: translateY(-50%) scale(1.1);
        }

        .lightbox-prev {
            left: 30px;
        }

        .lightbox-next {
            right: 30px;
        }

        /* Image Counter */
        .lightbox-counter {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 16px;
            background: rgba(0, 0, 0, 0.6);
            padding: 10px 25px;
            border-radius: 25px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 15px;
            }

            .gallery-item {
                height: 250px;
            }

            .tab-btn {
                padding: 12px 30px;
                font-size: 14px;
            }

            .lightbox-nav {
                width: 45px;
                height: 45px;
                font-size: 28px;
            }

            .lightbox-prev {
                left: 10px;
            }

            .lightbox-next {
                right: 10px;
            }

            .lightbox-close {
                top: 10px;
                right: 20px;
                font-size: 32px;
            }

            .lightbox-video {
                width: 95vw;
                height: 40vh;
            }
        }

        @media (max-width: 480px) {
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .page-header h1 {
                font-size: 28px;
            }

            .section-title h2 {
                font-size: 24px;
            }

            .gallery-tabs {
                gap: 10px;
            }

            .tab-btn {
                padding: 10px 25px;
                font-size: 13px;
            }
        }
		/* ===== STICKY HEADER FOR EXISTING HEADER ===== */
		/* Adjust this selector based on your header's actual class/ID */
		header,
		.header,
		.site-header,
		#header,
		.main-header {
			position: sticky !important;
			top: 0 !important;
			z-index: 9999 !important;
			width: 100% !important;
			transition: all 0.3s ease;
		}

		/* If your header has a different structure, use this more specific approach */
		body > header,
		body > .header,
		body > div.header {
			position: sticky !important;
			top: 0 !important;
			z-index: 9999 !important;
		}

		/* Scroll effect - adds shadow when scrolling */
		header.scrolled,
		.header.scrolled,
		.site-header.scrolled {
			box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
		}
		
		/* Mobile View Logic */
		@media screen and (max-width: 768px) {
    
    /* 1. Target your tab container (Update the class name if needed) */
    .gallery-filter-container, .tabs-container, .filter-wrapper {
        display: flex !important;
        flex-wrap: wrap !important; /* This allows them to drop to a new row if they don't fit */
        width: 100% !important;
        justify-content: center !important;
        gap: 10px !important;
        padding: 10px !important;
        box-sizing: border-box !important;
    }

    /* 2. Target your buttons (Update the class name if needed) */
    .gallery-filter-btn, .tab-btn, .filter-btn {
        flex: 1 1 calc(33.333% - 10px) !important; /* Tries to fit 3 in one row */
        min-width: 120px !important; /* If screen is smaller than this, it drops to next row */
        max-width: 100% !important;
        padding: 12px 10px !important;
        font-size: 14px !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }
}
/* ===== DEFAULT PLAY ICON FOR VIDEO TAB ===== */
#video-tab .gallery-overlay {
    opacity: 1 !important;
    background: rgba(0, 0, 0, 0.4) !important; /* Lighter overlay so the video thumbnail is visible */
}

#video-tab .icon-circle {
    transform: scale(1) !important;
}

/* Optional: Darken the overlay on hover to match the other tabs */
#video-tab .gallery-item:hover .gallery-overlay {
    background: rgba(38, 69, 53, 0.85) !important;
}