﻿/* ============================================
   AH GECELER — css.css
   ============================================ */

:root {
    --gold: #D4AF37;
    --gold-light: #F5E070;
    --gold-dark: #9A7B1C;
    --deep: #0A0606;
    --deep2: #130E0E;
    --red: #8B1A1A;
    --red-bright: #C0392B;
    --cream: #F0E8D8;
    --smoke: rgba(212,175,55,0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--deep);
    color: var(--cream);
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* Posterdeki gibi kalın, gölgeli manşet başlıklar için (hero-title vb.) */
h1, .hero-title, .display-heading {
    font-family: var(--font-display);
    font-weight: 500;
}


/* ================================================
   INTRO SCREEN
   ================================================ */
#intro-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* --- Video arka plan --- */
.intro-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.55; /* videonun üstüne overlay bindiği için yarı saydam */
}

/* Karanlık + kırmızı-sis overlay */
.intro-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse 70% 60% at 50% 55%, rgba(139,26,26,0.55) 0%, transparent 70%), radial-gradient(ellipse 100% 40% at 50% 100%, rgba(10,6,6,1) 0%, transparent 70%), linear-gradient(180deg, rgba(10,6,6,0.6) 0%, rgba(10,6,6,0.25) 50%, rgba(10,6,6,0.85) 100%);
}

/* TV scanline efekti */
.scanlines {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: repeating-linear-gradient( 0deg, transparent, transparent 2px, rgba(0,0,0,0.18) 2px, rgba(0,0,0,0.18) 4px );
}

/* --- GÜL animasyonu --- */
/*
  Sıralama:
  0–0.6s   › gül büyüyerek belirir (scale 0›1, opacity 0›1)
  0.6–2.0s › gül tam görünür, hafif titreşir
  2.0–3.2s › gül yukarı doğru yükselerek solar (opacity›0, translateY -60px)
  Sonra içerik gelir (0.3s gecikmeli)
*/
.intro-rose-wrap {
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    animation: roseReveal 3.6s ease forwards;
    pointer-events: none;
    filter: drop-shadow(0 0 30px rgba(139,26,26,0.7)) drop-shadow(0 0 60px rgba(180,30,30,0.4));
}

.intro-rose-svg {
    width: clamp(160px, 25vw, 300px);
    height: auto;
}

@keyframes roseReveal {
    0% {
        opacity: 0;
        transform: translate(-50%, -40%) scale(0.2);
    }

    18% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.08);
    }

    30% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    /* hafif sallanma */
    40% {
        transform: translate(-50%, -50%) scale(1) rotate(3deg);
    }

    50% {
        transform: translate(-50%, -50%) scale(1) rotate(-2deg);
    }

    60% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    /* yukarı çıkıp söner */
    85% {
        opacity: 0.6;
        transform: translate(-50%, -65%) scale(0.9);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -85%) scale(0.7);
    }
}

/* İçerik — gül sona ererken (3.2s) belirmeye başlar */
.intro-content {
    position: relative;
    z-index: 6;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    opacity: 0;
    animation: contentReveal 1s ease 3.2s forwards;
}

@keyframes contentReveal {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* İçerik elemanlarının kendi gecikmeleri (contentReveal sonrası stagger için) */
.intro-year-tag {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 0.7s ease 3.3s forwards;
}

.intro-logo {
    font-family: var(--font-display);
    font-size: clamp(80px, 15vw, 160px);
    line-height: 0.85;
    color: var(--cream);
    letter-spacing: 3px;
    text-shadow: 0 0 40px rgba(212,175,55,0.6), 0 0 80px rgba(212,175,55,0.3), 0 0 120px rgba(139,26,26,0.4);
    opacity: 0;
    animation: fadeUp 0.8s ease 3.4s forwards, glowPulse 3s ease 4.5s infinite alternate;
}

@keyframes glowPulse {
    from {
        text-shadow: 0 0 40px rgba(212,175,55,0.6), 0 0 80px rgba(212,175,55,0.3);
    }

    to {
        text-shadow: 0 0 70px rgba(212,175,55,1), 0 0 140px rgba(212,175,55,0.5), 0 0 200px rgba(139,26,26,0.3);
    }
}

.intro-sub {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(15px, 2.8vw, 26px);
    color: var(--gold);
    letter-spacing: 3px;
    opacity: 0;
    animation: fadeUp 0.7s ease 3.7s forwards;
}

.intro-line {
    width: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0;
    animation: fadeIn 0.5s ease 4.0s forwards, expandLine 1s ease 4.0s forwards;
}

@keyframes expandLine {
    from {
        width: 0;
    }

    to {
        width: 200px;
    }
}

.intro-description {
    font-size: 11px;
    letter-spacing: 3px;
    color: rgba(240,232,216,0.55);
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 0.7s ease 4.2s forwards;
}

.intro-enter-btn {
    margin-top: 10px;
    padding: 14px 50px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeUp 0.7s ease 4.5s forwards;
    transition: all 0.4s ease;
}

    .intro-enter-btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--gold);
        transform: translateX(-100%);
        transition: transform 0.4s ease;
        z-index: -1;
    }

    .intro-enter-btn:hover {
        color: var(--deep);
    }

        .intro-enter-btn:hover::before {
            transform: translateX(0);
        }

