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

:root {
    --primary-color: #ffffff;
    --secondary-color: #e0e0e0;
    --accent-color: #8b8b8b;
    --dark-bg: #000000;
    --dark-surface: #0a0a0a;
    --dark-card: #111111;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --border-color: #222222;
    --success-color: #4caf50;
    --error-color: #f44336;
    /* Set general site font to header's font */
    --font-family: 'Cinzel', serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    --font-heading-primary: 'Cinzel', serif;
    --font-heading-alt: 'Playfair Display', serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: transparent;
    color: var(--text-primary);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--dark-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--dark-surface);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-full {
    width: 100%;
}

/* Sade & sanatsal hero butonu */
.hero .btn-primary {
    font-family: var(--font-heading-primary);
    background: transparent;
    color: var(--text-primary);
    padding: 0.85rem 2.4rem;
    border: 2px solid var(--accent-color);
    border-radius: 999px;
    letter-spacing: .12em;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: color .4s ease, border-color .4s ease;
}

.hero .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.15), rgba(255,255,255,0) 60%);
    opacity: 0;
    transition: opacity .4s ease;
    pointer-events: none;
}

.hero .btn-primary:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.hero .btn-primary:hover::before {
    opacity: 1;
}

.hero .btn-primary:active {
    transform: translateY(2px);
}

@media (max-width: 600px) {
    .hero .btn-primary {
        padding: 0.75rem 1.9rem;
        font-size: .85rem;
        letter-spacing: .1em;
    }
}

