* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fefdf9;
    color: #333;
    line-height: 1.6;
    position: relative;
}

/* Floral Decorations */
.floral-decoration {
    position: fixed;
    width: 250px;
    height: 250px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
}

.floral-decoration.top-left {
    top: 0;
    left: 0;
    background-image: url('images/floral-left.png');
}

.floral-decoration.top-right {
    top: 0;
    right: 0;
    background-image: url('images/floral-right.png');
    transform: scaleX(-1);
}

/* Header */
header {
    text-align: center;
    padding: 60px 20px 20px;
    position: relative;
    z-index: 2;
}

.couple-names {
    font-family: 'Great Vibes', cursive;
    font-size: 4rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 10px;
}

.wedding-details {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #666;
    font-weight: 300;
    text-transform: uppercase;
}

/* Navigation */
nav {
    text-align: center;
    padding: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #666;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #8b4f5c;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Hero Section */
.hero {
    margin-bottom: 60px;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content Sections */
.content-section {
    margin-bottom: 60px;
    padding: 40px 20px;
    text-align: center;
}

.content-section h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    font-weight: 400;
    color: #8b4f5c;
    margin-bottom: 20px;
}

.content-section p {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

footer p {
    color: #999;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .couple-names {
        font-size: 3rem;
    }

    nav ul {
        gap: 15px;
    }

    nav ul li a {
        font-size: 0.75rem;
    }

    .floral-decoration {
        width: 150px;
        height: 150px;
    }

    .content-section h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .couple-names {
        font-size: 2.5rem;
    }

    .wedding-details {
        font-size: 0.75rem;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .floral-decoration {
        width: 100px;
        height: 100px;
    }
}
