        :root {
            --primary-color: #8B4513;
            --secondary-color: #D2691E;
            --accent-color: #F4A460;
            --dark-color: #2C2C2C;
            --light-color: #F8F9FA;
            --text-color: #333333;
            --transition: all 0.3s ease;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }
        
        /* Gallery Hero Section */
        .gallery-hero {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1745573673270-f33e2c69e8b4?q=80&w=1334&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
            /* padding: 150px 0 100px; */
            color: white;
            text-align: center;
        }
        
        .gallery-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        
        .gallery-hero .tagline {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: var(--accent-color);
            font-weight: 500;
        }
        
        .gallery-hero .location {
            font-size: 1.2rem;
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .gallery-hero .location i {
            margin-right: 10px;
            color: var(--accent-color);
        }
        
        /* Gallery Intro Section */
        .gallery-intro {
            padding: 80px 0;
            background-color: var(--light-color);
            text-align: center;
        }
        
        .gallery-intro-content {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .gallery-intro-content h2 {
            color: var(--primary-color);
            margin-bottom: 30px;
        }
        
        .gallery-intro-content p {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        .gallery-taglines {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
        }
        
        .gallery-tagline {
            font-size: 1.2rem;
            font-weight: 500;
            display: flex;
            align-items: center;
        }
        
        .gallery-tagline i {
            color: var(--primary-color);
            margin-right: 10px;
            font-size: 1.3rem;
        }
        
        /* Gallery Filter Section */
        .gallery-filter {
            padding: 50px 0 30px;
            background: white;
        }
        
        .filter-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .filter-btn {
            background: white;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 500;
            transition: var(--transition);
            cursor: pointer;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background: var(--primary-color);
            color: white;
        }
        
        /* Gallery Grid Section */
        .gallery-grid-section {
            padding: 50px 0 100px;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            aspect-ratio: 1/1;
        }
        
        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            padding: 30px 20px 20px;
            transform: translateY(10px);
            opacity: 0;
            transition: var(--transition);
        }
        
        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
            opacity: 1;
        }
        
        .gallery-category {
            font-size: 0.9rem;
            color: var(--accent-color);
            font-weight: 500;
            margin-bottom: 5px;
        }
        
        .gallery-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0;
        }
        
        /* Gallery CTA Section */
        .gallery-cta {
            padding: 100px 0;
            background: var(--primary-color);
            color: white;
            text-align: center;
        }
        
        .gallery-cta h2 {
            margin-bottom: 30px;
            color: white;
        }
        
        .gallery-cta p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-light {
            background: white;
            color: var(--primary-color);
            padding: 14px 35px;
            font-weight: 500;
            font-size: 1.1rem;
            transition: var(--transition);
            border-radius: 5px;
        }
        
        .btn-light:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .gallery-hero {
                padding: 120px 0 80px;
            }
            
            .gallery-hero h1 {
                font-size: 2.5rem;
            }
            
            .gallery-hero .tagline {
                font-size: 1.2rem;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
            
            .gallery-taglines {
                flex-direction: column;
                gap: 15px;
            }
        }

        @media (max-width: 576px) {
            .gallery-intro{
                padding: 2% !important;
                padding-top: 4% !important;
            }
            .gallery-hero .container{
                margin-top: -90px;
            }
        }
  