/* ===============================================
   ONYX NIGHTCLUB - MAIN STYLESHEET
   =============================================== */

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

:root {
    --black: #000000;
    --white: #ffffff;
    --purple: #8d06f6;
    --purple-hover: #7a05dd;
    --dark-card: #1a1a1a;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    background-color: var(--black);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===============================================
   HEADER
   =============================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: transparent !important;
    z-index: 1000;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

/* Header Vignette Effect */
.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    pointer-events: none;
    z-index: -1;
}

.header.white-bg {
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* Default: White text and hamburger for black background */
.header .nav-links a {
    color: #ffffff;
}

.header .hamburger span {
    background-color: #ffffff;
}

/* When over white section: Black text and hamburger */
.header.over-white .nav-links a {
    color: #000000;
}

.header.over-white .nav-links a:hover {
    color: var(--purple);
}

.header.over-white .hamburger span {
    background-color: #000000;
}

.logo {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--purple);
}

.nav-links a::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.social-links {
    display: none;
}

/* ===============================================
   HERO SECTION
   =============================================== */

.hero {
    height: 100vh;
    background-color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Video Container */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

/* Video Styling */
.hero-video {
    /* Video autoplay optimization */
    pointer-events: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    transition: transform 0.1s ease-out;
}

/* Dark overlay for text readability */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 2;
}

/* Optional: Purple glow overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(141, 6, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(141, 6, 246, 0.1) 0%, transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite;
    z-index: 3;
    pointer-events: none;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    z-index: 10;
    animation: fadeInUp 1.2s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: 8px;
    color: var(--white);
    text-align: center;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-transform: uppercase;
}

.hero-title-line1 {
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 6px;
}

.hero-logo-image {
    /* Logo boyutu - aspect ratio korunur */
    width: auto;
    max-height: 150px;
    height: auto;
    margin-top: 1rem;
    animation: fadeInUp 1.2s ease-out 0.3s backwards;
}

.hero-title-line2 {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 12px;
}

/* ===============================================
   SCROLL GALLERY SECTION
   =============================================== */

.scroll-gallery-section {
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0) 0%, 
        rgba(0, 0, 0, 0.3) 15%,
        rgba(0, 0, 0, 0.6) 30%,
        rgba(0, 0, 0, 0.9) 45%,
        rgb(0, 0, 0) 60%
    );
    padding: 2rem 0 8rem 0;
    overflow: hidden;
    position: relative;
}

.scroll-gallery-track {
    display: flex;
    gap: -50px;
    position: relative;
    will-change: transform;
    padding: 0 10%;
}

.scroll-gallery-item {
    flex-shrink: 0;
    width: 350px;  /* 3:4 aspect ratio (dikey) - büyütüldü: 300→350 */
    height: 467px; /* 350:467 ≈ 3:4 */
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease-out;
    margin-left: -100px; /* Overlap artırıldı: -80→-100 */
}

.scroll-gallery-item:first-child {
    margin-left: 0;
}

.scroll-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    image-rendering: high-quality;
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    pointer-events: none;
}

/* ===============================================
   EVENTS SECTION
   =============================================== */

.events-section {
    background-color: var(--white);
    color: var(--black);
    padding: 3rem 5% 6rem 5%;
}

.section-title {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: 2px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 eşit sütun */
    grid-template-rows: repeat(2, 1fr); /* 2 eşit satır */
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

/* Homepage: All 4 events equal size in 2x2 grid */
.events-grid .event-card:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.events-grid .event-card:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.events-grid .event-card:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.events-grid .event-card:nth-child(4) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}


.event-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.event-image {
    width: 100%;
    aspect-ratio: 16 / 9;  /* Landscape format - 1080x600 */
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.6s ease;
    image-rendering: high-quality;
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    transform: translateZ(0);
}

.event-image:hover img {
    transform: scale(1.05);
}

.event-info {
    padding: 1rem;
    color: var(--black);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.event-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 0.1rem;
    justify-content: center;
}

