/* =========================================
   01 Traditional Henna (Geleneksel Sultan)
   ========================================= */

:root {
    --bordeaux: #4A0404;
    --bordeaux-dark: #2B0202;
    --gold: #D4AF37;
    --gold-light: #F3E5AB;
    --white: #FFFFFF;
    
    --font-names: 'Great Vibes', cursive;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lora', serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bordeaux-dark);
    /* Pattern background representing velvet or damask */
    background-image: radial-gradient(rgba(212, 175, 55, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    color: var(--gold-light);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.sultan-wrapper {
    width: 100%;
    max-width: 600px;
}

.sultan-card {
    background-color: var(--bordeaux);
    border: 2px solid var(--gold);
    position: relative;
    padding: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 50px rgba(0, 0, 0, 0.5);
}

/* Ornate Corners using pseudo elements */
.corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold);
    z-index: 2;
}
.corner-tl { top: -6px; left: -6px; border-right: none; border-bottom: none; }
.corner-tr { top: -6px; right: -6px; border-left: none; border-bottom: none; }
.corner-bl { bottom: -6px; left: -6px; border-right: none; border-top: none; }
.corner-br { bottom: -6px; right: -6px; border-left: none; border-top: none; }

.card-inner {
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 50px 30px 40px;
    text-align: center;
    position: relative;
}

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

.eyebrow {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 5px;
    color: var(--gold);
    margin-bottom: 10px;
}

.names {
    font-family: var(--font-names);
    font-size: 5.5rem;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.parents {
    font-size: 0.95rem;
    font-style: italic;
    color: rgba(243, 229, 171, 0.8);
    margin-bottom: 30px;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}
.divider .line {
    width: 60px;
    height: 1px;
    background-color: rgba(212, 175, 55, 0.5);
}
.divider i {
    color: var(--gold);
    font-size: 1.2rem;
}

.tagline {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 40px;
    padding: 0 10px;
}

.date-block {
    margin-bottom: 40px;
}
.date-row {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    border: 1px solid var(--gold);
    border-radius: 5px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
}
.date-row .day {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold-light);
    line-height: 1;
}
.date-row .month-year {
    display: flex;
    flex-direction: column;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 2px;
}
.time {
    font-size: 1rem;
    color: var(--gold);
    font-style: italic;
}

.location-block {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.3);
}
.location-block i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 10px;
}
.location-block h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-weight: 400;
}
.location-block p {
    font-size: 0.95rem;
    color: rgba(243, 229, 171, 0.7);
    margin-bottom: 20px;
}

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

.rsvp-block {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 30px 20px;
    border-radius: 5px;
}
.rsvp-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}
.rsvp-desc {
    font-size: 0.9rem;
    color: rgba(243, 229, 171, 0.8);
    margin-bottom: 20px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    background-color: #25D366;
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
}
.btn-whatsapp:hover {
    background-color: #1EBE5C;
}

.footer-brand {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    color: rgba(243, 229, 171, 0.5);
    padding-bottom: 20px;
}
.footer-brand a {
    color: var(--gold);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 500px) {
    .names { font-size: 4rem; }
    .card-inner { padding: 40px 15px 30px; }
}