/* Müzik notaları */
.intro-note1, .intro-note2, .intro-note3 {
    position: absolute;
    font-size: 28px;
    opacity: 0;
    z-index: 4;
    animation: floatNote 6s ease-in-out infinite;
}

.intro-note1 {
    top: 18%;
    left: 8%;
    animation-delay: 1s;
}

.intro-note2 {
    top: 55%;
    left: 88%;
    animation-delay: 3s;
}

.intro-note3 {
    top: 28%;
    right: 12%;
    animation-delay: 5s;
}

@keyframes floatNote {
    0% {
        opacity: 0;
        transform: translateY(0) rotate(-10deg);
    }

    20% {
        opacity: 0.18;
    }

    80% {
        opacity: 0.18;
    }

    100% {
        opacity: 0;
        transform: translateY(-60px) rotate(10deg);
    }
}

/* Intro exit animation */
#intro-screen.exit {
    animation: introExit 0.9s ease forwards;
}

@keyframes introExit {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    40% {
        opacity: 1;
        transform: scale(1.04);
    }

    100% {
        opacity: 0;
        transform: scale(0.96) translateY(-16px);
        pointer-events: none;
    }
}

/* Paylaşılan keyframe'ler */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ================================================
   MAIN SITE
   ================================================ */
#main-site {
    opacity: 0;
    transition: opacity 0.9s ease;
}

    #main-site.visible {
        opacity: 1;
    }

/* --- NAV --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px;
    background: linear-gradient(to bottom, rgba(10,6,6,0.95), transparent);
    backdrop-filter: blur(10px);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--gold);
    letter-spacing: 3px;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

    .nav-links a {
        color: rgba(240,232,216,0.7);
        text-decoration: none;
        font-size: 11px;
        letter-spacing: 3px;
        text-transform: uppercase;
        transition: color 0.3s;
    }

        .nav-links a:hover {
            color: var(--gold);
        }

.nav-cart {
    position: relative;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 3px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
}

    .nav-cart:hover {
        background: var(--gold);
        color: var(--deep);
    }

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--red-bright);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .cart-badge.hidden {
        display: none;
    }

/* --- HERO --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 60px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 50% 40%, rgba(139,26,26,0.25) 0%, transparent 60%), radial-gradient(ellipse 100% 50% at 50% 100%, rgba(10,6,6,1) 0%, transparent 60%), linear-gradient(180deg, #0A0606 0%, #1a0808 50%, #0A0606 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(212,175,55,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(212,175,55,0.04) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-eyebrow {
    font-size: 16px;
    letter-spacing: 1px;
    color: var(--gold);
    text-transform: uppercase;
    opacity: 0.8;
    font-weight: 800;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(60px, 12vw, 100px);
    line-height: 0.85;
    color: var(--cream);
    text-shadow: 0 0 60px rgba(212,175,55,0.3);
    letter-spacing: 1px;
}

    .hero-title span {
        color: var(--gold);
        display: block;
    }

.hero-subtitle {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(14px, 2.5vw, 21px);
    color: rgba(240, 232, 216, 0.7);
    letter-spacing: 0.5px;
    margin-top: 8px;
}

.hero-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

.hero-divider-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold));
}

    .hero-divider-line:last-child {
        background: linear-gradient(to left, transparent, var(--gold));
    }

.hero-divider-icon {
    color: var(--gold);
    font-size: 20px;
}

.hero-date-info {
    display: flex;
    gap: 50px;
    margin-top: 20px;
}

.hero-date-item {
    text-align: center;
}

.hero-date-label {
    font-size: 15px;
    letter-spacing: 1px;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
    font-weight: 800;
}

.hero-date-value {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 1px;
    color: var(--cream);
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(212,175,55,0.5);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 20px;
    height: 30px;
    border: 1px solid rgba(212,175,55,0.4);
    border-radius: 10px;
    position: relative;
}

    .scroll-arrow::after {
        content: '';
        position: absolute;
        top: 6px;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 8px;
        background: var(--gold);
        border-radius: 2px;
        animation: scrollBounce 2s ease infinite;
    }

@keyframes scrollBounce {
    0%,100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(10px);
        opacity: 0;
    }
}

/* --- BUTTONS --- */
.btn-primary {
    padding: 14px 35px;
    background: var(--gold);
    color: var(--deep);
    border: none;
    font-family: var(--font-body);
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

    .btn-primary::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255,255,255,0.2);
        transform: translateX(-100%) skewX(-15deg);
        transition: transform 0.4s ease;
    }

    .btn-primary:hover::after {
        transform: translateX(150%) skewX(-15deg);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(212,175,55,0.3);
    }

