﻿/* Yerel Font Tanımlama */
@font-face {
    font-family: 'LaSeduction';
    src: url('/css/La_Seduction_Nuit.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

/* Değişkenler */
:root {
    --gold: #c5a059;
    --dark-gold: #9E7659;
    --premium-dark: #2C2825;
    --premium-red: #914724; /* Yeni Kırmızı Tonu */
    --cream: #f9f8f6;
}

/* Sayfada kullanılacak sınıf */
.custom-header-font {
    font-family: 'LaSeduction', serif !important;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #F4F1ED;
    color: #333;
    margin: 0;
}

.playfair {
    font-family: 'Playfair Display', serif;
}

/* --- ÜST BANNER --- */
.premium-header {
    background-color: var(--premium-red); /* RENK BURADAN DEĞİŞTİ */
    border-bottom: 4px solid var(--dark-gold);
    padding: 30px 0 40px;
    position: relative;
}

.btn-back-link {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: opacity 0.3s;
}

    .btn-back-link:hover {
        opacity: 0.7;
        color: white;
    }

/* --- İÇERİK KARTI --- */
.menu-card {
    background: white;
    border: none;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    margin-top: -30px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

    .menu-card::before {
        content: '';
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border: 1px solid rgba(158, 118, 89, 0.15);
        pointer-events: none;
    }

/* --- VİDEO ALANI --- */
.video-frame {
    position: relative;
    padding: 10px;
    background: white;
    border: 1px solid rgba(158, 118, 89, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

    .video-frame video {
        width: 100%;
        display: block;
        object-fit: cover;
    }

/* --- TYPOGRAPHY --- */
.drop-cap::first-letter {
    float: left;
    font-size: 4.5rem;
    line-height: 1;
    padding-right: 12px;
    font-family: 'Playfair Display', serif;
    color: var(--dark-gold);
}

.ornament {
    color: var(--dark-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

    .ornament::before, .ornament::after {
        content: '';
        height: 1px;
        background: rgba(158, 118, 89, 0.2);
        width: 60px;
    }

/* --- LİSTE VE BUTONLAR --- */
.guest-info-list {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
}

    .guest-info-list li {
        padding-left: 25px;
        position: relative;
        margin-bottom: 15px;
        font-size: 0.95rem;
        color: #555;
    }

        .guest-info-list li::before {
            content: '◆';
            position: absolute;
            left: 0;
            color: var(--dark-gold);
            font-size: 0.8rem;
        }

.btn-premium {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 15px 35px;
    transition: all 0.4s;
    border-radius: 0;
}

.btn-gold {
    background-color: var(--dark-gold);
    color: white;
    border: none;
}

    .btn-gold:hover {
        background-color: var(--premium-dark);
        color: white;
        transform: translateY(-3px);
    }

.btn-outline-premium {
    border: 1px solid var(--premium-dark);
    color: var(--premium-dark);
}

    .btn-outline-premium:hover {
        background-color: var(--premium-dark);
        color: white;
        transform: translateY(-3px);
    }

@media (max-width: 768px) {
    .premium-header h1 {
        font-size: 2.5rem !important;
    }

    .menu-card {
        margin-top: 0;
        border-radius: 0;
    }
}
