/* ============================================================
   DEMET KOSTÜM EVİ - TAM CSS
   Mobile-First, Modern, Clean
============================================================ */

/* CSS Custom Properties */
:root {
    /* Colors */
    --color-primary: #F5E6D3;
    --color-primary-dark: #E8D4BB;
    --color-primary-light: #FFF8F0;
    --color-secondary: #1B3A5F;
    --color-accent: #2C5F8D;
    --color-burgundy: #6B3E3E;
    --color-navy-dark: #0D1F35;
    
    /* Neutral */
    --color-white: #FFFFFF;
    --color-black: #0F0F0F;
    --color-dark-bg: #1A1A1A;
    --color-dark-card: #252525;
    --color-gray-700: #B0B0B0;
    --color-gray-900: #E5E5E5;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #F5E6D3 0%, #E8D4BB 100%);
    --gradient-secondary: linear-gradient(135deg, #1B3A5F 0%, #2C5F8D 100%);
    --gradient-navy: linear-gradient(135deg, #0D1F35 0%, #1B3A5F 100%);
    --gradient-elegant: linear-gradient(135deg, #F5E6D3, #1B3A5F, #2C5F8D);
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing - Fluid */
    --space-xs: clamp(0.375rem, 1vw, 0.5rem);
    --space-sm: clamp(0.75rem, 2vw, 1rem);
    --space-md: clamp(1rem, 3vw, 2rem);
    --space-lg: clamp(1.5rem, 4vw, 4rem);
    --space-xl: clamp(2rem, 6vw, 6rem);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.7);
    --shadow-cream: 0 0 40px rgba(245, 230, 211, 0.3);
    --shadow-gold: 0 0 30px rgba(245, 230, 211, 0.4);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}
/* ============================================================
   LOADING SCREEN - MODERN & PROFESSIONAL
============================================================ */

.loading-screen {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #0D1F35 0%, #1B3A5F 50%, #0D1F35 100%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    overflow: hidden;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(245, 230, 211, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 230, 211, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px ;
    position: relative;
    z-index: 1;
}

.loading-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
}

.loading-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F5E6D3 0%, #E8D4BB 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 40px rgba(245, 230, 211, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    z-index: 2;
    animation: iconPulse 2s ease-in-out infinite;
}

.loading-icon i {
    font-size: 2.5rem;
    color: #1B3A5F;
    animation: scissorsCut 1.5s ease-in-out infinite;
}

.loading-pulse-ring {
    position: absolute;
    inset: -10px;
    border: 2px solid rgba(245, 230, 211, 0.3);
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
}

.loading-pulse-ring.delay {
    animation-delay: 1s;
}

.loading-brand {
    margin-bottom: var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.loading-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    line-height: 1;
    text-shadow: 0 0 30px rgba(245, 230, 211, 0.3);
    animation: titleGlow 3s ease-in-out infinite;
    margin: 0;
}

.loading-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #F5E6D3;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    opacity: 0.9;
}

.loading-progress-container {
    width: 280px;
    height: 4px;
    background: rgba(245, 230, 211, 0.15);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.loading-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #F5E6D3 0%, #E8D4BB 100%);
    border-radius: 10px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(245, 230, 211, 0.5);
    position: relative;
}

.loading-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 1.5s infinite;
}

.loading-percentage {
    position: absolute;
    top: -25px;
    right: 0;
    font-size: 0.8rem;
    color:#F5E6D3;
    font-weight: 600;
    opacity: 0.8;
}

.loading-text {
    font-size: 0.9rem;
    color: #B0B0B0;
    letter-spacing: 0.1em;
    opacity: 0.8;
    animation: textFade 2s ease-in-out infinite;
    font-family: 'poopins', sans-serif;
    margin: 0;
}

.loading-designer {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #F5E6D3;
    opacity: 0.7;
    letter-spacing: 0.1em;
    font-family: 'poppins', sans-serif;
}