/* Sabit Anasayfaya Dön Butonu */
.back-to-home-btn {
    position: fixed;
    right: 32px;
    bottom: 32px;
    z-index: 9999;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    background: var(--dark-card);
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: 32px;
    font-size: 1rem;
    cursor: pointer;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border-bottom: none !important;    box-shadow: none !important;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: none
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav {
    margin-left: 3.5rem;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
}

.logo a {
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.logo-svg:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
}

.logo a {
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-shrink: 0;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 0;
    position: relative;
    transition: var(--transition);
    font-family: var(--font-heading-primary);
    letter-spacing: .5px;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
/* Dinamik viewport desteği ile mobilde tam ekran yükseklik */
@supports (height: 100dvh) {
    .hero { min-height: 100dvh; }
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    filter: brightness(0.85);
    background: #000;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Blog */
.blog-page {
    background: var(--dark-bg);
}

.blog-main {
    padding-top: 120px;
    min-height: calc(100vh - 180px);
}

.blog-hero {
    padding-top: 2rem;
    padding-bottom: 1rem;
}

.blog-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
}

.blog-listing-section {
    padding-top: 1rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.blog-card {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-card h2 {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.blog-card h2 a {
    color: var(--text-primary);
    text-decoration: none;
}

.blog-card h2 a:hover {
    color: var(--accent-color);
}

.blog-card p {
    margin: 0;
}

.blog-card .btn {
    margin-top: auto;
}

.blog-article .container {
    max-width: 900px;
}

.blog-article h2 {
    margin-top: 2rem;
    font-size: 1.4rem;
}

.blog-article p {
    line-height: 1.9;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .blog-main {
        padding-top: 95px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card {
        padding: 1.2rem;
    }

    .blog-article h2 {
        font-size: 1.25rem;
    }
}

.hero-content {
    max-width: 800px;
    text-align: center;
}

.hero-slogan {
    font-family: var(--font-heading-primary);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.4;
    position: relative;
    animation: heroSloganGlow 4s ease-in-out infinite;
}

.hero-slogan::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    opacity: 0;
    animation: sloganPulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroSloganGlow {
    0%, 100% {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    }
    25% {
        text-shadow: 2px 2px 12px rgba(255, 255, 255, 0.4), 0 0 20px rgba(255, 255, 255, 0.2);
    }
    50% {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    }
    75% {
        text-shadow: 2px 2px 15px rgba(255, 255, 255, 0.5), 0 0 25px rgba(255, 255, 255, 0.3);
    }
}

@keyframes sloganPulse {
    0%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    25%, 75% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
    50% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
}

.hero-logo {
    width: auto;
    height: 80px;
    max-width: 90%;
    margin-bottom: 2rem;
    padding: 1.5rem 3rem;
    background: transparent;
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.7)) brightness(1);
    transition: all 0.4s ease;
}

.hero-logo:hover {
    border-color: var(--text-primary);
    filter: drop-shadow(2px 2px 12px rgba(255, 255, 255, 0.4)) brightness(1.1);
}

@keyframes heroLogoGlow {
    0%, 100% {
        filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.7)) brightness(1);
    }
    50% {
        filter: drop-shadow(2px 2px 12px rgba(255, 255, 255, 0.3)) brightness(1.1);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 400;
    letter-spacing: 2px;
    font-family: var(--font-heading-primary);
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background: var(--dark-surface);
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: visible;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition);
    filter: grayscale(10%);
}

.about-image:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.about-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    text-align: center;
    max-width: 800px;
}

.about-text.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.about-image {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-image.fade-in {
    opacity: 1;
    transform: translateX(0);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: var(--dark-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-heading-alt);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: white;
    font-size: 1.1rem;
    margin: 0;
}

/* Booking Section */
.booking-section {
    background: var(--dark-surface);
}

/* Studio Section */
.studio-content {
    max-width: 1100px;
    margin: 0 auto;
}

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

.studio-photo {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.studio-photo img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.studio-photo:hover img {
    transform: scale(1.05);
}

.studio-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.studio-description h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading-alt);
    font-weight: 500;
}

.studio-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.booking-content {
    max-width: 800px;
    margin: 0 auto;
}

.booking-form {
    background: var(--dark-card);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

/* Booking section font override: use site's general font */
.booking-section,
.booking-section .section-title,
.booking-section .section-subtitle,
.booking-section .form-group label,
.booking-section .booking-form,
.booking-section .booking-card,
.booking-section input,
.booking-section select,
.booking-section textarea,
.booking-section .btn {
    font-family: var(--font-family);
}

/* Booking translucent card */
.booking-card,
.booking-section form {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.booking-card.transparent,
.booking-card.transparent form {
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}

/* Booking kartı genişlik ayarı */
.booking-card.transparent {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

/* Başlık ve alt başlığı merkezle ve büyüt */
.booking-overlay .section-header {
    text-align: center;
    margin-bottom: 12px;
}
.booking-overlay .section-title {
    font-size: 2.1rem;
    line-height: 1.2;
}
.booking-overlay .section-subtitle {
    opacity: 0.9;
}

.booking-banner {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 24px;
    background: var(--dark-card);
}
.booking-banner .hero-video {
    width: 100%;
    /* Ekrana göre akışkan yükseklik: mobil uyumlu */
    height: clamp(280px, 50dvh, 640px);
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
    pointer-events: none;
}
@media (max-width: 768px) {
    /* Mobilde konteyner yüksekliği form içeriğinden gelsin */
    .booking-overlay { position: relative; z-index: 2; padding: 16px; }
    .booking-banner .hero-video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100% !important;
        object-fit: cover;
    }
}
.booking-overlay {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 1;
    background: transparent;
}

/* Buton görünümü: form ile aynı yarı saydam stil */
.booking-form .btn.btn-primary {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-weight: 600;
    padding: 14px 18px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    display: inline-block;
    position: relative;
    z-index: 3;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background .2s ease, border-color .2s ease, transform .1s ease;
}
.booking-form .btn.btn-primary:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.35);
}
.booking-form .btn.btn-primary:active {
    transform: translateY(1px);
}

/* Video hafif karartma (gerekirse) */
.booking-banner .hero-video {
    filter: brightness(0.9);
}

/* Akışkan yerleşimli (inline) videolar için genel mobil uyum */
video:not(.hero-video) {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}

/* Booking form readable transparent inputs */
.booking-form .form-group label {
    color: #fff;
}
.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form input[type="date"],
.booking-form select,
.booking-form textarea,
.booking-form input[type="file"] {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    border-radius: 10px;
    padding: 10px 12px;
}
.booking-form textarea { resize: vertical; }
.booking-form ::placeholder { color: rgba(255,255,255,0.75); }
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255,107,53,0.25);
}
.booking-form .btn.btn-primary {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
}