.btn-secondary {
    padding: 14px 40px;
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(240, 232, 216, 0.3);
    font-family: var(--font-body);
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

    .btn-secondary:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

/* --- SECTIONS --- */
.section {
    padding: 100px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.section-title {
    font-family: var(--font-body);
    font-size: clamp(36px, 5vw, 34px);
    color: var(--cream);
    letter-spacing: 1px;
}

.section-title-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(212,175,55,0.5), transparent);
}
.about-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    font-weight: 800;
}
/* ¦¦ about-inner: sol metin + sağ Instagram embed, altta istatistikler ¦¦
   Mevcut .about-inner grid tanımınızı BUNUNLA DEĞİŞTİRİN
   (muhtemelen şu an tek sütun veya text+stats iki sütunluydu) */

.about-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-areas:
        "text media"
        "stats stats";
    gap: 40px 48px;
    align-items: start;
}

.about-text-block {
    grid-area: text;
}

.about-stats {
    grid-area: stats;
}

/* ¦¦ Sağ taraf: Instagram embed alanı ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦ */
.about-media {
    grid-area: media;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.about-instagram-card {
    width: 100%;
    max-width: 400px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    justify-content: center;
}

    /* Instagram'ın kendi embed genişliği sabit (min-width:326px) olduğu
   için kartı ortalıyoruz, taşma olursa yatay scroll yerine küçültüyoruz */
    .about-instagram-card iframe,
    .about-instagram-card .instagram-media {
        max-width: 100% !important;
    }

.about-instagram-follow {
    font-family: var(--font-body);
    font-size: 16px;
    letter-spacing: 0px;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 7px 14px;
    border-radius: 7px;
    transition: all .2s;
    font-weight: 800;
}

    .about-instagram-follow:hover {
        background: rgba(212,175,55,0.1);
        border-color: var(--gold);
    }

/* ¦¦ Mobilde tek sütuna düşsün ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦ */
@media (max-width: 860px) {
    .about-inner {
        grid-template-columns: 1fr;
        grid-template-areas:
            "text"
            "media"
            "stats";
    }

    .about-instagram-card {
        max-width: 100%;
    }
}
.section-tag {
    font-size: 19px;
    letter-spacing: 1px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
    font-weight: 800;
}

/* --- EVENTS GRID --- */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2px;
}

.event-card {
    background: var(--deep2);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease;
}

    .event-card:hover {
        transform: translateY(-4px);
    }

    .event-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--gold);
        transform: scaleX(0);
        transition: transform 0.4s ease;
        transform-origin: left;
    }

    .event-card:hover::before {
        transform: scaleX(1);
    }

.event-card-inner {
    padding: 36px;
    border: 1px solid rgba(212,175,55,0.1);
}

.event-card:hover .event-card-inner {
    border-color: rgba(212,175,55,0.3);
}

