/* Reset & base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    background-color: #faf7f5;
    color: #333;
    line-height: 1.6;
}

/* Header */
.hero {
    height: 100vh;
    background: url("../images/header1.webp") center 60%/cover no-repeat;
}

.hero-text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 3rem;
    text-align: center;
}

.hero-top,
.hero-bottom {
    align-self: center;
    padding: 1rem 2rem;
    border-radius: 20px;
}

.hero-top {
    backdrop-filter: blur(5px);
    background: rgba(254, 254, 254, 0.7);
}

.hero-bottom {
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 1);
    backdrop-filter: blur(1px);
    background: rgba(254, 254, 254, 0.3);
}

header h1 {
    font-family: "Sacramento", cursive;
    font-size: 4rem;
    color: #ce455a;
}

header h2 {
    font-family: "Merriweather", serif;
    font-size: 2rem;
}

header h3 {
    letter-spacing: 0.2rem;
}

header p {
    font-family: "Merriweather", serif;
    font-size: 1.1rem;
}

/* Navigation */
nav.links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1rem;
    background-color: white;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav.links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

nav.links a:hover {
    color: #ce455a;
}

/* Sections */
section {
    padding: 4rem 1.5rem;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

section h2 {
    font-family: "Merriweather", serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ce455a;
}

.about-container,
.order-container,
.venue-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;

    max-width: 1200px;
    margin: 0 auto;
}

.about-text,
.order-text,
.venue-text {
    flex: 1;
    text-align: left;
}

.about-image img,
.order-image img,
.venue-image img {
    width: auto;
    max-width: 600px;
    height: auto;

    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.order-text {
    text-align: right;
}

.reverse {
    flex-direction: row-reverse;
}

/* Venue */
#venue {
    border-radius: 10px;
}

.venue-card + .venue-card {
    margin-top: 1rem;
}

/* RSVP */
#rsvp {
    background-color: #f3eaea;
    border-radius: 10px;
    max-width: 1200px;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.9rem;
    color: #777;
}

/* Responsive */
@media (max-width: 750px) {
    header h1 {
        font-size: 2.5rem;
    }

    header h2 {
        font-size: 1.5rem;
    }

    nav.links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .about-container,
    .order-container,
    .venue-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text,
    .order-text,
    .venue-text {
        text-align: center;
    }
}