/* KVKK Section Styles */
.kvkk-group {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
}

.kvkk-checkbox {
    display: flex;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 0.75rem;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent-color);
    flex-shrink: 0;
    margin: 0;
}

.checkbox-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    user-select: none;
}

.checkbox-label:hover .checkbox-text {
    color: var(--text-primary);
}

.kvkk-link {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: 500;
    transition: var(--transition);
}

.kvkk-link:hover {
    color: var(--text-primary);
    text-decoration: none;
}

/* KVKK Modal */
.kvkk-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

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

.kvkk-modal-content {
    background-color: var(--dark-card);
    margin: 5% auto;
    padding: 0;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    box-shadow: var(--shadow-lg);
    animation: slideDown 0.3s ease;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.kvkk-modal-content h2 {
    color: var(--text-primary);
    padding: 2rem 2rem 1rem 2rem;
    margin: 0;
    border-bottom: 1px solid var(--border-color);
    font-family: var(--font-heading-alt);
    font-size: 1.75rem;
}

.kvkk-modal-body {
    padding: 2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    overflow-y: auto;
    flex: 1;
}

.kvkk-modal-body h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.kvkk-modal-body h3:first-child {
    margin-top: 0;
}

.kvkk-modal-body p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.kvkk-modal-body ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.kvkk-modal-body li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.kvkk-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    color: var(--text-secondary);
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.kvkk-modal-close:hover,
.kvkk-modal-close:focus {
    color: var(--text-primary);
}

.kvkk-modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-color);
    text-align: right;
}

.kvkk-modal-footer .btn {
    min-width: 120px;
}

/* İç boşluk ve grid düzeni (sade ve okunabilir) */
.booking-card .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (max-width: 768px) {
    .booking-card,
    .booking-section form { padding: 16px; }
    .booking-card .form-row { grid-template-columns: 1fr; }
}

/* Form alanları */
.booking-card .form-group label,
.booking-section form .form-group label {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.booking-card .form-group input,
.booking-card .form-group select,
.booking-card .form-group textarea,
.booking-section form .form-group input,
.booking-section form .form-group select,
.booking-section form .form-group textarea {
    width: 100%;
    background: rgba(0,0,0,0.35);
    color: var(--text-primary);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 12px 14px;
    transition: border-color .25s, box-shadow .25s, background .25s;
}

.booking-card .form-group input::placeholder,
.booking-card .form-group textarea::placeholder,
.booking-section form .form-group input::placeholder,
.booking-section form .form-group textarea::placeholder {
    color: rgba(255,255,255,0.55);
}

.booking-card .form-group input:focus,
.booking-card .form-group select:focus,
.booking-card .form-group textarea:focus,
.booking-section form .form-group input:focus,
.booking-section form .form-group select:focus,
.booking-section form .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.25);
    background: rgba(0,0,0,0.45);
}

/* Gönder butonu hizalama (isteğe bağlı) */
.booking-card .actions,
.booking-section form .actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 12px;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: var(--dark-card);
    padding: 0 1.5rem;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: var(--text-secondary);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.contact-item iframe {
    width: 100%;
    max-width: 600px;
    height: 350px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.contact-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-link:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--dark-surface);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    text-align: center;
}