.event-date {
    font-size: 0.7rem;
    color: #666;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.event-title {
    font-size: 1.4rem;
    color: var(--black);
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin: 0.2rem 0;
    font-weight: 700;
}

.event-description {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.3;
    margin: 0.2rem 0 0 0;
    font-weight: 500;
}

.event-description-2 {
    font-size: 0.8rem;
    color: #999;
    line-height: 1.4;
    margin: 0.2rem 0 0 0;
    font-style: italic;
}

.event-buttons {
    display: flex;
    flex-direction: row;
    gap: 0;
    margin: 0;
    align-items: center;
}

.btn {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-transform: uppercase;
    width: auto;
}

.btn-tickets {
    background-color: var(--purple);
    color: var(--white);
}

.btn-tickets:hover {
    background-color: var(--purple-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(141, 6, 246, 0.4);
}

.btn-table {
    background-color: var(--purple);
    color: var(--white);
}

.btn-table:hover {
    background-color: var(--purple-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(141, 6, 246, 0.4);
}

/* ===============================================
   CASCADING WAVE TEXT SECTION
   =============================================== */

.wave-text-section {
    background-color: var(--black);
    padding: 8rem 0 4rem 0; /* Üst padding artırıldı: 2rem → 8rem */
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.wave-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
    padding: 0 5%;
}

.wave-line {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 8vw, 120px);
    font-weight: 900;
    color: var(--purple);
    line-height: 0.85;
    letter-spacing: -0.02em;
    text-align: center;
    white-space: nowrap;
    transform-origin: center;
    will-change: transform;
}

/* Cascading wave animation - energetic club dancing */
@keyframes cascadeWave {
    0% {
        transform: translateX(0) translateY(0) skewX(0deg) rotate(0deg) scaleY(1);
    }
    5% {
        transform: translateX(15px) translateY(-25px) skewX(5deg) rotate(3deg) scaleY(1.08);
    }
    10% {
        transform: translateX(40px) translateY(-10px) skewX(10deg) rotate(5deg) scaleY(0.95);
    }
    15% {
        transform: translateX(55px) translateY(5px) skewX(8deg) rotate(4deg) scaleY(1.05);
    }
    20% {
        transform: translateX(45px) translateY(-15px) skewX(3deg) rotate(2deg) scaleY(1.1);
    }
    25% {
        transform: translateX(20px) translateY(-5px) skewX(-2deg) rotate(0deg) scaleY(0.98);
    }
    30% {
        transform: translateX(0) translateY(8px) skewX(-5deg) rotate(-2deg) scaleY(1.03);
    }
    35% {
        transform: translateX(-25px) translateY(-20px) skewX(-8deg) rotate(-4deg) scaleY(1.08);
    }
    40% {
        transform: translateX(-50px) translateY(-8px) skewX(-12deg) rotate(-5deg) scaleY(0.94);
    }
    45% {
        transform: translateX(-60px) translateY(10px) skewX(-10deg) rotate(-4deg) scaleY(1.06);
    }
    50% {
        transform: translateX(-50px) translateY(-18px) skewX(-7deg) rotate(-3deg) scaleY(1.12);
    }
    55% {
        transform: translateX(-30px) translateY(5px) skewX(-4deg) rotate(-1deg) scaleY(0.96);
    }
    60% {
        transform: translateX(-10px) translateY(-12px) skewX(2deg) rotate(1deg) scaleY(1.04);
    }
    65% {
        transform: translateX(20px) translateY(-25px) skewX(6deg) rotate(3deg) scaleY(1.09);
    }
    70% {
        transform: translateX(35px) translateY(-5px) skewX(9deg) rotate(4deg) scaleY(0.93);
    }
    75% {
        transform: translateX(30px) translateY(12px) skewX(7deg) rotate(3deg) scaleY(1.07);
    }
    80% {
        transform: translateX(10px) translateY(-8px) skewX(4deg) rotate(2deg) scaleY(1.02);
    }
    85% {
        transform: translateX(-5px) translateY(-15px) skewX(0deg) rotate(1deg) scaleY(1.05);
    }
    90% {
        transform: translateX(-15px) translateY(3px) skewX(-3deg) rotate(-1deg) scaleY(0.97);
    }
    95% {
        transform: translateX(-5px) translateY(-10px) skewX(-1deg) rotate(0deg) scaleY(1.03);
    }
    100% {
        transform: translateX(0) translateY(0) skewX(0deg) rotate(0deg) scaleY(1);
    }
}

.wave-line-1 {
    animation: cascadeWave 3.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    animation-delay: 0s;
}

.wave-line-2 {
    animation: cascadeWave 3.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    animation-delay: 0.25s;
}

.wave-line-3 {
    animation: cascadeWave 3.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    animation-delay: 0.5s;
}

/* ===============================================
   MINIMAL FOOTER
   =============================================== */

/* ===============================================
   EVENTS PAGE
   =============================================== */

.events-page-hero {
    background: linear-gradient(135deg, var(--purple) 0%, #000000 100%);
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5% 4rem 5%;
    position: relative;
}

.events-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.events-page-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.events-page-title {
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--white);
    margin: 0 0 1rem 0;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.events-page-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 300;
    letter-spacing: 2px;
}

.all-events-section {
    /* Events page - reduced padding */
    background-color: var(--white);
    color: var(--black);
    padding: 3rem 5% 6rem 5%;
    min-height: 50vh;
}

.all-events-container {
    max-width: 1600px;
    margin: 0 auto;
}

/* Events page: Override homepage grid - all events in 3 columns */
.all-events-section .events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    grid-auto-flow: row;
}

