/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;600&family=Poppins:wght@300;400;700&display=swap');

/* Hero Section */
.hero-section {
    background-image: url('../img/gallery-hero.jpg'); 
    background-size: cover;
    background-position: center;
    color: #f9d342;
    text-align: center;
    padding: 150px 20px;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); 
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #f9d342;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    color: #f0f0f0;
}

/* Gallery Section */
.gallery-section {
    padding: 70px 20px;
    text-align: center;
    background-color: #000000;
    color: #f9d342;
}

.gallery-section h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    margin-bottom: 30px;
    color: #f9d342;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.gallery-section p {
    font-size: 1.5rem;
    color: #b0b0b0;
    margin-bottom: 50px;
    max-width: 900px;
    margin: 0 auto;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 20px;
    padding: 0 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); 
}

.gallery-item:hover {
    transform: scale(1.05); 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 15px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Image Hover effect */
.gallery-item:hover img {
    transform: scale(1.15); 
}