.event-number {
    font-family: var(--font-body);
    font-size: 80px;
    color: rgba(212,175,55,0.05);
    line-height: 1;
    position: absolute;
    top: 10px;
    right: 20px;
}

.event-date-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--red);
    padding: 8px 14px;
    margin-bottom: 20px;
}

.event-date-day {
    font-family: var(--font-body);
    font-size: 32px;
    line-height: 1;
    color: var(--cream);
}

.event-date-month {
    font-size: 12px;
    letter-spacing: 1px;
    color: rgba(240,232,216,0.8);
    text-transform: uppercase;
}

.event-name {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--cream);
    margin-bottom: 8px;
    line-height: 1.3;
}

.event-venue {
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.event-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.event-meta-label {
    font-size: 12px;
    letter-spacing: 1px;
    color: rgba(240,232,216,0.4);
    text-transform: uppercase;
}

.event-meta-value {
    font-size: 22px;
    color: var(--cream);
}

.event-tickets-section {
    border-top: 1px solid rgba(212,175,55,0.15);
    padding-top: 24px;
}

.ticket-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

    .ticket-type:last-child {
        border-bottom: none;
    }

.ticket-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ticket-name {
    font-size: 19px;
    color: var(--cream);
    font-weight: 700;
}

.ticket-desc {
    font-size: 15px;
    color: rgba(240,232,216,0.4);
    letter-spacing: 1px;
}

.ticket-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ticket-price {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--gold);
}

.ticket-currency {
    font-size: 11px;
    color: rgba(212,175,55,0.6);
    font-family: var(--font-body);
    font-weight: normal;
}

.add-to-cart-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    width: 32px;
    height: 32px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-family: monospace;
}

    .add-to-cart-btn:hover {
        background: var(--gold);
        color: var(--deep);
    }

/* --- TICKET CATEGORIES --- */
.categories-section {
    background: var(--deep2);
    border-top: 1px solid rgba(212,175,55,0.1);
    border-bottom: 1px solid rgba(212,175,55,0.1);
}

.ticket-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.ticket-cat-card {
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(212,175,55,0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    cursor: pointer;
}

    .ticket-cat-card.featured {
        background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.04));
        border-color: rgba(212,175,55,0.3);
    }

        .ticket-cat-card.featured .featured-badge {
            position: absolute;
            top: 0;
            right: 0;
            background: var(--gold);
            color: var(--deep);
            font-size: 9px;
            letter-spacing: 3px;
            padding: 4px 12px;
            text-transform: uppercase;
            font-weight: 700;
        }

    .ticket-cat-card:hover {
        border-color: rgba(212,175,55,0.5);
        transform: translateY(-4px);
    }

.cat-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
}

.cat-name {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--cream);
    margin-bottom: 8px;
}

.cat-desc {
    font-size: 11px;
    color: rgba(240,232,216,0.4);
    letter-spacing: 1px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.cat-price {
    font-family: var(--font-display);
    font-size: 40px;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.cat-price-sub {
    font-size: 10px;
    color: rgba(240,232,216,0.3);
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

/* --- CART SIDEBAR --- */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

    .cart-overlay.open {
        opacity: 1;
        pointer-events: all;
    }

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 420px;
    background: var(--deep2);
    border-left: 1px solid rgba(212,175,55,0.2);
    z-index: 501;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77,0,0.175,1);
    display: flex;
    flex-direction: column;
}

    .cart-sidebar.open {
        transform: translateX(0);
    }

.cart-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid rgba(212,175,55,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-title {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--cream);
    letter-spacing: 3px;
}

.cart-close {
    background: none;
    border: 1px solid rgba(240,232,216,0.2);
    color: var(--cream);
    width: 36px;
    height: 36px;
    font-size: 19px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

    .cart-close:hover {
        border-color: var(--red-bright);
        color: var(--red-bright);
    }

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 30px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    gap: 12px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-event {
    font-size: 17px;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.cart-item-name {
    font-size: 14px;
    color: var(--cream);
    font-weight: 700;
    margin-bottom: 4px;
}

.cart-item-date {
    font-size: 18px;
    color: rgba(240,232,216,0.4);
}

.cart-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.cart-item-price {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--gold);
}

.cart-qty-control {
    display: flex;
    align-items: center;
    gap: 10px;
}
/* ¦¦ Kampanya rozeti ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦ */
.ticket-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 5px;
    padding: 2px 9px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 1.5;
    color: #22c55e;
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.3);
    border-radius: 20px;
    width: fit-content;
    white-space: nowrap;
}
/* Kalem içi düzen: üst satır yan yana, ipucu altta tam genişlik */
.cart-item {
    display: block !important;
}