/* Reset nth-child styles from homepage */
.all-events-section .events-grid .event-card:nth-child(1),
.all-events-section .events-grid .event-card:nth-child(2),
.all-events-section .events-grid .event-card:nth-child(3),
.all-events-section .events-grid .event-card:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
}

/* ===============================================
   MINIMAL FOOTER
   =============================================== */

.footer-minimal {
    background-color: var(--black);
    padding: 5rem 5% 3rem 5%;
}

.footer-minimal-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-social-icons {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-social-icons a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icons a:hover {
    color: var(--purple);
    transform: translateY(-3px);
}

.footer-copyright {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
    font-weight: 400;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

.footer-logo-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    text-align: center;
}

.footer-logo-bottom img {
    height: 50px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo-bottom img:hover {
    opacity: 1;
}

/* ===============================================
   RESPONSIVE DESIGN - MOBILE
   =============================================== */

@media (max-width: 968px) {
    .header {
        position: fixed;
        justify-content: center;
        padding: 1rem 5%;
        background-color: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

    /* Mobilde de vignette efekti - üstten siyah, alta doğru şeffaf */
    .header::before {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    }

    .header.white-bg {
        background-color: transparent !important;
    }

    /* Mobilde de aynı renk sistemi */
    .header .hamburger span {
        background-color: #ffffff;
    }

    .header.over-white .hamburger span {
        background-color: #000000;
    }

    .header .nav-links a {
        color: #ffffff;
    }

    .header.over-white .nav-links a {
        color: #000000;
    }

    .hamburger {
        display: flex;
        position: absolute;
        left: 5%;
        top: 50%;
        transform: translateY(-50%);
    }

    .logo {
        height: 35px;
    }

    .hero {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }

    /* Mobile: Video full screen and centered */
    .hero-video {
    /* Video autoplay optimization */
    pointer-events: auto;
        object-fit: cover;
        min-width: 100%;
        min-height: 100%;
        width: 100vw;
        height: 100vh;
    }

    /* Optional: Hide video on very small screens to save bandwidth */
    @media (max-width: 480px) {
        .hero-video {
    /* Video autoplay optimization */
    pointer-events: auto;
            display: block; /* Video göster */
            object-fit: cover;
            width: 100%;
            height: 100%;
        }
        .hero-video-container {
            width: 100%;
            height: 100%;
        }
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title-line1 {
        font-size: 1.8rem;
        letter-spacing: 4px;
    }

    .hero-title-line2 {
        font-size: 3rem;
        letter-spacing: 8px;
    }

    .hero-logo-image {
    /* Logo boyutu - aspect ratio korunur */
        max-height: 100px;
        height: auto;
    }

    .nav-links {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 0;
        max-height: 0;
        background: rgba(141, 6, 246, 0.98); /* Düz mor, gradient yok */
        flex-direction: column;
        padding: 0;
        transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        border-top: 2px solid var(--purple);
        align-items: center;
        overflow: hidden;
        z-index: 998;
        gap: 0;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        transform: translateY(100%);
        box-shadow: 0 -10px 50px rgba(141, 6, 246, 0.3);
    }

    .nav-links.active {
        height: auto;
        max-height: 80vh;
        padding: 3rem 2rem 4rem 2rem;
        overflow-y: auto;
        transform: translateY(0);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 0;
        opacity: 0;
        transform: translateX(-50px);
        transition: all 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }

    .nav-links li a {
        display: block;
        padding: 1.2rem 2rem;
        font-size: 1.3rem;
        font-weight: 700;
        letter-spacing: 2px;
        color: var(--white) !important; /* Beyaz, override */
        text-transform: uppercase;
        background: rgba(0, 0, 0, 0.3);
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 0; /* Sivri köşeler */
        margin: 0.8rem 0;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .nav-links li a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .nav-links li a:hover::before,
    .nav-links li a:active::before {
        left: 100%;
    }

    .nav-links li a:hover,
    .nav-links li a:active {
        background: rgba(141, 6, 246, 0.5);
        border-color: var(--purple);
        transform: scale(1.05);
        box-shadow: 0 5px 20px rgba(141, 6, 246, 0.5);
    }

    .nav-links {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .social-links {
        display: flex;
        gap: 2rem;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        width: 100%;
        justify-content: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .nav-links.active .social-links {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.5s;
    }

    .social-links a {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        color: var(--white);
        text-decoration: none;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
    }

    .social-links a svg {
        width: 28px; /* Biraz daha büyük */
        height: 28px;
        padding: 0; /* Padding kaldırıldı */
        background: none; /* Arkaplan kaldırıldı */
        border-radius: 0; /* Yuvarlak çerçeve kaldırıldı */
        transition: all 0.3s ease;
        fill: white; /* SVG fill beyaz */
    }

    .social-links a:hover svg,
    .social-links a:active svg {
        background: none; /* Hover'da da arkaplan yok */
        transform: scale(1.3) rotate(360deg); /* Daha büyük scale */
        fill: white; /* Hover'da da beyaz */
    }

    .hero-logo {
        max-width: 300px;
        width: 70%;
    }

    .hero-tagline {
        font-size: 0.9rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0;
    }

    .event-card {
        width: 100%;
        margin: 0;
    }

    .event-image {
        width: 100%;
        margin: 0;
    }

    /* Mobile: Disable hover zoom effect */
    .event-image:hover img {
        transform: none;
    }

    /* Mobile: Images are always colored (no grayscale) */
    .event-image img {
        filter: none;
        -webkit-filter: none;
        image-rendering: high-quality;
        image-rendering: -webkit-optimize-contrast;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        transform: translateZ(0);
    }

    /* When touched, show color */
    .section-title {
        font-size: 3rem;
    }

    .event-date {
        font-size: 0.75rem;
    }

    .event-description {
        font-size: 0.8rem;
    }

    /* Scroll Gallery Mobile */
    .scroll-gallery-section {
        padding: 1rem 0 10rem 0;
        background: linear-gradient(to bottom, 
            rgba(0, 0, 0, 0) 0%, 
            rgba(0, 0, 0, 0.3) 15%,
            rgba(0, 0, 0, 0.6) 30%,
            rgba(0, 0, 0, 0.9) 45%,
            rgb(0, 0, 0) 60%
        );
    }

    .scroll-gallery-item {
        width: 210px;  /* 3:4 aspect ratio (dikey) */
        height: 280px; /* 210:280 = 3:4 */
        margin-left: -60px;
    }

    /* Wave Text Mobile */
    .wave-text-section {
        padding: 4rem 0 3rem 0; /* Küçültüldü: 8rem → 4rem, 4rem → 3rem */
        min-height: 300px;
    }

    .wave-line {
        font-size: clamp(60px, 15vw, 100px);
        letter-spacing: -0.01em;
    }

    /* Minimal Footer Mobile */
    .footer-minimal {
        padding: 3rem 5% 2rem 5%;
    }

    .footer-minimal-container {
        gap: 1.5rem;
    }

    .footer-social-icons {
        gap: 1.5rem;
    }

    .footer-social-icons a svg {
        width: 28px;
        height: 28px;
    }

    .footer-links {
        font-size: 0.85rem;
        gap: 0.8rem;
    }

    .footer-logo-bottom img {
        height: 40px;
    }

    /* Distorted Text Mobile */
    .distorted-text-section {
        padding: 4rem 0;
        min-height: 250px;
    }

    .distorted-text-svg {
        height: 200px;
    }

    .distorted-text {
        font-size: 60px;
        letter-spacing: 4px;
    }

    .gallery-arrow-mobile:active {
        color: var(--purple);
        transform: scale(1.2);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 3rem;
        letter-spacing: 4px;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}/* ===============================================
/* ===============================================
   RESERVATION PAGE - MINIMAL DESIGN
   =============================================== */

.reservation-hero {
    background-color: var(--white);
    padding: 8rem 5% 3rem 5%;
    text-align: center;
}

.reservation-section {
    background-color: var(--white);
    padding: 2rem 5% 6rem 5%;
}

.reservation-container {
    max-width: 800px;
    margin: 0 auto;
}

.reservation-form {
    background: var(--white);
}

.form-section {
    margin-bottom: 3rem;
}

.form-section-title {
    font-size: 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    color: var(--black);
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    background: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple);
}

.form-group textarea {
    resize: vertical;
}

.form-checkbox {
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--purple);
}

.form-checkbox label {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    cursor: pointer;
}

.privacy-link {
    color: var(--purple);
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem 2rem;
    background: var(--purple);
    color: var(--white);
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--purple-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(141, 6, 246, 0.3);
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: #999;
    margin-top: 1.5rem;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .reservation-hero {
        padding: 6rem 5% 2rem 5%;
    }

    .reservation-section {
        padding: 1rem 5% 4rem 5%;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-section-title {
        font-size: 1.3rem;
    }

    .btn-submit {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ===============================================
.kontakt-hero {
    background-color: var(--white);
    padding: 8rem 5% 3rem 5%;
    text-align: center;
}

.kontakt-section {
    background-color: var(--white);
    padding: 2rem 5% 6rem 5%;
}

.kontakt-container {
    max-width: 900px;
    margin: 0 auto;
}

.kontakt-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.kontakt-info-card {
    text-align: center;
    padding: 2rem 1rem;
}

.kontakt-info-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: var(--black);
    margin: 0 0 1rem 0;
    text-transform: uppercase;
}

.kontakt-info-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.kontakt-info-card a {
    color: var(--purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

.kontakt-info-card a:hover {
    color: var(--purple-hover);
    text-decoration: underline;
}

.kontakt-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.kontakt-form {
    background: var(--white);
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .kontakt-hero {
        padding: 6rem 5% 2rem 5%;
    }

    .kontakt-section {
        padding: 1rem 5% 4rem 5%;
    }

    .kontakt-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .kontakt-info-card {
        padding: 1.5rem 1rem;
    }
}

/* ===============================================
   IMPRESSUM PAGE
   =============================================== */

.impressum-section {
    background-color: var(--white);
    padding: 4rem 5% 6rem 5%;
}

.impressum-container {
    max-width: 900px;
    margin: 0 auto;
}

.impressum-content {
    line-height: 1.8;
}

.impressum-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--black);
    margin: 2.5rem 0 1rem 0;
    text-transform: uppercase;
}

.impressum-content h2:first-child {
    margin-top: 0;
}

.impressum-content p {
    font-size: 1rem;
    color: #333;
    margin: 0 0 1rem 0;
    line-height: 1.8;
}

.impressum-content a {
    color: var(--purple);
    text-decoration: none;
}

.impressum-content a:hover {
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 968px) {
    .impressum-section {
        padding: 2rem 5% 4rem 5%;
    }

    .impressum-content h2 {
        font-size: 1.5rem;
        margin: 2rem 0 0.8rem 0;
    }
}

.impressum-content ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.impressum-content ul li {
    margin: 0.5rem 0;
}

.impressum-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    margin: 1.5rem 0 0.8rem 0;
}

/* Event Card - 2. Açıklama */
.event-description-2 {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.5;
    margin: 0.5rem 0 0 0;
    font-style: italic;
}

@media (max-width: 968px) {
    .event-description-2 {
        font-size: 0.8rem;
    }
}

/* ===============================================
   WHATSAPP FLOATING BUTTON (MOBILE ONLY)
   =============================================== */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 80px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* Desktop'ta gizle */
@media (min-width: 969px) {
    .whatsapp-float {
        display: none;
    }
}

/* Mobil */
@media (max-width: 968px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 70px;
        right: 15px;
        font-size: 28px;
    }
    
    .whatsapp-float svg {
        width: 32px;
        height: 32px;
    }
}

/* Mobile - Normal tek sütun layout */
@media (max-width: 968px) {
    .events-grid,
    .all-events-section .events-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: 2rem !important;
    }
    
    /* Mobil'de tüm event'ler normal grid'de */
    .events-grid .event-card:nth-child(1),
    .events-grid .event-card:nth-child(2),
    .events-grid .event-card:nth-child(3),
    .events-grid .event-card:nth-child(4) {
        grid-column: 1 / 2 !important;
        grid-row: auto !important;
    }
    
    .event-info {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 0.75rem !important;
    }
    
    .event-text-content {
        flex: 1;
        text-align: left !important;
    }
    
    .event-buttons {
        flex-shrink: 0;
        justify-content: flex-end;
    }
    
    /* Mobile'de TÜM event card'lar aynı boyut */
    .events-grid .event-card .event-title {
        font-size: 1.25rem !important;
    }
    
    .events-grid .event-card .event-date {
        font-size: 0.7rem !important;
    }
    
    .events-grid .event-card .event-description {
        font-size: 0.85rem !important;
    }
    
    .events-grid .event-card .event-info {
        padding: 1rem !important;
    }
    
    .events-grid .event-card .btn {
        padding: 0.6rem 1.5rem !important;
        font-size: 0.85rem !important;
    }
    
    /* Events page mobil - aynı stil */
    .all-events-section .events-grid .event-card .event-title {
        font-size: 1.25rem !important;
    }
    
    .all-events-section .events-grid .event-card .event-date {
        font-size: 0.7rem !important;
    }
    
    .all-events-section .events-grid .event-card .event-description {
        font-size: 0.85rem !important;
    }
    
    .all-events-section .events-grid .event-card .event-info {
        padding: 1rem !important;
    }
    
    .all-events-section .events-grid .event-card .btn {
        padding: 0.6rem 1.5rem !important;
        font-size: 0.85rem !important;
    }
}



/* ===============================================
   EVENTS PAGE - SPECIAL LAYOUT
   =============================================== */

/* Events page: 1. satır özel (ana sayfa gibi), 2. satırdan itibaren 3 eşit sütun */
.all-events-section .events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 2rem;
}

/* İlk event - Sol tarafta 2 satır */
/* Events page: All cards equal - no special sizing */
.all-events-section .event-card .event-title,
.all-events-section .event-card .event-date,
.all-events-section .event-card .event-description {
    /* Use default sizes from .event-card */
}

/* Mobil - Events page */
@media (max-width: 968px) {
    .all-events-section .events-grid {
        grid-template-columns: 1fr !important;
    }
    
    .all-events-section .events-grid .event-card {
        grid-column: 1 / 2 !important;
        grid-row: auto !important;
    }
    
    .all-events-section .events-grid-remaining {
        grid-template-columns: 1fr !important;
    }
    
    .all-events-section .events-grid .event-card .event-title {
        font-size: 1.25rem !important;
    }
}

/* ===============================================
   RESERVATION INFO BOX
   =============================================== */
.reservation-info-box {
    background: linear-gradient(135deg, #f5f0ff 0%, #fff5f8 100%);
    border-left: 4px solid #8d06f6;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.reservation-info-box h3 {
    color: #8d06f6;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.reservation-info-box ul {
    list-style: none;
    padding: 0;
}

.reservation-info-box li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}

.reservation-info-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8d06f6;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Form Select Styles */
.kontakt-form select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    background-color: white;
    cursor: pointer;
    transition: var(--transition);
}

.kontakt-form select:focus {
    outline: none;
    border-color: #8d06f6;
}

.kontakt-form select option {
    padding: 0.5rem;
}

/* Date Input Styles */
.kontakt-form input[type="date"],
.kontakt-form input[type="time"] {
    cursor: pointer;
}

/* Checkbox Label */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: #8d06f6;
}

.checkbox-label span {
    flex: 1;
    line-height: 1.6;
}

.checkbox-label a {
    color: #8d06f6;
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: #6d04d4;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .reservation-info-box {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .reservation-info-box h3 {
        font-size: 1.25rem;
    }
    
    .reservation-info-box li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
        padding-left: 1.25rem;
    }
}

