:root {
    --primary: #c04d33; /* Sedona Red/Clay */
    --accent: #8b3a2b;  /* Deep Terra Cotta */
    --bg: #e38e60;      /* Sedona Orange */
    --bg-light: #faf3e0; /* Warm Sand/Cream */
    --text: #3d1a16;    /* Deep Earthy Brown */
    --text-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(61, 26, 22, 0.15);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: linear-gradient(135deg, #e38e60 0%, #c04d33 100%);
    background-attachment: fixed;
    scroll-behavior: smooth;
}

h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

/* Hero Section */
.hero {
    position: relative;
    height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.names {
    font-size: 5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    animation: fadeInDown 1.5s ease;
}

.date {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    animation: fadeInUp 1.5s ease;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.8;
}

.scroll-indicator .arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin-top: 10px;
    animation: bounce 2s infinite;
}

/* Navigation */
.sticky-nav {
    position: sticky;
    top: 0;
    height: 64px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.sticky-nav ul {
    width: 100%;
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.sticky-nav li {
    margin: 0 1.5rem;
}

.sticky-nav a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
}

.sticky-nav a:hover {
    color: var(--accent);
}

/* Sections */
.content-section {
    padding: 5rem 0;
}

.light-bg {
    background-color: #faf9f6;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--accent);
    margin: 1.5rem auto 0;
}

/* Details Section */
.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    text-align: center;
}

.details-item h3 {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.details-item p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.details-item strong {
    color: var(--primary);
    font-size: 1.4rem;
}

/* Footer */
footer {
    background-color: var(--bg-light);
    color: var(--text);
    text-align: center;
    padding: 4rem 0;
    font-size: 0.9rem;
    border-top: 1px solid rgba(192, 77, 51, 0.1);
}


@keyframes fadeInDown {

    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: rotate(45deg) translate(0, 0);
    }

    40% {
        transform: rotate(45deg) translate(10px, 10px);
    }

    60% {
        transform: rotate(45deg) translate(5px, 5px);
    }
}

/* RSVP Section Styling */
.rsvp-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

.rsvp-intro {
    margin-bottom: 2.5rem;
    color: #666;
    font-size: 1.2rem;
    line-height: 1.6;
}

.btn-rsvp {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 1.5rem 3.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.15);
}

.btn-rsvp:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 163, 115, 0.25);
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .names {
        font-size: 3rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .content-section {
        padding: 5rem 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .sticky-nav li {
        margin: 0 0.8rem;
    }
}

@media (max-width: 480px) {
    .sticky-nav ul {
        padding: 0.8rem 0;
    }

    .sticky-nav li {
        margin: 0 0.5rem;
    }

    .sticky-nav a {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .names {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }

    .date {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .scroll-indicator {
        display: none;
    }

    .content-section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .btn-rsvp {
        padding: 1.2rem 2rem;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .details-item h3 {
        font-size: 1.5rem;
    }
    
    .details-item strong {
        font-size: 1.2rem;
    }
}