.cart-item-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

/* ¦¦ Sepet kampanya ipucu ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦ */
.cart-promo-hint {
    margin-top: 10px;
    padding: 6px 10px;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.3px;
    color: rgba(212,175,55,0.85);
    background: rgba(212,175,55,0.06);
    border: 1px dashed rgba(212,175,55,0.3);
    border-radius: 6px;
    width: 100%;
    box-sizing: border-box;
}

    .cart-promo-hint.earned {
        color: #22c55e;
        background: rgba(34,197,94,0.08);
        border: 1px solid rgba(34,197,94,0.35);
        font-weight: 600;
    }
/* Bilet satırı düzeni — rozet fiyatı sıkıştırmasın */
.ticket-type {
    align-items: flex-start;
}

.ticket-info {
    min-width: 0;
    flex: 1;
    padding-right: 12px;
}

.ticket-right {
    flex-shrink: 0;
    white-space: nowrap;
}
.qty-btn {
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.2);
    color: var(--gold);
    width: 24px;
    height: 24px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-family: monospace;
}

    .qty-btn:hover {
        background: var(--gold);
        color: var(--deep);
    }

.qty-value {
    font-size: 13px;
    color: var(--cream);
    min-width: 16px;
    text-align: center;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: rgba(240,232,216,0.2);
    gap: 12px;
    text-align: center;
}

.cart-empty-icon {
    font-size: 48px;
    opacity: 0.3;
}

.cart-empty-text {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.cart-footer {
    padding: 20px 30px 30px;
    border-top: 1px solid rgba(212,175,55,0.15);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cart-total-label {
    font-size: 14px;
    letter-spacing: 1px;
    color: rgba(240,232,216,0.5);
    text-transform: uppercase;
}

.cart-total-amount {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--gold);
}
/* ¦¦ Sepet özet satırları ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦ */
.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
}

.cart-summary-label {
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(240,232,216,0.45);
}

.cart-summary-value {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: rgba(240,232,216,0.75);
}

.cart-vat-note {
    font-size: 11px;
    letter-spacing: 0.5px;
    color: rgba(240,232,216,0.3);
    text-align: right;
    margin: 2px 0 10px;
}
.checkout-btn {
    width: 100%;
    padding: 18px;
    background: var(--gold);
    color: var(--deep);
    border: none;
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
    margin-bottom: 12px;
}

    .checkout-btn:hover {
        background: var(--gold-light);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(212,175,55,0.3);
    }

/* --- CHECKOUT MODAL --- */
.checkout-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .checkout-modal-overlay.open {
        opacity: 1;
        pointer-events: all;
    }

.checkout-modal {
    background: var(--deep2);
    border: 1px solid rgba(212,175,55,0.2);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(30px);
    transition: transform 0.4s;
}

.checkout-modal-overlay.open .checkout-modal {
    transform: translateY(0);
}

.modal-header {
    padding: 30px 36px 20px;
    border-bottom: 1px solid rgba(212,175,55,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--cream);
    letter-spacing: 3px;
}

.modal-body {
    padding: 36px;
}

.form-section-title {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

    .form-section-title::after {
        content: '';
        flex: 1;
        height: 1px;
        background: rgba(212,175,55,0.2);
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

    .form-row.single {
        grid-template-columns: 1fr;
    }

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 10px;
    letter-spacing: 3px;
    color: rgba(240,232,216,0.5);
    text-transform: uppercase;
}

.form-input {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,175,55,0.15);
    color: var(--cream);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 13px;
    transition: border-color 0.3s;
    outline: none;
}

    .form-input:focus {
        border-color: var(--gold);
    }

    .form-input::placeholder {
        color: rgba(240,232,216,0.2);
    }