/* ===============================================
   RESERVIERUNG PAGE - ADDITIONAL STYLES
   =============================================== */

.kontakt-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.kontakt-intro h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 2px;
    color: var(--black);
    margin-bottom: 1rem;
}

.kontakt-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.kontakt-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.kontakt-info-card {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #8d06f6;
}

.kontakt-info-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1.5px;
    color: #8d06f6;
    margin: 0 0 0.75rem 0;
}

.kontakt-info-card p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.kontakt-form-container {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2.5rem;
}

.kontakt-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.kontakt-form .form-group {
    display: flex;
    flex-direction: column;
}

.kontakt-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.kontakt-form input,
.kontakt-form select,
.kontakt-form textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
}

.kontakt-form input:focus,
.kontakt-form select:focus,
.kontakt-form textarea:focus {
    outline: none;
    border-color: #8d06f6;
}

.kontakt-form textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #8d06f6 0%, #b942ff 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(141, 6, 246, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .kontakt-intro h2 {
        font-size: 2rem;
    }
    
    .kontakt-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .kontakt-form-container {
        padding: 1.5rem;
    }
    
    .kontakt-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .submit-btn {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
}

/* ============================================= */
/* MOBILE FORM IMPROVEMENTS - DATE/TIME INPUTS */
/* ============================================= */