.loading-designer i {
    color: #F5E6D3;
    font-size: 1rem;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes scissorsCut {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 30px rgba(245, 230, 211, 0.3); }
    50% { text-shadow: 0 0 50px rgba(245, 230, 211, 0.5), 0 0 80px rgba(245, 230, 211, 0.2); }
}

@keyframes shimmer {
    0% { transform: translateX(-30px); }
    100% { transform: translateX(30px); }
}

@keyframes textFade {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}
/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-gray-900);
    background: var(--color-black);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        url('https://www.transparenttextures.com/patterns/dark-leather.png'),
        linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 50%, #0F0F0F 100%);
    background-attachment: fixed;
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: var(--color-secondary);
    padding: 8px;
    z-index: 10000;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    inset: 0;
    background: var(--gradient-navy);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    margin-bottom: var(--space-md);
}

.loading-logo i {
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--color-primary);
    animation: pulse 2s infinite;
}

.loading-logo h1 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--color-primary);
    letter-spacing: 0.2em;
}

.loader-subtitle {
    font-size: 0.9rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.9;
}

.loader-progress {
    width: min(300px, 80vw);
    height: 3px;
    background: rgba(245, 230, 211, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-top: var(--space-lg);
}

.loader-bar {
    height: 100%;
    width: 0%;
    background: var(--gradient-primary);
    animation: loadProgress 2s infinite;
}

@keyframes loadProgress {
    0% { width: 0%; transform: translateX(-100%); }
    50% { width: 100%; transform: translateX(0); }
    100% { width: 100%; transform: translateX(100%); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.loading-designer {
    position: absolute;
    bottom: var(--space-md);
    color: var(--color-primary);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: var(--space-sm) 0;
}

.navbar.scrolled {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(245, 230, 211, 0.1);
}

.nav-container {
    max-width: min(1200px, 100% - 2rem);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-logo i {
    font-size: 1.75rem;
    -webkit-text-fill-color: var(--color-primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(1rem, 3vw, 2rem);
    align-items: center;
}

.nav-link {
    color: var(--color-gray-900);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s;
}

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

.nav-cta {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--color-secondary);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: var(--space-xl) var(--space-md);
}

.hero-video {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 31, 53, 0.9), rgba(27, 58, 95, 0.8));
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    color: var(--color-white);
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 6rem);
    line-height: 1.1;
    margin-bottom: var(--space-md);
    font-weight: 700;
}

.gradient-text {
    background: var(--gradient-elegant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: var(--space-lg);
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-secondary);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-cream);
}

.btn-secondary {
    background: rgba(245, 230, 211, 0.15);
    backdrop-filter: blur(10px);
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-secondary);
}

.btn-large {
    font-size: clamp(1rem, 2vw, 1.25rem);
    padding: 1.25rem 2.5rem;
}

.btn-outline {
    background: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-secondary);
}

.hero-stats {
    display: flex;
    gap: clamp(2rem, 5vw, 4rem);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.stat-item h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--color-primary);
}

.stat-item p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
}

.scroll-down {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-white);
    animation: bounce 2s infinite;
    cursor: pointer;
    padding: var(--space-sm);
    
    
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}


.scroll-down.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(20px);
    animation: none;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Container & Sections */
.container {
    max-width: min(1200px, 100% - 2rem);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

section {
    padding: var(--space-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-700);
    max-width: 600px;
    margin: 0 auto;
}

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

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: var(--space-xl);
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 3/4;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.about-badge {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    background: var(--color-dark-card);
    padding: var(--space-sm) var(--space-md);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--color-primary);
    font-weight: 600;
    color: var(--color-primary);
}

.about-content {
    padding: var(--space-md);
}

.about-text {
    color: var(--color-gray-700);
    margin-bottom: var(--space-md);
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    margin: var(--space-lg) 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-gray-900);
}

.feature-item i {
    color: var(--color-primary);
    font-size: 1.25rem;
}

/* Categories Section */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: var(--space-md);
}

