/* =========================================
   08 Anniversary - Gold
   ========================================= */

:root {
    --black-bg: #111111;
    --black-light: #1A1A1A;
    --gold: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #AA8222;
    --white: #FFFFFF;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--black-bg);
    color: var(--gold-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.gold-wrapper {
    position: relative;
    width: 100%;
}

/* Background */
.gold-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 80%),
        repeating-linear-gradient(45deg, rgba(212, 175, 55, 0.02) 0px, rgba(212, 175, 55, 0.02) 2px, transparent 2px, transparent 10px);
    z-index: 0;
    pointer-events: none;
}

/* Hero Section */
.gold-hero {
    position: relative;
    z-index: 2;
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
}

.hero-content {
    max-width: 700px;
}

.eyebrow {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.anniversary-number {
    font-family: var(--font-heading);
    font-size: 8rem;
    line-height: 1;
    color: var(--gold);
    text-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    margin-bottom: 20px;
}

.names {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gold-light);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}
.divider::before, .divider::after {
    content: '';
    width: 80px;
    height: 1px;
    background-color: var(--gold-dark);
    margin: 0 15px;
}
.divider i {
    font-size: 2rem;
    color: var(--gold);
}

.tagline {
    font-size: 1.1rem;
    font-weight: 300;
    color: #CCCCCC;
    line-height: 1.8;
}

/* Details Section */
.gold-details {
    position: relative;
    z-index: 5;
    padding: 80px 5%;
}

.details-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.gold-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--black-light);
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}
.gold-card:hover {
    transform: translateY(-5px);
}

.card-border {
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 40px 30px;
    height: 100%;
}

.card-icon {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.gold-card h2 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold-dark);
    margin-bottom: 15px;
}

.highlight {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold-light);
    margin-bottom: 10px;
}

.gold-card p {
    color: #999999;
}

.btn-gold {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-top: 25px;
    transition: all 0.3s ease;
}
.btn-gold:hover {
    background-color: var(--gold);
    color: var(--black-bg);
}

/* RSVP Section */
.gold-rsvp {
    position: relative;
    z-index: 5;
    padding: 100px 5%;
    display: flex;
    justify-content: center;
    background-color: #0A0A0A;
}

.rsvp-content {
    background-color: var(--black-light);
    padding: 60px 50px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    border-top: 3px solid var(--gold);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.rsvp-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
}
.rsvp-content p {
    font-weight: 300;
    color: #CCCCCC;
    margin-bottom: 30px;
}

.gold-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gold-form input,
.gold-form select {
    padding: 18px;
    background-color: transparent;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}
.gold-form input:focus,
.gold-form select:focus {
    border-color: var(--gold);
    background-color: rgba(255,255,255,0.05);
}
.gold-form select option {
    background-color: var(--black-light);
    color: var(--white);
}

.btn-gold-solid {
    padding: 18px;
    background-color: var(--gold);
    color: var(--black-bg);
    border: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}
.btn-gold-solid:hover {
    background-color: var(--gold-light);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.form-message {
    margin-top: 20px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
}

.gold-footer {
    position: relative;
    z-index: 5;
    background-color: #050505;
    text-align: center;
    padding: 40px;
    font-size: 0.9rem;
    color: #555555;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.gold-footer a {
    color: var(--gold-dark);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 600px) {
    .anniversary-number { font-size: 6rem; }
    .names { font-size: 2.5rem; }
    .rsvp-content { padding: 40px 20px; }
}