.footer-content p {
    color: var(--text-muted);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav,
    .nav-list {
        display: none !important;
    }
    .hamburger {
        position: fixed;
        top: 24px;
        right: 24px;
        display: flex !important;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        z-index: 1200;
        background: transparent;
        border: none;
    }
    .mobile-nav {
        display: block;
        position: fixed;
        top: 0;
        right: -100vw;
        width: min(100vw, 400px); /* 400px'den büyükse 400px, küçükse ekran genişliği */
        height: 100vh;
        background: var(--dark-card);
        box-shadow: -8px 0 24px rgba(0,0,0,0.25);
        border-radius: 16px 0 0 16px;
        padding: 2rem 1.5rem;
        z-index: 1100;
        transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    }
    .mobile-nav.active {
        right: 0;
    }
    .mobile-nav-list {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        margin-top: 4rem;
        align-items: flex-start;
    }
    .mobile-nav-list {
        list-style: none;
        border: none;
        padding: 0;
        margin: 0;
    }

    .mobile-nav-list li {
        border-bottom: none !important;
    }

    .mobile-nav-link {
        color: var(--text-primary);
        font-size: 1.1rem;
        font-family: var(--font-family);
        font-weight: 500;
        text-decoration: none;
        background: none;
        border: none;
        outline: none;
        box-shadow: none;
        padding: 0.75rem 2rem;
        border-radius: 8px;
        display: block;
        width: 100%;
        transition: background 0.2s, color 0.2s;
    }

    .mobile-nav-link:hover,
    .mobile-nav-link:focus {
        background: var(--accent-color);
        color: #fff;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }

    .about-text {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark-bg);
        border-top: 1px solid var(--border-color);
        transform: translateY(-100%);
        transition: var(--transition);
    }
    
    .nav.active {
        transform: translateY(0);
    }
    
    .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }
    
    .hamburger {
        position: fixed;
        top: 24px;
        right: 24px;
        display: flex !important;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        z-index: 1200;
        background: transparent;
        border: none;
    }
    .nav-list {
        display: none;
    }
    .nav.active .nav-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 2rem;
    }
    .mobile-nav {
        display: block;
        position: fixed;
        top: 0;
        right: -100vw;
        width: 80vw;
        height: 100vh;
        background: var(--dark-card);
        box-shadow: -8px 0 24px rgba(0,0,0,0.25);
        border-radius: 16px 0 0 16px;
        padding: 2rem 1.5rem;
        z-index: 1100;
        transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    }
    .mobile-nav.active {
        right: 0;
    }
    .mobile-nav-list {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        margin-top: 4rem;
        align-items: flex-start;
    }
    .mobile-nav-list {
        list-style: none;
        border: none;
        padding: 0;
        margin: 0;
    }

    .mobile-nav-list li {
        border-bottom: none !important;
    }

    .mobile-nav-link {
        color: var(--text-primary);
        font-size: 1.1rem;
        font-family: var(--font-family);
        font-weight: 500;
        text-decoration: none;
        background: none;
        border: none;
        outline: none;
        box-shadow: none;
        padding: 0.75rem 2rem;
        border-radius: 8px;
        display: block;
        width: 100%;
        transition: background 0.2s, color 0.2s;
    }
    
    .mobile-nav-link:hover,
    .mobile-nav-link:focus {
        background: var(--accent-color);
        color: #fff;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-form {
        padding: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .studio-gallery {
        grid-template-columns: 1fr;
    }
    
    .studio-photo img {
        height: 300px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .booking-form {
        padding: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        gap: 1rem;
    }
    
    .stat {
        padding: 1.5rem;
    }
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Success/Error messages */
.message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.message.success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid var(--success-color);
    color: var(--success-color);
}

.message.error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid var(--error-color);
    color: var(--error-color);
}

/* Form validation styles */
.form-group {
    position: relative;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: var(--error-color) !important;
    background: rgba(244, 67, 54, 0.05);
}

.form-group.has-error input:focus,
.form-group.has-error select:focus,
.form-group.has-error textarea:focus {
    box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.2) !important;
}

/* Error icon */
.error-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--error-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: bold;
    cursor: help;
    pointer-events: all;
    z-index: 10;
}

.form-group label + input ~ .error-icon,
.form-group label + select ~ .error-icon,
.form-group label + textarea ~ .error-icon {
    top: calc(50% + 12px);
}

.form-group.has-textarea .error-icon {
    top: 45px;
    transform: none;
}