.category-card {
    background: var(--color-dark-card);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(245, 230, 211, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.category-card:hover::before {
    opacity: 0.05;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
    border-color: var(--color-primary);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-md);
    background: var(--icon-gradient, var(--gradient-primary));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--color-white);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-md);
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.category-card p {
    color: var(--color-gray-700);
    margin-bottom: var(--space-md);
    line-height: 1.8;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.category-link:hover {
    gap: 1rem;
    color: var(--color-primary-light);
}

/* Gallery Section */
.gallery-section {
    background: var(--color-black);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background: var(--color-dark-card);
    color: var(--color-gray-700);
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    color: var(--color-black);
    border-color: var(--color-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
    gap: var(--space-md);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: var(--color-dark-card);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-md);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    font-size: 1.25rem;
    transform: translateY(20px);
    transition: transform 0.3s;
}

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

.gallery-load-more {
    text-align: center;
    margin-top: var(--space-xl);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
}

.lightbox-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-white);
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: var(--space-md);
}

.lightbox-next {
    right: var(--space-md);
}

.lightbox-caption {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    color: var(--color-white);
    font-size: 1.1rem;
}

/* Reservation Section */
.reservation-section {
    background: var(--color-dark-bg);
}

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

.reservation-content {
    text-align: center;
    padding: var(--space-xl);
    background: var(--color-dark-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(245, 230, 211, 0.2);
}

.reservation-description {
    font-size: 1.125rem;
    color: var(--color-gray-700);
    margin: var(--space-md) 0 var(--space-lg);
    line-height: 1.8;
}

.reservation-buttons {
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.reservation-note {
    font-size: 0.9rem;
    color: var(--color-gray-700);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reservation-note i {
    color: var(--color-primary);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: var(--space-md);
}

.contact-card {
    background: var(--color-dark-card);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(245, 230, 211, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: var(--color-primary);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin-bottom: var(--space-md);
    background: var(--contact-gradient, var(--gradient-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--color-gray-900);
}

.contact-link {
    color: var(--color-primary);
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-link:hover {
    color: var(--color-primary-light);
    gap: 0.75rem;
}

/* Footer */
.footer {
    background: #000000;
    color: var(--color-gray-700);
    padding: var(--space-xl) 0 var(--space-md);
    border-top: 1px solid rgba(245, 230, 211, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-brand h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: var(--space-sm);
    color: var(--color-primary);
}

.footer-brand p {
    opacity: 0.8;
    margin-bottom: var(--space-md);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    transition: var(--transition);
    font-size: 1.25rem;
}

.footer-social a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-cream);
}

.footer-links h3,
.footer-hours h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    color: var(--color-primary);
}

.footer-links ul,
.footer-hours ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--color-gray-700);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: var(--space-sm);
}

.footer-hours span {
    color: var(--color-primary);
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-md);
    text-align: center;
    opacity: 0.7;
}

.footer-bottom i {
    color: var(--color-primary);
}

/* Floating Elements */
.back-to-top {
    position: fixed;
    bottom: var(--space-md);
    right: var(--space-md);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

.whatsapp-float {
    position: fixed;
    bottom: calc(var(--space-md) + 70px);
    right: var(--space-md);
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    animation: pulse 2s infinite;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
}

/* Toast */
.toast-container {
    position: fixed;
    top: var(--space-md);
    right: var(--space-md);
    z-index: 10002;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    pointer-events: none;
}

.toast {
    background: var(--color-dark-card);
    color: var(--color-white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--color-primary);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    min-width: 300px;
    max-width: 400px;
    animation: slideIn 0.3s ease;
    pointer-events: all;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ============================================================
   MOBILE RESPONSIVE - 2 COLUMN GRID
============================================================ */

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 80vw);
        height: 100vh;
        background: var(--color-dark-bg);
        flex-direction: column;
        padding: var(--space-xl) var(--space-md);
        box-shadow: var(--shadow-lg);
        transition: right 0.5s;
        border-left: 1px solid rgba(245, 230, 211, 0.2);
        gap: var(--space-md);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-link {
        font-size: 1.25rem;
        width: 100%;
        text-align: center;
    }
    
    .nav-cta {
        width: 100%;
        text-align: center;
        margin-top: var(--space-sm);
    }
    
    .about-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-hours li {
        justify-content: center;
    }
}

/* Mobile: 2 Column Layout */
@media (max-width: 768px) {
    /* Hero */
    .hero {
        padding: var(--space-lg) var(--space-sm);
        min-height: auto;
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .stat-divider {
        width: 60px;
        height: 2px;
    }
    
    /* About */
    .about-grid {
        gap: var(--space-lg);
    }
    
    .about-image {
        aspect-ratio: 16/10;
        max-height: 280px;
    }
    
    .about-content {
        padding: 0;
        text-align: center;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
        text-align: left;
    }
    
    /* Categories - 2 columns */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
    
    .category-card {
        padding: var(--space-md);
    }
    
    .category-icon {
        width: 55px;
        height: 55px;
        font-size: 1.75rem;
        margin-bottom: var(--space-sm);
    }
    
    .category-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .category-card p {
        font-size: 0.75rem;
        line-height: 1.5;
        margin-bottom: var(--space-sm);
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .category-link {
        font-size: 0.8rem;
    }
    
    /* Gallery - 2 columns */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
    
    .gallery-item {
        border-radius: var(--radius-md);
    }
    
    .gallery-overlay {
        padding: var(--space-sm);
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    }
    
    .gallery-overlay h4 {
        font-size: 0.85rem;
        transform: none;
    }
    
    .gallery-category {
        font-size: 0.7rem;
        opacity: 0.9;
    }
    
    /* Filter buttons */
    .gallery-filter {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Reservation */
    .reservation-content {
        padding: var(--space-lg) var(--space-md);
    }
    
    .reservation-description {
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    /* Contact - 2 columns */
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
    
    .contact-card {
        padding: var(--space-md);
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: var(--space-sm);
    }
    
    .contact-card h3 {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-link {
        font-size: 0.8rem;
    }
    
    /* Last item center if odd */
    .contact-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
    
    /* Lightbox */
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .lightbox-prev {
        left: var(--space-sm);
    }
    
    .lightbox-next {
        right: var(--space-sm);
    }
    
    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
        text-align: left;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-links,
    .footer-hours {
        text-align: center;
    }
    
    .footer-links h3,
    .footer-hours h3 {
        font-size: 1rem;
    }
    
    .footer-links a,
    .footer-hours li {
        font-size: 0.85rem;
    }
    
    /* Floating buttons */
    .whatsapp-float,
    .back-to-top {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .whatsapp-float {
        bottom: calc(var(--space-md) + 60px);
    }
}

/* Extra Small */
@media (max-width: 375px) {
    :root {
        --space-xs: 0.375rem;
        --space-sm: 0.625rem;
        --space-md: 0.875rem;
        --space-lg: 1.25rem;
        --space-xl: 1.75rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    /* Categories smaller */
    .category-icon {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .category-card h3 {
        font-size: 0.8rem;
    }
    
    .category-card p {
        font-size: 0.7rem;
        -webkit-line-clamp: 2;
    }
    
    /* Contact smaller */
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .contact-card h3 {
        font-size: 0.75rem;
    }
    
    .contact-link {
        font-size: 0.7rem;
    }
    
    /* Gallery smaller gap */
    .gallery-grid {
        gap: 0.5rem;
    }
    
    .gallery-overlay h4 {
        font-size: 0.75rem;
    }
}

/* Landscape */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px var(--space-sm) var(--space-lg);
    }
    
    .scroll-down {
        display: none;
    }
    
    .hero-stats {
        margin-top: var(--space-md);
    }
}

/* Touch devices */
@media (hover: none) and (pointer: coarse) {
    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    }
    
    .gallery-overlay h4 {
        transform: none;
    }
    
    .btn:active {
        transform: scale(0.98);
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print */
@media print {
    .navbar,
    .loading-screen,
    .back-to-top,
    .whatsapp-float,
    .lightbox,
    .toast-container {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }

}
.hero-buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 0.95rem;
    text-align: center;
    min-height: 48px;
    white-space: nowrap;
}

/* Mobile hero butonları */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
        padding: 0 var(--space-sm);
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .btn i {
        font-size: 1rem;
    }
}

/* KATEGORİ KARTLARI - TAM METİN GÖRÜNÜR */
.category-card p {
    color: var(--color-gray-700);
    margin-bottom: var(--space-md);
    line-height: 1.7;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    /* KALDIR: -webkit-line-clamp */
    display: block;
    overflow: visible;
}

/* Mobile kategori kartları - tam metin */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
    
    .category-card {
        padding: var(--space-md);
        min-height: auto;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: var(--space-sm);
    }
    
    .category-card h3 {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .category-card p {
        font-size: 0.75rem;
        line-height: 1.6;
        margin-bottom: var(--space-sm);
        /* TAM METİN GÖSTER */
        display: block;
        -webkit-line-clamp: unset;
        overflow: visible;
        min-height: auto;
    }
    
    .category-link {
        font-size: 0.8rem;
        margin-top: auto;
    }
}

/* FOOTER ÇALIŞMA SAATLERİ - DÜZ HİZALI */
.footer-hours ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
}

.footer-hours span {
    color: var(--color-primary);
    font-weight: 600;
    flex-shrink: 0;
}

/* Mobile footer düzeni */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
        text-align: left;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-links,
    .footer-hours {
        text-align: left;
    }
    
    .footer-links h3,
    .footer-hours h3 {
        font-size: 1rem;
        margin-bottom: var(--space-sm);
        text-align: left;
    }
    
    .footer-links ul,
    .footer-hours ul {
        gap: 0.5rem;
    }
    
    .footer-links a,
    .footer-hours li {
        font-size: 0.85rem;
    }
    
    /* ÇALIŞMA SAATLERİ DÜZELTME */
    .footer-hours li {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.25rem 0;
        border-bottom: 1px solid rgba(245, 230, 211, 0.1);
    }
    
    .footer-hours span {
        font-size: 0.85rem;
    }
    
    .footer-hours li:last-child {
        border-bottom: none;
    }
}

/* Extra small mobile düzeltmeler */
@media (max-width: 375px) {
    .hero-buttons .btn {
        max-width: 260px;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .category-card p {
        font-size: 0.7rem;
        line-height: 1.5;
    }
    
    .footer-hours li {
        font-size: 0.8rem;
    }
    
    .footer-hours span {
        font-size: 0.8rem;
    }
}
/* Mobile Loading Optimizations */
@media (max-width: 768px) {
    .loading-content {
        padding: var(--space-sm);
    }
    
    .loading-icon-wrapper {
        margin-bottom: var(--space-md);
    }
    
    .loading-brand {
        margin-bottom: var(--space-md);
    }
    
    .loading-title {
        letter-spacing: 0.2em;
    }
    
    .loading-subtitle {
        letter-spacing: 0.3em;
    }
    
    .loading-progress-container {
        margin-bottom: var(--space-sm);
    }
    
    .loading-designer {
        bottom: var(--space-md);
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }
}

@media (max-width: 375px) {
    .loading-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .loading-icon i {
        font-size: 1.75rem;
    }
    
    .loading-title {
        font-size: 1.75rem;
        letter-spacing: 0.15em;
    }
    
    .loading-subtitle {
        font-size: 0.8rem;
        letter-spacing: 0.2em;
    }
    
    .loading-text {
        font-size: 0.75rem;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .loading-content {
        flex-direction: row;
        gap: var(--space-lg);
    }
    
    .loading-icon-wrapper {
        margin-bottom: 0;
        width: 60px;
        height: 60px;
    }
    
    .loading-brand {
        margin-bottom: 0;
        align-items: flex-start;
    }
    
    .loading-title {
        font-size: 1.5rem;
    }
    
    .loading-subtitle {
        font-size: 0.8rem;
    }
    
    .loading-progress-container,
    .loading-text {
        display: none;
    }
}