@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Quicksand:wght@400;600&display=swap');

:root {
    --primary-color: #ffb6c1; /* Light Pink */
    --secondary-color: #add8e6; /* Light Blue */
    --accent-color: #90ee90;   /* Light Green */
    --text-color: #333;
    --bg-color: #f8f8f8;
}

body {
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Header/Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
    border-bottom-left-radius: 50% 20%;
    border-bottom-right-radius: 50% 20%;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-family: 'Pacifico', cursive;
    font-size: 3.5em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.4em;
    opacity: 0.9;
}

/* Gallery Container */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid */
    gap: 25px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px; /* Softer edges */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); /* More pronounced shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background-color: white; /* Card-like background */
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.03); /* Lift and slightly enlarge */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.gallery-item img {
    width: 100%;
    height: 300px; /* Fixed height for consistent look */
    object-fit: cover; /* Crop to fit, maintain aspect ratio */
    display: block;
    border-radius: 15px; /* Apply to image as well */
}

/* Specific item styling for more dynamic layout */
.item-1 { grid-column: span 2; } /* Make the first image span two columns */
.item-3 { grid-row: span 2; } /* Make the third image span two rows (taller) */
.item-6 { grid-column: span 2; } /* Make the sixth image span two columns */

/* Media Queries for smaller screens */
@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: 1fr; /* Single column on small screens */
    }

    .item-1, .item-3, .item-6 {
        grid-column: span 1; /* Reset spans for mobile */
        grid-row: span 1;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1.1em;
    }

    .gallery-item img {
        height: 250px;
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
    background-color: var(--secondary-color);
    color: white;
    font-size: 0.9em;
    border-top-left-radius: 50% 20%;
    border-top-right-radius: 50% 20%;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
}