.card-visual {
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

    .card-visual::before {
        content: '';
        position: absolute;
        top: -30px;
        right: -30px;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: rgba(212,175,55,0.08);
    }

.card-chip {
    width: 40px;
    height: 30px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 4px;
    margin-bottom: 20px;
}

.card-number-display {
    font-family: var(--font-body);
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.card-details-row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 2px;
}

.order-summary {
    background: rgba(212,175,55,0.04);
    border: 1px solid rgba(212,175,55,0.1);
    padding: 20px;
    margin: 24px 0;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 12px;
    color: rgba(240,232,216,0.6);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

    .summary-line.total {
        color: var(--gold);
        font-size: 14px;
        font-weight: 700;
        border-bottom: none;
        margin-top: 8px;
        padding-top: 12px;
        border-top: 1px solid rgba(212,175,55,0.2);
    }

.secure-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 20px 0;
    opacity: 0.5;
}

.secure-badge {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--cream);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* --- SUCCESS --- */
.success-screen {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 36px;
    text-align: center;
    gap: 20px;
}

    .success-screen.visible {
        display: flex;
    }

.success-check {
    width: 80px;
    height: 80px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--gold);
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% {
        transform: scale(0);
    }

    70% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

/* --- ABOUT --- */
.about-section {
    padding: 100px 60px;
    background: linear-gradient(to right, #0d0606, #1a0808, #0d0606);
    border-top: 1px solid rgba(212,175,55,0.08);
    border-bottom: 1px solid rgba(212,175,55,0.08);
}

.about-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
  
    align-items: center;
}

.about-text-block h2 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 55px);
    line-height: 1;
    color: var(--cream);
    letter-spacing: 3px;
    margin-bottom: 24px;
}

    .about-text-block h2 em {
        color: var(--gold);
        font-style: normal;
    }

.about-text-block p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(240, 232, 216, 0.6);
    margin-bottom: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.stat-box {
    padding: 30px;
    background: rgba(212,175,55,0.04);
    border: 1px solid rgba(212,175,55,0.1);
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 52px;
    color: var(--gold);
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 10px;
    letter-spacing: 3px;
    color: rgba(240,232,216,0.3);
    text-transform: uppercase;
    margin-top: 8px;
    display: block;
}

/* --- FOOTER --- */
footer {
    background: #000;
    border-top: 1px solid rgba(212,175,55,0.1);
    padding: 60px;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 20px;
    opacity: 0.6;
}

.footer-text {
    font-size: 11px;
    color: rgba(240,232,216,0.2);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 24px 0;
}

    .footer-links a {
        color: rgba(240,232,216,0.3);
        text-decoration: none;
        font-size: 10px;
        letter-spacing: 3px;
        text-transform: uppercase;
        transition: color 0.3s;
    }

        .footer-links a:hover {
            color: var(--gold);
        }

/* --- TOAST --- */
.toast {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--gold);
    color: var(--deep);
    padding: 14px 30px;
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    z-index: 999;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

    .toast.show {
        transform: translateX(-50%) translateY(0);
    }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    nav {
        padding: 16px 20px;
    }

    .nav-links {
        display: none;
    }

    .section {
        padding: 60px 20px;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-date-info {
        flex-wrap: wrap;
        gap: 20px;
    }

    .ticket-category-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cart-sidebar {
        width: 100%;
    }

    .about-inner {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-section {
        padding: 60px 20px;
    }

    footer {
        padding: 40px 20px;
    }

    .intro-rose-svg {
        width: 200px;
    }
}
/* ============================================================
   AH GECELER — css-additions.css
   css.css'e EK olarak yüklenir.
   Event kartı linkleme + detay butonu stilleri.
   ============================================================ */

/* ¦¦ Event kartı: üst tıklanabilir alan ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦ */
.event-card-link-area {
    display: block;
    text-decoration: none;
    color: inherit;
    /* Kendi içindeki margin/padding'i event-card-inner alıyor */
    margin-bottom: 4px;
    transition: opacity .25s;
}

    .event-card-link-area:hover {
        opacity: 0.88;
    }

/* Kart hover'da başlık altın rengi alsın */
.event-card:hover .event-card-link-area .event-name {
    color: var(--gold);
}

/* ¦¦ Tükendi rozeti (bilet listesinde) ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦ */
.ticket-sold-badge {
    font-size: 10px;
    letter-spacing: 3px;
    color: rgba(192,57,43,0.7);
    text-transform: uppercase;
    border: 1px solid rgba(192,57,43,0.3);
    padding: 4px 10px;
}

/* ¦¦ Detay butonu (kart alt kısmı) ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦ */
.event-detail-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 18px;
    padding: 11px 0;
    border: 1px solid rgba(212,175,55,0.25);
    color: rgba(212,175,55,0.7);
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

    .event-detail-btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(212,175,55,0.06);
        transform: translateX(-100%);
        transition: transform .35s ease;
    }

    .event-detail-btn:hover {
        border-color: var(--gold);
        color: var(--gold);
    }

        .event-detail-btn:hover::before {
            transform: translateX(0);
        }
