@font-face {
    font-family: 'Playfair Display';
    src: url('/assets/fonts/PlayfairDisplay-Regular.woff2') format('woff2');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('/assets/fonts/PlayfairDisplay-Bold.woff2') format('woff2');
    font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Great Vibes';
    src: url('/assets/fonts/GreatVibes-Regular.woff2') format('woff2');
    font-weight: 400; font-style: normal; font-display: swap;
}

:root {
    --ink: #efe9dc;
    --bg: #0b0906;
    --bg-deep: #060504;
    --panel: #141008;
    --gold: #d4af5a;
    --gold-bright: #f5dd9a;
    --gold-deep: #8a6a2c;
    --line: #3a3020;
    --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --script: 'Great Vibes', var(--serif);
    --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --gold-gradient: linear-gradient(120deg, #8a6a2c 0%, #f5dd9a 28%, #d4af5a 45%, #fff3d6 58%, #b3893f 78%, #f5dd9a 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; letter-spacing: 0.01em; margin: 0 0 0.5em; color: #fff; }
h1 { font-size: clamp(2.4rem, 5.4vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); position: relative; padding-bottom: 16px; }
h2::after {
    content: "";
    position: absolute; left: 0; bottom: 0;
    width: 64px; height: 2px; background: var(--gold-gradient);
    background-size: 200% auto;
}
.section-center h2::after { left: 50%; transform: translateX(-50%); }

.text-gold {
    background: var(--gold-gradient);
    background-size: 220% auto;
    -webkit-background-clip: text; background-clip: text; color: transparent;
    animation: shine 7s linear infinite;
}
@keyframes shine { to { background-position: 220% center; } }

.kicker {
    display: block; font-family: var(--script); font-size: 1.5rem; color: var(--gold-bright); margin-bottom: 2px;
}
.section-center .kicker { text-align: center; }

.ornament { margin: 18px auto 20px; width: 200px; }
.ornament-svg { width: 100%; height: 24px; display: block; }

.pull-quote {
    font-family: var(--script); font-size: 1.7rem; color: var(--gold-bright); line-height: 1.4;
    margin: 6px 0 22px; max-width: 480px;
}

/* ---- Scroll cue ---- */
.scroll-cue {
    position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%); z-index: 3;
    width: 26px; height: 42px; border: 1.5px solid rgba(212,175,90,0.55); border-radius: 20px;
}
.scroll-cue span {
    position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; margin-left: -2px;
    background: var(--gold-bright); border-radius: 3px; animation: scrollCue 1.8s ease infinite;
}
@keyframes scrollCue { 0% { opacity: 1; transform: translateY(0); } 70% { opacity: 0; transform: translateY(14px); } 100% { opacity: 0; transform: translateY(14px); } }

/* ---- Trust strip ---- */
.trust-strip { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 30px 0; }
.trust-strip-inner { display: flex; align-items: center; justify-content: center; gap: 34px; flex-wrap: wrap; text-align: center; }
.trust-item { display: flex; flex-direction: column; gap: 4px; }
.trust-label { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: #8a836f; }
.trust-value { font-family: var(--serif); font-size: 1.05rem; color: var(--gold-bright); }
.trust-divider { width: 1px; height: 30px; background: var(--line); }

/* ---- Scroll reveal ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---- Header ---- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: transparent;
    border-bottom: 1px solid var(--line);
    transition: border-color .3s;
}
.site-header::before {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: rgba(6, 5, 4, 0.86);
    backdrop-filter: blur(10px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 24px; }
.brand { display: flex; align-items: center; }
.brand-logo { height: 58px; width: auto; }
.brand-name { display: none; } /* logosu zaten ismi içeriyor */

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { position: relative; font-size: 0.92rem; letter-spacing: 0.02em; padding: 8px 2px; color: #d8d2c4; transition: color .2s; }
.main-nav a::after {
    content: ""; position: absolute; left: 0; bottom: 2px; width: 0; height: 1px;
    background: var(--gold-gradient); background-size: 200% auto; transition: width .3s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold-bright); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav .cta-link {
    background: var(--gold-gradient); background-size: 200% auto;
    color: #1a1408; padding: 11px 24px; border-radius: 2px; font-weight: 600;
    box-shadow: 0 4px 18px rgba(212,175,90,0.25);
    transition: background-position .5s, transform .2s;
}
.main-nav .cta-link:hover { background-position: 100% center; transform: translateY(-1px); }
.main-nav .cta-link::after { display: none; }
.nav-toggle { display: none; background: none; border: 0; flex-direction: column; gap: 5px; cursor: pointer; z-index: 110; }
.nav-toggle span { width: 26px; height: 2px; background: var(--gold); transition: transform .25s, opacity .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero ---- */
.hero {
    position: relative; min-height: 92vh; display: flex; align-items: center; justify-content: center;
    overflow: hidden; color: #fff; background: radial-gradient(ellipse at 50% 20%, #1c160c 0%, #0b0906 70%);
    text-align: center;
}
.hero video, .hero .hero-fallback {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.4; z-index: 0;
}
.hero::before {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(6,5,4,0.35) 0%, rgba(6,5,4,0.55) 55%, rgba(6,5,4,0.95) 100%);
}
.sparkle-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 2; }
.hero-content { position: relative; z-index: 3; padding: 0 24px; max-width: 820px; margin: 0 auto; }
.hero-logo { max-width: 480px; width: 80%; margin: 0 auto 28px; filter: drop-shadow(0 0 30px rgba(212,175,90,0.25)); }
.hero-eyebrow {
    font-family: var(--script); font-size: 1.9rem; color: var(--gold-bright); margin-bottom: 6px; display: block;
}
.hero-content h1 { margin-bottom: 20px; }
.hero-content p { max-width: 560px; margin: 0 auto 32px; color: #cfc7b3; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }

.btn {
    display: inline-block; padding: 14px 30px; font-size: 0.95rem; font-weight: 500;
    border: 1px solid var(--gold); border-radius: 2px; transition: all .25s; letter-spacing: 0.02em;
}
.btn-primary { background: var(--gold-gradient); background-size: 200% auto; color: #1a1408; border-color: transparent; box-shadow: 0 6px 22px rgba(212,175,90,0.22); }
.btn-primary:hover { background-position: 100% center; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--gold-bright); border-color: rgba(212,175,90,0.55); }
.btn-outline:hover { border-color: var(--gold); background: rgba(212,175,90,0.08); }

/* Splash intro animation */
.splash-screen {
    position: fixed; inset: 0; z-index: 999; background: var(--bg-deep);
    display: flex; align-items: center; justify-content: center;
    transition: opacity .7s ease, visibility .7s ease;
}
.splash-screen.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.splash-mark { width: 260px; opacity: 0; animation: splashIn 1.6s ease forwards; filter: drop-shadow(0 0 24px rgba(212,175,90,0.35)); }
@keyframes splashIn { 0% { opacity: 0; transform: scale(0.88); } 60% { opacity: 1; } 100% { opacity: 1; transform: scale(1); } }

/* ---- Sections ---- */
section { padding: 96px 0; position: relative; }
.section-alt { background: var(--panel); }
.section-center { text-align: center; }
.lede { max-width: 680px; margin: 0 auto 44px; color: #b9b09b; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }

.service-card {
    background: linear-gradient(180deg, #171208 0%, #100d07 100%);
    border: 1px solid var(--line); padding: 36px 30px; text-align: left;
    transition: transform .3s, border-color .3s, box-shadow .3s;
    position: relative; overflow: hidden;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--gold-deep); box-shadow: 0 14px 40px rgba(0,0,0,0.4); }
.service-card .icon { color: var(--gold); font-size: 1.7rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.3rem; }
.service-card p { color: #b9b09b; margin: 0; }
.service-index {
    display: block; font-family: var(--serif); font-size: 2.2rem; color: transparent;
    -webkit-text-stroke: 1px var(--gold-deep); margin-bottom: 8px; opacity: 0.7;
}

.media-card { display: block; }
.media-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.media-card-title { padding: 18px 20px; font-family: var(--serif); color: #fff; }

.cta-section { background: radial-gradient(ellipse at 50% 0%, #1c160c 0%, var(--bg) 65%); }

.portrait-placeholder { aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; background: #0e0b07; }
.placeholder-art { width: 62%; height: 62%; }

.about-portrait { border: 1px solid var(--line); padding: 12px; background: var(--panel); position: relative; }
.about-portrait::before {
    content: ""; position: absolute; inset: 6px; border: 1px solid var(--gold-deep); pointer-events: none;
}
.about-portrait img { width: 100%; }
.page-content { color: #cfc7b3; }
.page-content h2, .page-content h3 { color: var(--gold-bright); }

/* ---- Gallery ---- */
.gallery-tabs { display: flex; gap: 10px; justify-content: center; margin-bottom: 40px; }
.gallery-tabs button {
    background: none; border: 1px solid var(--line); color: #cfc7b3; padding: 10px 22px; cursor: pointer; font-family: var(--sans);
    transition: all .25s;
}
.gallery-tabs button.active, .gallery-tabs button:hover { background: var(--gold-gradient); background-size: 200% auto; color: #1a1408; border-color: transparent; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 4/3; background: #1a150c; cursor: pointer; border: 1px solid var(--line); }
.gallery-item img, .gallery-item video { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img, .gallery-item:hover video { transform: scale(1.08); }
.gallery-item .play-badge { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--gold-bright); font-size: 2.2rem; background: rgba(6,5,4,0.35); }

.lightbox { position: fixed; inset: 0; background: rgba(6,5,4,0.96); z-index: 500; display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.open { display: flex; }
.lightbox-content { max-width: 900px; max-height: 84vh; }
.lightbox-content img, .lightbox-content video { max-width: 100%; max-height: 84vh; }
.lightbox-close { position: absolute; top: 24px; right: 32px; color: var(--gold-bright); font-size: 2.2rem; background: none; border: 0; cursor: pointer; }

/* ---- Forms ---- */
.form-panel { background: var(--panel); border: 1px solid var(--line); padding: 42px; max-width: 640px; margin: 0 auto; }
.form-row { margin-bottom: 20px; }
.form-row label { display: block; margin-bottom: 8px; font-size: 0.9rem; color: #cfc7b3; }
.form-row input, .form-row select, .form-row textarea {
    width: 100%; padding: 13px 15px; border: 1px solid var(--line); font-family: var(--sans); font-size: 1rem;
    background: #0e0b07; color: var(--ink);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,90,0.15); }
.form-hint { font-size: 0.82rem; color: #8a836f; margin-top: 6px; }
.form-error { color: #e08a7d; font-size: 0.88rem; margin-top: 6px; }
.form-success, .alert-success { background: #16250f; border: 1px solid #3a5a2a; color: #b7e39a; padding: 16px 18px; margin-bottom: 24px; }
.alert-error { background: #2a1512; border: 1px solid #6b3129; color: #f2ada0; padding: 16px 18px; margin-bottom: 24px; }
.honeypot-field { position: absolute; left: -9999px; opacity: 0; }

/* Calendar */
.booking-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.slot-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.slot-btn { border: 1px solid var(--line); background: #0e0b07; color: var(--ink); padding: 10px 17px; cursor: pointer; font-family: var(--sans); transition: all .2s; }
.slot-btn:hover { border-color: var(--gold); }
.slot-btn.selected { background: var(--gold-gradient); background-size: 200% auto; color: #1a1408; border-color: transparent; }
.slot-empty { color: #8a836f; font-size: 0.92rem; }

footer.site-footer { background: var(--bg-deep); color: #a89e87; padding: 60px 0 0; margin-top: 40px; border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 34px; padding-bottom: 42px; }
.footer-col h3, .footer-col h4 { color: var(--gold-bright); }
.footer-col a:hover { color: var(--gold-bright); }
.footer-social-block { margin-top: 18px; }
.footer-social-label {
    display: flex; align-items: center; gap: 10px; font-family: var(--sans);
    font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-bright);
    margin-bottom: 14px;
}
.footer-social-line { width: 22px; height: 1px; background: var(--gold-gradient); background-size: 200% auto; flex-shrink: 0; }
.footer-social { display: flex; gap: 14px; flex-wrap: wrap; }
.social-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line);
    color: #cfc7b3; transition: all .25s; text-decoration: none !important;
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover { color: #1a1408; background: var(--gold-gradient); border-color: transparent; transform: translateY(-2px); }

/* ---- Floating action buttons ---- */
.scroll-top-btn, .whatsapp-float {
    position: fixed; z-index: 90; width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    opacity: 0; visibility: hidden; transform: translateY(12px);
    transition: opacity .3s, transform .3s, visibility .3s;
}
.scroll-top-btn {
    right: 24px; bottom: 24px; background: var(--gold-gradient); background-size: 200% auto;
    color: #1a1408; border: none; cursor: pointer;
}
.scroll-top-btn.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-btn svg { width: 22px; height: 22px; }

.whatsapp-float {
    left: 24px; bottom: 24px; background: #25D366; color: #fff;
    opacity: 1; visibility: visible; transform: translateY(0);
    animation: whatsappPulse 2.6s ease infinite;
}
.whatsapp-float svg { width: 26px; height: 26px; }
@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(0,0,0,0.35), 0 0 0 0 rgba(37,211,102,0.4); }
    50% { box-shadow: 0 8px 24px rgba(0,0,0,0.35), 0 0 0 10px rgba(37,211,102,0); }
}

@media (max-width: 520px) {
    .scroll-top-btn, .whatsapp-float { width: 46px; height: 46px; }
    .scroll-top-btn { right: 16px; bottom: 16px; }
    .whatsapp-float { left: 16px; bottom: 16px; }
}
.footer-bottom { border-top: 1px solid var(--line); text-align: center; padding: 20px 0; font-size: 0.85rem; }

@media (max-width: 880px) {
    .main-nav {
        position: fixed; top: 0; right: 0; bottom: 0; width: 78%; max-width: 320px;
        background: var(--bg-deep); flex-direction: column; align-items: flex-start; justify-content: center;
        padding: 40px; border-left: 1px solid var(--line); gap: 22px;
        transform: translateX(100%); transition: transform .35s ease; z-index: 105;
    }
    .main-nav.open { transform: translateX(0); }
    .nav-toggle { display: flex; }
    .grid-3, .grid-2, .gallery-grid, .booking-layout, .footer-inner { grid-template-columns: 1fr; }
    .hero-logo { width: 92%; }
    section { padding: 64px 0; }
    .form-panel { padding: 28px 20px; }
    .brand-logo { height: 46px; }
}

@media (max-width: 520px) {
    .hero { min-height: 100vh; }
    .hero-content p { font-size: 0.95rem; }
    .hero-actions, .footer-inner { text-align: center; }
    .hero-actions .btn { width: 100%; text-align: center; }
    .gallery-tabs { flex-wrap: wrap; }
    .trust-divider { display: none; }
    .trust-strip-inner { gap: 22px; }
    .scroll-cue { display: none; }
}
