* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f9f5f0;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #fff;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

nav h1 {
    font-size: 1.5rem;
    color: #e07a5f;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #e07a5f;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #f2e9e4;
    padding-top: 80px;
}

.hero-content h2 {
    font-size: 3rem;
    color: #e07a5f;
}

.hero-content p {
    font-size: 1.2rem;
    margin: 1rem 0;
}

.hero-images {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.hero-images img {
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Gallery Section */
.gallery {
    padding: 100px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #e07a5f;
    margin-bottom: 2rem;
}

.event-section {
    margin-bottom: 3rem;
}

.event-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    padding: 100px 2rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    color: #e07a5f;
    margin-bottom: 2rem;
}

.contact p {
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.contact a {
    color: #e07a5f;
    text-decoration: none;
}

.reviews {
    margin-top: 2rem;
}

.reviews a {
    display: block;
    margin: 0.5rem 0;
}

/* About Section */
.about {
    padding: 100px 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    color: #e07a5f;
    margin-bottom: 2rem;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
}

.about-image {
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.about-text {
    max-width: 600px;
    text-align: left;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        gap: 1rem;
    }
    .hero-content h2 {
        font-size: 2rem;
    }
    .hero-images {
        flex-direction: column;
    }
    .hero-images img {
        max-width: 100%;
    }
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    .about-text {
        text-align: center;
    }
    .about-image {
        max-width: 100%;
    }
}