/* ============================================================
   AH GECELER — hero-bg.css
   Hero arka plan medya katmanı (görsel veya video)
   css.css'e EK olarak yüklenir.
   ============================================================ */

/* ¦¦ Medya katmanı ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦ */
.hero-bg-media {
    position: absolute;
    inset: 0;
    z-index: 0; /* hero-bg (gradient) z-index:1'in altında */
    overflow: hidden;
}

    /* Hem img hem video tam kaplar, orantı korur */
    .hero-bg-media img,
    .hero-bg-media video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        display: block;
        /* Görsel/video biraz soluk — gradient overlay üstünden okunabilsin */
        opacity: 0.45;
        /* Hafif parallax için smooth transition */
        transition: transform 8s ease;
    }

/* Sayfa yüklenince scale efekti */
.hero:hover .hero-bg-media img,
.hero:hover .hero-bg-media video {
    transform: scale(1.04);
}

/* ¦¦ Gradient overlay — hero-bg (z:1) — medyanın üstünde ¦¦¦¦¦ */
/* Mevcut .hero-bg kurallarına z-index ekle */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1; /* medya katmanının üstünde */
    background:
    /* Alt karartma — içerik okunabilsin */
    linear-gradient( 180deg, rgba(10,6,6,0.55) 0%, rgba(10,6,6,0.30) 40%, rgba(10,6,6,0.55) 75%, rgba(10,6,6,0.92) 100% ),
    /* Kırmızı-sis vurgusu */
    radial-gradient( ellipse 70% 60% at 50% 50%, rgba(139,26,26,0.30) 0%, transparent 70% );
}

/* ¦¦ Grid z-index güncelle ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦ */
.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 2; /* overlay üstünde, içerik altında */
    background-image: linear-gradient(rgba(212,175,55,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(212,175,55,0.04) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* ¦¦ İçerik z-index güncelle ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦ */
.hero-content,
.hero-scroll-hint {
    position: relative;
    z-index: 3; /* her şeyin üstünde */
}

/* ¦¦ Video: görüntüde mevcut değilse sessiz çal ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦ */
.hero-bg-media video {
    /* autoplay bazı tarayıcılarda muted olmadan çalışmaz,
       HTML'de muted attribute'u şart */
    pointer-events: none; /* kullanıcı videoya tıklayamasın */
}

/* ¦¦ Sadece gradient modunda (medya yokken) — fallback ¦¦¦¦¦¦¦¦ */
.hero-bg-media:empty {
    /* Boşsa siyah kalmasın, arka plan korunsun */
    background: transparent;
}

/* ¦¦ Mobil ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦ */
@media (max-width: 768px) {
    .hero-bg-media img,
    .hero-bg-media video {
        /* Mobilde biraz daha koyu — metin okunabilirliği */
        opacity: 0.35;
        object-position: center top;
    }
}
/* ============================================================
   AH GECELER — İletişim Bölümü (Premium)
   css.css veya detail-page.css'in sonuna eklenir
   ============================================================ */

.contact-section {
    position: relative;
    padding: 40px 60px;
    background: #0d0808;
    border-top: 1px solid rgba(212,175,55,0.08);
    overflow: hidden;
}

.contact-bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(212,175,55,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(212,175,55,0.025) 1px, transparent 1px);
    background-size: 46px 46px;
    pointer-events: none;
}

.contact-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 300px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(212,175,55,0.08) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(20px);
}

.contact-inner {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.contact-eyebrow {
    font-family: var(--font-body);
    font-size: 23px;
    letter-spacing: 1px;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 14px;
    font-weight: 900;
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 46px);
    letter-spacing: 3px;
    color: var(--cream);
    margin-bottom: 16px;
}

    .contact-title em {
        font-style: normal;
        color: var(--gold);
        text-shadow: 0 0 30px rgba(212,175,55,0.3);
    }