/* Date and Time inputs - better mobile display */
.form-group input[type="date"],
.form-group input[type="time"],
.form-group select {
    border-radius: 6px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Mobile specific improvements */
@media (max-width: 768px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.8rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-group input[type="date"],
    .form-group input[type="time"] {
        min-width: 0; /* Prevents overflow */
        max-width: 100%;
    }
    
    .form-row {
        gap: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
        width: 100%;
    }
    
    /* Kontakt container padding */
    .kontakt-container {
        padding: 1rem;
    }
    
    /* Form wrapper padding */
    .kontakt-form-wrapper {
        padding: 1.5rem !important;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 16px;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
}

/* ============================================= */
/* KONTAKT/RESERVATION FORM MOBILE FIX */
/* ============================================= */

@media (max-width: 968px) {
    .kontakt-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .kontakt-form-wrapper {
        padding: 1.5rem !important;
        border: 1px solid #e0e0e0 !important;
    }
}

@media (max-width: 600px) {
    .kontakt-container {
        padding: 0.5rem !important;
    }
    
    .events-section {
        padding: 1rem !important;
    }
    
    .kontakt-form-wrapper {
        padding: 1rem !important;
    }
    
    /* Submit button mobile */
    .btn-submit {
        width: 100%;
        padding: 1rem !important;
    }
}