        :root {
            --primary-color: #0056A3;
            --secondary-color: #2E7D32;
            --accent-color: #F57C00;
            --text-dark: #1A1A1A;
            --text-light: #666666;
            --background-light: #F8F9FA;
            --white: #FFFFFF;
            --border-light: #E0E0E0;
            --shadow: 0 4px 20px rgba(0, 86, 163, 0.1);
            --shadow-hover: 0 8px 30px rgba(0, 86, 163, 0.15);
        }
      
 .hero {
    background-image: url('/public/images/hero-gallery.png');
    background-size: cover;
    background-position: top center; 
    background-repeat: no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: black;
}
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s 
ease;
}


.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3); /* optional overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

        .gallery {
            padding: 5rem 0;
            background: var(--white);
        }

 .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

        .gallery-item {
            height: 350px;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
 .gallery-grid {
        grid-template-columns: 1fr; 
    }
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content p {
                font-size: 1.1rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .form-container {
                padding: 2rem;
            }
        }