/* ======================================
   Reset & Base Styles
   ====================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Gotham Book', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ======================================
   Header Styles
   ====================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
}


.header-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 20px 100px;
    z-index: 2;
}

.logo {
    flex-shrink: 0;
    margin-right: 60px;
}

.logo img {
    height: 140px;
    width: auto;
}

/* Navigation Menu */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 0 40px;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 40px;
}

.main-nav a {
    font-size: 12.11pt;
    letter-spacing: 0.5px;
    color: #fff;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.main-nav a:hover {
    color: #b39064;
}

/* Spotify Section */
.spotify-section {
    display: none !important;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    position: fixed;
    top: 10px;
    right: 0;
    z-index: 999;
    margin-right: 0;
    padding: 10px 15px;
}

.spotify-text {
    font-size: 10pt;
    color: #fff;
    letter-spacing: 0.5px;
}

.spotify-link img {
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.spotify-link img:hover {
    transform: scale(1.1);
}

/* Laptop optimizations (1024px - 1440px) */
@media (min-width: 993px) and (max-width: 1440px) {
    /* Header Adjustments */
    .logo img {
        height: 90px;
    }

    .header-wrapper {
        padding: 15px 0 15px 60px;
    }

    .main-nav a {
        font-size: 10pt;
    }

    .main-nav ul {
        gap: 30px;
    }

    /* Spotify Section - Move Higher */
    .spotify-section {
        top: 20px;
        padding: 8px 12px;
    }

    .spotify-text {
        font-size: 9pt;
    }

    .spotify-link img {
        width: 26px;
        height: 26px;
    }

    .spotify-playlist {
        top: 65px;
        width: 320px;
        padding: 18px;
    }

    .spotify-playlist h3 {
        font-size: 14px;
    }

    .track-name {
        font-size: 12px;
    }
}

/* Spotify Playlist Modal - MINIMAL SIMPLE DESIGN */
.spotify-playlist {
    position: fixed;
    top: 60px;
    right: 10px;
    width: 200px;
    background: rgba(0, 0, 0, 0.92);
    border: 1px solid #b39064;
    border-radius: 6px;
    padding: 12px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.25s ease;
}

.spotify-playlist.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.audio-controls {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 8px;
}

.control-btn {
    background: rgba(179, 144, 100, 0.1);
    border: 1px solid #b39064;
    color: #b39064;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: #b39064;
    color: #000;
}

.play-pause-btn {
    width: 32px;
    height: 32px;
    font-size: 11px;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
}

.volume-control i {
    font-size: 11px;
    color: #b39064;
}

#volumeSlider {
    flex: 1;
    height: 2px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(179, 144, 100, 0.25);
    outline: none;
    border-radius: 1px;
}

#volumeSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 8px;
    height: 8px;
    background: #b39064;
    cursor: pointer;
    border-radius: 50%;
}

#volumeSlider::-moz-range-thumb {
    width: 8px;
    height: 8px;
    background: #b39064;
    cursor: pointer;
    border-radius: 50%;
    border: none;
}

/* ======================================
   Sticky Info Form
   ====================================== */
.info-form-sticky {
    position: fixed;
    right: 0;
    top: 160px;
    z-index: 100000;
}

.info-form-text {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    text-orientation: mixed;
    font-size: 13px;
    letter-spacing: 3px;
    color: #fff;
    background: linear-gradient(to bottom, #d4b896, #b39064, #8b6f47);
    padding: 30px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    font-family: 'Futura PT Book', sans-serif;
}

.info-form-text:hover {
    background: linear-gradient(to bottom, #e0c4a8, #c09b75, #9a7d58);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.info-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100001;
}

.info-form-overlay.active {
    opacity: 1;
    visibility: visible;
}

.info-form-panel {
    position: fixed;
    right: -450px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    max-height: 90vh;
    background: #fff;
    color: #000;
    padding: 40px 30px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100002;
}

.info-form-panel.active {
    right: 0;
}

.close-form {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: #000;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
}

.info-form-panel h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #000;
    text-align: center;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    color: #000;
    font-family: 'Gotham Book', sans-serif;
    font-size: 13px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b39064;
}

.kvkk-group {
    font-size: 11px;
    margin-bottom: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 2px;
    flex-shrink: 0;
}

.checkbox-label span {
    color: #1a1a1a;
    line-height: 1.4;
}

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

.submit-btn {
    width: 100%;
    padding: 14px;
    background: #b39064;
    color: #fff;
    border: none;
    font-family: 'Gotham Book', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #8a6e4d;
}

/* ======================================
   Hero Slider Section
   ====================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    margin-top: 0;
}

.slider-container {
    width: 100%;
    height: 100%;
}

.slider-item {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    touch-action: none;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    width: 80px;
    height: 80px;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0.85;
}

.play-button img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

/* ======================================
   Serit Divider
   ====================================== */
.serit-divider {
    width: 100%;
    height: auto;
}

.serit-divider img {
    width: 100%;
    height: auto;
    display: block;
}

/* ======================================
   Video Modal
   ====================================== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.video-modal.active {
    display: block;
    opacity: 1;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.video-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16/9;
    background: #000;
    border: 2px solid #b39064;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 48px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    color: #b39064;
    transform: rotate(90deg);
}

.video-embed {
    width: 100%;
    height: 100%;
}

.video-embed iframe {
    width: 100%;
    height: 100%;
}

/* ======================================
   KVKK Modal
   ====================================== */
.kvkk-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100003;
    display: none;
    align-items: center;
    justify-content: center;
}

