/* =========================================
   09 Anniversary - Floral (Romantic)
   ========================================= */

:root {
    --blush-pink: #F9EBEA;
    --rose-red: #C0392B;
    --rose-red-dark: #922B21;
    --leaf-green: #7D9078;
    --text-dark: #4A235A;
    --white: #FFFFFF;
    
    --font-heading: 'Dancing Script', cursive;
    --font-body: 'Lora', serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--blush-pink);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Floral Background */
.floral-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--blush-pink);
    background-image: radial-gradient(rgba(192, 57, 43, 0.05) 2px, transparent 2px);
    background-size: 40px 40px;
    z-index: 0;
}

/* Hero Section */
.floral-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 {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 60px 40px;
    border-radius: 200px 200px 10px 10px;
    max-width: 600px;
    box-shadow: 0 15px 35px rgba(192, 57, 43, 0.1);
    border: 1px solid rgba(192, 57, 43, 0.15);
    backdrop-filter: blur(5px);
}

.floral-icon-top, .floral-icon-bottom {
    color: var(--rose-red);
}
.floral-icon-top i { font-size: 4rem; margin-bottom: 20px; }
.floral-icon-bottom i { font-size: 2.5rem; margin-bottom: 20px; transform: rotate(180deg); }

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--leaf-green);
    margin-bottom: 15px;
}

.names {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    color: var(--rose-red);
    line-height: 1;
    margin-bottom: 20px;
}

.tagline {
    font-size: 1.1rem;
    font-style: italic;
    color: #555555;
    line-height: 1.8;
}

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

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

.floral-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--white);
    padding: 50px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(192, 57, 43, 0.08);
    position: relative;
    transition: transform 0.3s ease;
}
.floral-card:hover {
    transform: translateY(-5px);
}
.floral-card::before {
    content: '';
    position: absolute;
    top: 5px; left: 5px; right: 5px; bottom: 5px;
    border: 1px dashed rgba(192, 57, 43, 0.2);
    border-radius: 5px;
    pointer-events: none;
}

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

.floral-card h2 {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--leaf-green);
    margin-bottom: 10px;
}

.highlight {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--rose-red-dark);
    margin-bottom: 10px;
}

.floral-card p {
    color: #666;
}

.btn-floral {
    display: inline-block;
    padding: 10px 25px;
    background-color: transparent;
    color: var(--rose-red);
    border: 1px solid var(--rose-red);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 25px;
    margin-top: 25px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}
.btn-floral:hover {
    background-color: var(--rose-red);
    color: var(--white);
}

/* RSVP Section */
.floral-rsvp {
    position: relative;
    z-index: 5;
    padding: 100px 5%;
    display: flex;
    justify-content: center;
}

.rsvp-content {
    background-color: var(--white);
    padding: 60px 50px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(192, 57, 43, 0.15);
    border-top: 5px solid var(--rose-red);
}

.rsvp-content h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--rose-red-dark);
    margin-bottom: 15px;
}
.rsvp-content p {
    font-style: italic;
    color: #555555;
    margin-bottom: 30px;
}

.floral-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floral-form input,
.floral-form select {
    padding: 15px;
    background-color: var(--blush-pink);
    border: 1px solid transparent;
    border-radius: 5px;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}
.floral-form input:focus,
.floral-form select:focus {
    border-color: var(--rose-red);
    background-color: var(--white);
}

.btn-floral-solid {
    padding: 15px;
    background-color: var(--rose-red);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}
.btn-floral-solid:hover {
    background-color: var(--rose-red-dark);
}

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

.floral-footer {
    position: relative;
    z-index: 5;
    background-color: #F5EAE9;
    text-align: center;
    padding: 30px;
    font-size: 0.9rem;
    color: #888;
}
.floral-footer a {
    color: var(--rose-red);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 600px) {
    .names { font-size: 4rem; }
    .hero-content { border-radius: 100px 100px 10px 10px; padding: 40px 20px; }
    .rsvp-content { padding: 40px 20px; }
}
