/* =========================================
   03 Boho Garden (Terracotta & Sage)
   ========================================= */

:root {
    --terracotta: #C46D5E;
    --terracotta-light: #DF9B90;
    --sage: #8F9E8B;
    --sand: #F4F1E9;
    --sand-dark: #E6E1D3;
    --text-dark: #3E3B39;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
}

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

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

.texture-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 999;
}

.boho-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}

/* Hero Section */
.hero-boho {
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--sand-dark);
    min-height: 90vh;
}

.arch-frame {
    background-color: var(--sand);
    border-radius: 200px 200px 0 0;
    padding: 80px 40px 60px;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(62, 59, 57, 0.05);
    border: 1px solid rgba(143, 158, 139, 0.2);
}

.eyebrow {
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: var(--sage);
    text-transform: uppercase;
    margin-bottom: 25px;
    font-weight: 500;
}

.names {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 400;
    color: var(--terracotta);
    line-height: 1.1;
    margin-bottom: 25px;
}

.names span {
    font-size: 3rem;
    color: var(--sage);
    font-style: italic;
    display: block;
    margin: 10px 0;
}

.parents {
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin-bottom: 30px;
    opacity: 0.8;
}

.parents span {
    font-size: 0.7em;
    font-style: italic;
    opacity: 0.6;
}

.leaf-divider {
    font-size: 1.8rem;
    color: var(--sage);
    margin: 30px 0;
    opacity: 0.7;
}

.tagline {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 40px;
    padding: 0 20px;
}

.date-circle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 1px dashed var(--terracotta);
    color: var(--terracotta);
    font-family: var(--font-heading);
}

.date-circle .day {
    font-size: 3rem;
    line-height: 1;
}

.date-circle .month {
    font-size: 1rem;
    letter-spacing: 2px;
    margin-top: 5px;
}

.date-circle .year {
    font-size: 1rem;
    font-family: var(--font-body);
    opacity: 0.7;
}

/* Details Section */
.boho-details {
    padding: 100px 0;
    background-color: var(--sand);
}

.detail-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--sand-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
}

.detail-icon i {
    font-size: 1.8rem;
    color: var(--terracotta);
}

.detail-text {
    flex-grow: 1;
}

.detail-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
    font-weight: 400;
    margin-bottom: 10px;
}

.detail-text .time, .detail-text .location {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--sage);
    margin-bottom: 5px;
}

.detail-text .desc {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: 15px;
}

.btn-wrap {
    margin-top: 15px;
}

.btn-boho {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid var(--terracotta);
    color: var(--terracotta);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-boho:hover {
    background-color: var(--terracotta);
    color: var(--sand);
}

/* RSVP Form Section */
.boho-rsvp {
    padding: 80px 0;
    background-color: var(--sage);
    color: var(--sand);
}

.rsvp-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(244, 241, 233, 0.2);
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.rsvp-icon {
    font-size: 2.5rem;
    color: var(--sand);
    margin-bottom: 20px;
    opacity: 0.8;
}

.rsvp-card h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.rsvp-card .subtitle {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.earth-form {
    text-align: left;
}

.input-group {
    margin-bottom: 20px;
}

.input-group.row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.earth-form input,
.earth-form select {
    width: 100%;
    padding: 15px 20px;
    background-color: rgba(244, 241, 233, 0.1);
    border: 1px solid rgba(244, 241, 233, 0.3);
    color: var(--sand);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.earth-form input:focus,
.earth-form select:focus {
    border-color: var(--sand);
    background-color: rgba(244, 241, 233, 0.15);
}

.earth-form input::placeholder {
    color: rgba(244, 241, 233, 0.6);
}

.earth-form select option {
    background-color: var(--sage);
    color: var(--sand);
}

.btn-boho-solid {
    width: 100%;
    padding: 15px;
    background-color: var(--sand);
    color: var(--sage);
    border: none;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-boho-solid:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

.form-message {
    margin-top: 15px;
    text-align: center;
    font-size: 0.9rem;
}

/* Footer */
.boho-footer {
    padding: 40px 0;
    background-color: var(--sand-dark);
    text-align: center;
}

.footer-names {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--terracotta);
    margin-bottom: 10px;
}

.boho-footer .brand {
    font-size: 0.8rem;
    color: var(--text-dark);
    opacity: 0.6;
}

.boho-footer a {
    color: var(--sage);
    text-decoration: none;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .arch-frame {
        border-radius: 150px 150px 0 0;
        padding: 60px 20px 40px;
    }
    
    .names {
        font-size: 3.5rem;
    }
    
    .detail-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .detail-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
}
