/* =========================================
   04 Elegant Soiree (Zarif Akşam Yemeği)
   ========================================= */

:root {
    --black: #0F0F0F;
    --dark-grey: #1A1A1A;
    --gold: #C5A059;
    --white: #F9F9F9;
    
    --font-heading: 'Bodoni Moda', serif;
    --font-body: 'Lato', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.soiree-wrapper {
    width: 100%;
}

/* Hero Section */
.soiree-hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background-color: var(--black);
    background-image: linear-gradient(135deg, rgba(197, 160, 89, 0.05) 0%, transparent 100%);
}

.hero-border {
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 80px 40px;
    text-align: center;
    max-width: 700px;
    width: 100%;
    position: relative;
}
.hero-border::before, .hero-border::after {
    content: '';
    position: absolute;
    width: 20px; height: 20px;
    border: 1px solid var(--gold);
}
.hero-border::before { top: -5px; left: -5px; border-right: none; border-bottom: none; }
.hero-border::after { bottom: -5px; right: -5px; border-left: none; border-top: none; }

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

.names {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 30px;
    font-style: italic;
}

.elegant-line {
    width: 1px;
    height: 80px;
    background-color: var(--gold);
    margin: 0 auto 30px;
}

.tagline {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(249,249,249,0.8);
    max-width: 450px;
    margin: 0 auto;
}

/* Details Section */
.soiree-details {
    padding: 100px 5%;
    background-color: var(--dark-grey);
    border-top: 1px solid rgba(249,249,249,0.05);
    border-bottom: 1px solid rgba(249,249,249,0.05);
}

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

.detail-item {
    flex: 1;
    text-align: center;
}

.detail-divider {
    width: 1px;
    height: 150px;
    background-color: rgba(197, 160, 89, 0.3);
}

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

.detail-item h2 {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: rgba(249,249,249,0.5);
    text-transform: uppercase;
    margin-bottom: 10px;
}

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

.detail-item p {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(249,249,249,0.8);
}

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

/* RSVP Section */
.soiree-rsvp {
    padding: 120px 5%;
    display: flex;
    justify-content: center;
    background-color: var(--black);
}

.rsvp-content {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.rsvp-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 15px;
}

.rsvp-content p {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(249,249,249,0.6);
    margin-bottom: 40px;
}

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

.soiree-form input,
.soiree-form select {
    padding: 15px 0;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(197, 160, 89, 0.4);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s ease;
}
.soiree-form input:focus,
.soiree-form select:focus {
    border-color: var(--gold);
}
.soiree-form select option {
    background-color: var(--dark-grey);
    color: var(--white);
}

.btn-soiree-solid {
    padding: 15px;
    background-color: var(--gold);
    color: var(--black);
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}
.btn-soiree-solid:hover {
    background-color: #E6C87C;
}

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

.soiree-footer {
    background-color: var(--black);
    text-align: center;
    padding: 30px;
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(249,249,249,0.3);
}
.soiree-footer a {
    color: var(--gold);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .details-container { flex-direction: column; gap: 40px; }
    .detail-divider { width: 100px; height: 1px; }
    .names { font-size: 4rem; }
    .hero-border { padding: 60px 20px; }
}
