﻿:root {
    --bg: #F4EDE4;
    --bg-light: #FAF6F1;
    --burgundy: #5D1822;
    --burgundy-dark: #3f1017;
    --accent-soft: rgba(93,24,34,0.05);
    --white: #ffffff;

    --font-main: 'Cormorant Garamond', serif;
    --font-secondary: 'Montserrat', sans-serif;
}

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

body {
    background: var(--bg);
    color: var(--burgundy);
    font-family: var(--font-main);
    overflow-x: hidden;
}

.container {
    max-width: 650px;
    margin: auto;
    padding: 0 20px;
    text-align: center;
}

.section {
    padding: 100px 0;
    transition: background 0.6s ease;
}

.section.light {
    background: var(--bg-light);
}

.section.accent {
    background: var(--accent-soft);
}

h1, h2 {
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 {
    font-size: 3.8rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
}

h2::after {
    content: "";
    width: 60px;
    height: 1px;
    background: var(--burgundy);
    display: block;
    margin: 15px auto 0;
}

p {
    font-family: var(--font-secondary);
    font-weight: 300;
    margin-bottom: 20px;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(93,24,34,0.6), rgba(93,24,34,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-names span {
    font-style: italic;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.elegant-img {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.6s ease;
}

.elegant-img:hover {
    transform: scale(1.03);
}

.timeline-item {
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 1px solid rgba(93,24,34,0.4);
    text-align: left;
}

.time {
    font-size: 1.5rem;
    font-weight: 600;
}

#map {
    height: 400px;
    border-radius: 10px;
    margin-top: 30px;
    border: 1px solid var(--burgundy);
}

.form-wrapper {
    height: 1000px;
    margin-top: 40px;
}

.form-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(.19,1,.22,1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: .2s; }
.delay-2 { transition-delay: .4s; }
.delay-3 { transition-delay: .6s; }

/* Mobile */

@media(max-width:480px){
    h1 { font-size: 2.8rem; }
    h2 { font-size: 1.6rem; }
    .section { padding: 70px 0; }
}