.contact-sub {
    font-size: 19px;
    color: rgba(240, 232, 216, 0.5);
    line-height: 1.85;
    max-width: 460px;
    margin: 0 auto 40px;
}

/* ¦¦ Kartlar ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦ */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 420px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 10px;
    text-decoration: none;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

    .contact-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(212,175,55,0.08), transparent 60%);
        opacity: 0;
        transition: opacity .3s;
    }

    .contact-card:hover {
        border-color: rgba(212,175,55,0.45);
        transform: translateY(-2px);
        box-shadow: 0 14px 30px -16px rgba(212,175,55,0.4);
    }

        .contact-card:hover::before {
            opacity: 1;
        }

.contact-card-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gold);
    position: relative;
    z-index: 1;
    transition: all .3s;
}

.contact-card:hover .contact-card-icon {
    background: var(--gold);
    color: var(--deep);
    transform: scale(1.08) rotate(-6deg);
}

.contact-card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    position: relative;
    z-index: 1;
    flex: 1;
    text-align: left;
}

.contact-card-label {
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 1px;
    color: rgba(240, 232, 216, 0.4);
    text-transform: uppercase;
}

.contact-card-value {
    font-size: 17px;
    color: var(--cream);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.contact-card-arrow {
    color: var(--gold);
    font-size: 16px;
    position: relative;
    z-index: 1;
    transition: transform .3s;
}

.contact-card:hover .contact-card-arrow {
    transform: translateX(4px);
}

/* ¦¦ Alt ayraç + slogan ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦ */
.contact-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 44px 0 20px;
}

    .contact-divider span:not(.contact-divider-icon) {
        flex: 1;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(212,175,55,0.25), transparent);
    }

.contact-divider-icon {
    color: var(--gold);
    font-size: 14px;
    opacity: 0.7;
}

.contact-footnote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 15px;
    color: rgba(240,232,216,0.4);
    letter-spacing: 0.5px;
}

/* ¦¦ Responsive ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦ */
@media (max-width: 600px) {
    .contact-section {
        padding: 70px 24px;
    }

    .contact-card {
        padding: 15px 18px;
    }

    .contact-card-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}
.contact-card-icon--instagram svg {
    transition: transform .3s;
}

.contact-card:hover .contact-card-icon--instagram {
    background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
    border-color: transparent;
    color: #fff; /* svg currentColor bunu kullanır */
}

    .contact-card:hover .contact-card-icon--instagram svg {
        transform: scale(1.05);
    }
.rule-card-dresscode {
    border-color: rgba(212,175,55,0.35);
    background: linear-gradient(135deg, rgba(212,175,55,0.06), rgba(212,175,55,0.01));
}

    .rule-card-dresscode .rule-icon {
        background: rgba(212,175,55,0.15);
        border-color: rgba(212,175,55,0.4);
    }

    .rule-card-dresscode .rule-body h4 {
        color: var(--gold);
    }
.detail-hero-cta {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .detail-hero-cta .btn-primary,
    .detail-hero-cta .btn-secondary,
    .detail-hero-cta .btn-sold-out {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px 32px;
        border-radius: 0px;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0.2px;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.25s ease;
    }

    /* Bilet Seç — ana aksiyon */
    .detail-hero-cta .btn-primary {
        /*background: linear-gradient(135deg, #7c3aed, #a855f7);*/
        color: #fff;
        border: none;
        box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
    }

        .detail-hero-cta .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(124, 58, 237, 0.45);
            filter: brightness(1.05);
        }

        .detail-hero-cta .btn-primary:active {
            transform: translateY(0);
        }

    /* Paylaş — glassmorphism ikincil buton */
    .detail-hero-cta .btn-secondary {
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(8px);
    }

        .detail-hero-cta .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.16);
            border-color: rgba(255, 255, 255, 0.45);
            transform: translateY(-2px);
        }

        .detail-hero-cta .btn-secondary svg {
            flex-shrink: 0;
        }

    /* Tükendi */
    .detail-hero-cta .btn-sold-out {
        background: rgba(120, 120, 130, 0.25);
        color: rgba(255, 255, 255, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.1);
        cursor: not-allowed;
    }