/* Error tooltip */
.error-tooltip {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    background: #1a1a1a;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    z-index: 1000;
    border: 1px solid var(--error-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.error-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 6px;
    border-color: transparent transparent transparent var(--error-color);
}

.error-icon:hover + .error-tooltip,
.error-tooltip:hover {
    opacity: 1;
    visibility: visible;
}

.form-group label + input ~ .error-tooltip,
.form-group label + select ~ .error-tooltip,
.form-group label + textarea ~ .error-tooltip {
    top: calc(50% + 12px);
}

.form-group.has-textarea .error-tooltip {
    top: 45px;
    transform: none;
}

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --border-color: #ffffff;
        --text-secondary: #ffffff;
    }
}

@media (min-width: 1025px) {
    .nav-list {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        gap: 2rem;
        padding: 0;
        margin: 0;
        list-style: none;
    }
    .nav-link {
        color: var(--text-primary);
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        background: none;
        border: none;
        outline: none;
        box-shadow: none;
        padding: 0;
        position: relative;
        transition: var(--transition);
        font-family: var(--font-heading-primary);
        letter-spacing: .5px;
    }
    .nav-link:hover {
        color: var(--accent-color);
    }
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--accent-color);
        transition: var(--transition);
    }
    .nav-link:hover::after {
        width: 100%;
    }
    
    /* Sadece desktopta mobil menüyü gizle */
    .mobile-nav {
        display: none !important;
    }
}

/* --- Gallery Modal (TEMİZLENMİŞ) --- */
.gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
    z-index: 99999;
}
.gallery-modal.active {
    opacity: 1;
    pointer-events: auto;
}

/* --- Page Overlay for Gallery Popup --- */
.page-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
}
.overlay-inner {
    width: 90vw;
    height: 90vh;
    max-width: 1200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
    background: #0a0a0a;
    border: 1px solid #222;
}
.overlay-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.gallery-modal img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.gallery-modal-close {
    position: absolute;
    top: 32px;
    right: 48px;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    transition: color .2s;
    z-index: 100010;
}
.gallery-modal-close:hover {
    color: var(--accent-color);
}
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.10);
    border: none;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    transition: background .25s, transform .25s;
    user-select: none;
    z-index: 100020;
}
.gallery-nav:hover {
    background: rgba(255,255,255,0.22);
    transform: translateY(-50%) scale(1.06);
}
.gallery-nav.prev { left: 40px; }
.gallery-nav.next { right: 40px; }
@media (max-width: 600px) {
    .gallery-nav {
        width: 44px;
        height: 44px;
        font-size: 1.6rem;
    }
    .gallery-nav.prev { left: 12px; }
    .gallery-nav.next { right: 12px; }
}

/* Artistic Heading Fonts */
:root {
    --font-heading-primary: 'Cinzel', serif;
    --font-heading-alt: 'Playfair Display', serif;
}

h1, h2, h3, h4, h5, h6,
.section-title,
.hero-title,
.logo h1 {
    font-family: var(--font-heading-primary);
    font-weight: 600;
    letter-spacing: 1px;
    text-rendering: optimizeLegibility;
}

.hero-title {
    font-weight: 700;
    letter-spacing: 2px;
}

.section-title {
    font-family: var(--font-heading-alt);
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-link {
    font-family: var(--font-heading-primary);
    letter-spacing: .5px;
    font-weight: 500;
}

/* Opsiyonel: About stats etiketleri */
.stat-label {
    font-family: var(--font-heading-alt);
    letter-spacing: .5px;
}

/* Mobil uyum küçük ekranlarda font boyutlarını yumuşat */
@media (max-width: 600px) {
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.6rem; }
    
    .hero-slogan {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-logo {
        height: 50px;
    }
    
    /* Mobilde logo boyutunu küçült */
    .logo-svg {
        height: 32px;
        max-width: 200px;
    }
    
    /* Mobilde çizgiyi gizle */
    .header-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-slogan {
        font-size: 1.4rem;
    }
    
    .hero-logo {
        height: 60px;
    }
    
    .logo-svg {
        height: 36px;
        max-width: 240px;
    }
    
    .header-divider {
        display: none;
    }
}

@media (max-width: 1024px) {
    .header-divider {
        margin: 0 1rem;
    }
}

