/* =========================================
   02 Modern Oriental (Parallax & Glassmorphism)
   ========================================= */

:root {
    --emerald: #0A3622;
    --emerald-dark: #052013;
    --gold: #D4AF37;
    --gold-light: #F9F1D8;
    --white: #FFFFFF;
    
    --font-heading: 'Amiri', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--emerald-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--emerald-dark); /* Fallback */
}

/* Fixed Parallax Background */
.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--emerald);
    /* Pattern representing oriental tiles/henna */
    background-image: 
        radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0, rgba(212, 175, 55, 0.15) 2px, transparent 2px),
        radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0, rgba(212, 175, 55, 0.1) 1px, transparent 1px);
    background-size: 60px 60px, 20px 20px;
    background-position: 0 0, 30px 30px;
    z-index: -1;
}

.oriental-wrapper {
    position: relative;
    width: 100%;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px; /* Space between cards */
}

/* Glassmorphism Cards */
.card-section {
    width: 100%;
    max-width: 600px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

/* Hero Card */
.top-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
}

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

.names {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--emerald-dark);
    line-height: 1;
    margin-bottom: 20px;
}

.tagline {
    font-style: italic;
    color: #555;
    margin-bottom: 30px;
}

.oriental-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}
.oriental-divider span {
    width: 50px;
    height: 1px;
    background-color: var(--gold);
}
.oriental-divider i {
    color: var(--gold);
    font-size: 1.5rem;
}

.date-circle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    background-color: var(--gold-light);
    color: var(--emerald-dark);
    margin: 0 auto;
}
.date-circle .day {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1;
}
.date-circle .month {
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Details Card */
.details-card {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.detail-item i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}
.detail-item h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--emerald-dark);
    margin-bottom: 10px;
}
.detail-item p {
    color: #444;
    margin-bottom: 20px;
}

.btn-emerald {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid var(--emerald);
    color: var(--emerald);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    border-radius: 30px;
    transition: all 0.3s ease;
}
.btn-emerald:hover {
    background-color: var(--emerald);
    color: var(--white);
}

/* RSVP Card */
.rsvp-card h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--emerald-dark);
    margin-bottom: 15px;
}
.rsvp-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 30px;
}

.emerald-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}
.emerald-form input,
.emerald-form select {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(10, 54, 34, 0.2);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease;
}
.emerald-form input:focus,
.emerald-form select:focus {
    border-color: var(--emerald);
}

.btn-emerald-solid {
    width: 100%;
    padding: 15px;
    background-color: var(--emerald);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}
.btn-emerald-solid:hover {
    background-color: var(--emerald-dark);
}

.form-message {
    margin-top: 15px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--emerald);
    font-weight: 600;
}

/* Footer */
.oriental-footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}
.oriental-footer a {
    color: var(--gold);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 600px) {
    .glass-card { padding: 40px 20px; }
    .names { font-size: 4rem; }
}