.kvkk-modal.active {
    display: flex;
}

.kvkk-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.kvkk-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
}

.kvkk-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    color: #333;
    font-size: 32px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.kvkk-modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.kvkk-modal-body {
    padding: 60px 50px;
    overflow-y: auto;
    max-height: 90vh;
}

.kvkk-modal-body h2 {
    font-size: 24pt;
    font-family: 'Futura PT Book', sans-serif;
    color: #b39064;
    margin-bottom: 30px;
}

.kvkk-modal-body h3 {
    font-size: 16pt;
    font-family: 'Futura PT Book', sans-serif;
    color: #333;
    margin: 30px 0 15px;
}

.kvkk-modal-body p {
    font-size: 12pt;
    font-family: 'Futura PT Book', sans-serif;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.kvkk-modal-body ul {
    margin: 15px 0;
    padding-left: 25px;
}

.kvkk-modal-body li {
    font-size: 12pt;
    font-family: 'Futura PT Book', sans-serif;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.kvkk-link {
    color: #b39064;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
}

.kvkk-link:hover {
    color: #d4b896;
}

/* ======================================
   Main Content
   ====================================== */
.main-content {
    position: relative;
}

/* ======================================
   Mobile Menu Toggle
   ====================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #b39064;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* ======================================
   Responsive Design
   ====================================== */
@media (max-width: 1200px) {
    .main-nav ul {
        gap: 25px;
    }

    .main-nav a {
        font-size: 11pt;
    }
}

@media (max-width: 992px) {
    /* Header - Not Sticky */
    .main-header {
        position: absolute !important;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-wrapper {
        padding: 15px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        order: 1;
        margin-right: 0;
    }

    .spotify-section {
        order: 2;
        position: static;
        display: none !important;
        padding: 0;
        margin: 0 auto;
    }

    .spotify-text {
        display: none;
    }

    .spotify-link img {
        width: 24px;
        height: 24px;
    }

    .mobile-menu-toggle {
        order: 3;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        padding: 120px 40px 40px;
        transition: right 0.4s ease;
        z-index: 1000;
        overflow-y: auto;
        flex: none;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .main-nav a {
        font-size: 16pt;
        color: #fff;
    }

    .info-form-sticky {
        display: none;
    }

    .logo img {
        height: 80px !important;
    }

    /* Hero Video - Full Width Mobile */
    .hero-slider {
        width: 100vw !important;
        max-width: 100vw !important;
        height: 100vh;
        overflow: hidden;
    }

    .slider-container,
    .slider-item {
        width: 100%;
        max-width: 100%;
    }

    .hero-video {
        width: 100% !important;
        max-width: 100% !important;
        height: 100vh;
        object-fit: cover;
    }

    /* Prevent horizontal overflow */
    body, html {
        overflow-x: hidden !important;
        max-width: 100vw;
    }

    .gallery-prev {
        left: 10px;
    }

    .gallery-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    /* Hero Video - Auto Height, Full Display */
    .hero-slider {
        height: auto !important;
        min-height: auto !important;
    }

    .slider-container,
    .slider-item {
        position: relative;
        touch-action: pan-y;
        height: auto !important;
        width: 100%;
    }

    .hero-video {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        display: block;
    }

    /* Serit Divider - Fix Width */
    .serit-divider {
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
    }

    .serit-divider img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .info-form-panel {
        width: 100%;
        right: -100%;
    }

    .play-button img {
        width: 70px;
        height: 70px;
    }
}

/* ======================================
@media (max-width: 992px) {
    .sidebar-nav {
        display: none !important;
    }
}

}
/* Scroll Hamburger Menu Button - Compact Elegant Design (Desktop only) */
.scroll-hamburger-toggle {
    display: none; /* Hidden by default */
    position: fixed;
    left: 20px;
    top: 20px;
    z-index: 1001;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    width: 44px;
    height: 36px;
    cursor: pointer;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

.scroll-hamburger-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #000000;
    transition: all 0.3s ease;
    border-radius: 0;
}

.scroll-hamburger-toggle:hover {
    border-color: #b39064;
    box-shadow: 0 4px 16px rgba(22, 166, 161, 0.2);
    transform: translateY(0);
}

.scroll-hamburger-toggle:hover span {
    background: #b39064;
}

.scroll-hamburger-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
    background: #b39064;
}

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

.scroll-hamburger-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
    background: #b39064;
}

/* Show hamburger when scrolled (Desktop only) */
.scroll-hamburger-toggle.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Desktop only - show on scroll */
@media (min-width: 993px) {
    .scroll-hamburger-toggle {
        display: flex;
    }
}

/* Sidebar Navigation Menu */
.sidebar-nav {
    position: fixed;
    top: 0;
    left: -350px;
    width: 350px;
    height: 100vh;
    z-index: 10000;
    transition: left 0.3s ease;
}

.sidebar-nav.active {
    left: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.sidebar-nav.active .sidebar-overlay {
    opacity: 1;
    pointer-events: auto;
}

.sidebar-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: #ffffff;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    padding: 80px 40px 40px;
    overflow-y: auto;
}

.sidebar-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 36px;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.sidebar-close:hover {
    color: #b39064;
    transform: rotate(90deg);
}

.sidebar-nav nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav nav ul li {
    margin-bottom: 10px;
}

.sidebar-nav nav ul li a {
    display: block;
    padding: 15px 20px;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    letter-spacing: 1px;
}

.sidebar-nav nav ul li a:hover {
    background: rgba(179, 144, 100, 0.1);
    color: #b39064;
    border-left-color: #b39064;
    padding-left: 25px;
}

/* Hide sidebar on mobile - use existing mobile menu instead */
@media (max-width: 992px) {
    .sidebar-nav {
        display: none;
    }

    .scroll-hamburger-toggle {
        display: none !important;
    }
}

/* Spotify Section - Lower z-index than modal */
.spotify-section {
    z-index: 800 !important;
}

.spotify-text {
    color: #111111 !important;
}

.spotify-playlist {
    z-index: 10000 !important;
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
}

.spotify-playlist h3 {
    color: #b39064 !important;
    border-bottom: 2px solid #b39064 !important;
}

.playlist-item {
    color: #333333 !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

/* ======================================
   HEADER - Transparent (No Background) - JOVEN OVERRIDE
   ====================================== */
.main-header {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.menu-bg {
    display: none !important;
}

.menu-bg img {
    display: none !important;
}

/* Hide header when scrolled (Desktop only) */
@media (min-width: 993px) {
    .main-header.scrolled {
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
}

/* Header Wrapper - Container Aligned */
.header-wrapper {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 20px 40px !important;
}

/* Logo - Smaller Size */
.logo img {
    height: 100px !important;
}

/* ======================================
   FONTS - FUTURA PT (JOVEN)
   ====================================== */
body {
    font-family: 'Futura PT Book', sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Futura PT Book', sans-serif !important;
}

.main-nav a {
    font-family: 'Futura PT Book', sans-serif !important;
}

.genc-holding-content h2,
.genc-holding-content p {
    font-family: 'Futura PT Book', sans-serif !important;
}

.joven41-content h2,
.joven41-content p {
    font-family: 'Futura PT Book', sans-serif !important;
}

.team-section h2,
.team-leader h3,
.team-member h3,
.team-member p {
    font-family: 'Futura PT Book', sans-serif !important;
}

.footer-info-intro,
.footer-info-phone,
.footer-info-email,
.footer-info-hours,
.footer-info-checkboxes,
.footer-info-address {
    font-family: 'Futura PT Book', sans-serif !important;
}

input, textarea, button {
    font-family: 'Futura PT Book', sans-serif !important;
}
