:root {
    --beige: #f5efe6;
    --gold: #c6a75e;
    --dark-brown: #3b2f2f;
    --wood: #5a4634;
    --soft-white: #faf8f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--beige);
    color: var(--dark-brown);
    line-height: 1.6;
}

/* ===== MENU ===== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 248, 245, 0.8);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

header:hover {
    background-color: rgba(250, 248, 245, 0.9);
}

nav {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 65px;
}

nav .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    letter-spacing: 1px;
    color: var(--wood);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-brown);
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

nav ul li a::after {
    content: "";
    display: block;
    text-align: center;
    background: var(--dark-brown);;
    height: 1px;
    width: 0%;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    opacity: 0.7;
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    background: linear-gradient(
        rgba(59,47,47,0.35),
        rgba(59,47,47,0.35)
    ),
    url("hero.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--soft-white);
    padding: 0 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.hero p {
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    margin-top: 8px;
}

/* ===== SECTIONS ===== */
section {
    max-width: 900px;
    margin: auto;
    padding: 70px 24px;
    text-align: center;
}

section#save {
    padding: 40px 24px 50px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    margin-bottom: 16px;
    color: var(--wood);
}

section p {
    font-size: 1rem;
    max-width: 650px;
    margin: auto;
    color: #4a3a3a;
    line-height: 1.7;
}

/* ===== SAVE THE DATE ===== */
.save-the-date {
    background-color: var(--soft-white);
    border-radius: 12px;
    padding: 40px 35px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.save-the-date h2 {
    margin-bottom: 12px;
}

.save-the-date > p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.date {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    margin: 16px 0;
}

.btn-calendar {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    background: linear-gradient(135deg, #d4b46a, #b8974e);
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-calendar:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}

.btn-download {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.75rem;
    color: #b69a58;
    background: none;
    padding: 6px 16px;
    text-decoration: underline;
    border-radius: 22px;
    transition: color 0.3s ease;
}

.btn-download:hover {
    color: #8b7540;
}

/* ===== COMING SOON ===== */
.coming-soon {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(90, 70, 52, 0.5);
    margin: 0 auto 60px;
    padding: 0 24px;
    text-align: center;
    font-weight: 300;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark-brown);
    color: var(--soft-white);
    text-align: center;
    padding: 40px 20px;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.6rem;
    }
    nav ul {
        gap: 16px;
    }
}

