/* General Styles */
body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f9;
    line-height: 1.6;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #2c3e50;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1476673160081-cf065607f449?q=80&w=1000&auto=format&fit=crop') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.hero-content .dates {
    font-size: 1.2rem;
    font-family: 'Lato', sans-serif;
    font-style: italic;
}

/* Section Styling */
section {
    padding: 60px 0;
    text-align: center;
}

section.about {
    background-color: #fff;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 20px auto;
}

/* Gallery */
.gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.gallery-item {
    width: 300px;
    text-align: center;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.gallery-item .caption {
    margin-top: 10px;
    font-style: italic;
    color: #555;
}

/* Share Section */
.share {
    background-color: #2c3e50;
    color: #fff;
}

.share h2 {
    color: #fff;
}

.cta-button {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
}

/* Footer */
footer {
    background-color: #1a252f;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .gallery {
        flex-direction: column;
        align-items: center;
    }
}
