/* ========================================
   LAV TANTUNI - ULTRA OPTIMIZED CSS
======================================== */

:root {
    --primary-red: #e53e3e;
    --primary-orange: #ff6b35;
    --primary-gradient: linear-gradient(135deg, #e53e3e 0%, #ff6b35 100%);
    --secondary-dark: #2d3436;
    --secondary-light: #636e72;
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Oswald', sans-serif;
    --transition: 0.3s ease;
    --radius: 12px;
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

html { scroll-behavior: smooth; }

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

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

/* ========================================
   PRELOADER
======================================== */

/* Preloader Logo - Büyük Görünüm */
.logo-circle {
    width: 200px;
    height: 200px;
    background: transparent; /* Arka plan yok */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    padding: 0; /* Padding kaldır */
}

.preloader-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    filter: none; /* Filtre kaldır - orijinal renkler */
    border-radius: 50%;
}

/* Navigation Logo - Desktop */
.nav-logo-circle {
    width: 80px; /* 50px'den 80px'e büyüt */
    height: 80px;
    background: transparent; /* Beyaz arka plan kaldır */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none; /* Shadow kaldır */
    padding: 0; /* Padding kaldır */
}

.nav-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.1); /* Hover'da biraz büyüt */
}

/* Footer Logo - Büyük */
.footer-logo-circle {
    width: 100px; /* 60px'den 100px'e büyüt */
    height: 100px;
    background: transparent; /* Beyaz arka plan kaldır */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none; /* Shadow kaldır */
    padding: 0; /* Padding kaldır */
}

.footer-logo-img {
    margin-bottom:50px;
    width: 300px;
    height: 300px;
    object-fit: contain;
    display: block;
    border-radius: 50%;
}

/* Logo Pulse Animasyonu Güncelle */
@keyframes logoPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.7); 
    }
    70% { 
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(229, 62, 62, 0); 
    }
}

/* Retina Display Optimizasyonu */
@media (-webkit-min-device-pixel-ratio: 2),
       (min-resolution: 192dpi) {
    .preloader-logo,
    .nav-logo-img,
    .footer-logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* ========================================
   RESPONSIVE LOGO BOYUTLARI
======================================== */

/* Large Desktop - En büyük boyutlar */
@media (min-width: 1400px) {
    .nav-logo-circle {
        width: 90px;
        height: 90px;
    }
    
    .footer-logo-circle {
        width: 110px;
        height: 110px;
    }
    
    .logo-circle {
        width: 220px;
        height: 220px;
    }
    
    .preloader-logo {
        width: 220px;
        height: 220px;
    }
}

/* Desktop - Standart boyutlar */
@media (max-width: 1200px) {
    .nav-logo-circle {
        width: 75px;
        height: 75px;
    }
    
    .footer-logo-circle {
        width: 95px;
        height: 95px;
    }
}

/* Tablet - Orta boyutlar */
@media (max-width: 992px) {
    .nav-logo-circle {
        width: 65px;
        height: 65px;
    }
    
    .footer-logo-circle {
        width: 85px;
        height: 85px;
    }
    
    .logo-circle {
        width: 180px;
        height: 180px;
    }
    
    .preloader-logo {
        width: 180px;
        height: 180px;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .nav-logo-circle {
        width: 60px;
        height: 60px;
    }
    
    .footer-logo-circle {
        width: 80px;
        height: 80px;
    }
    
    .logo-circle {
        width: 160px;
        height: 160px;
    }
    
    .preloader-logo {
        width: 160px;
        height: 160px;
    }
}

/* Mobile Medium */
@media (max-width: 480px) {
    .nav-logo-circle {
        width: 55px;
        height: 55px;
    }
    
    .footer-logo-circle {
        width: 75px;
        height: 75px;
    }
    
    .logo-circle {
        width: 140px;
        height: 140px;
    }
    
    .preloader-logo {
        width: 140px;
        height: 140px;
    }
}

/* Mobile Small */
@media (max-width: 360px) {
    .nav-logo-circle {
        width: 50px;
        height: 50px;
    }
    
    .footer-logo-circle {
        width: 70px;
        height: 70px;
    }
    
    .logo-circle {
        width: 120px;
        height: 120px;
    }
    
    .preloader-logo {
        width: 120px;
        height: 120px;
    }
}

/* ========================================
   LOGO HOVER EFEKTLERİ
======================================== */

/* Navigation Logo Hover */
.nav-logo {
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: translateY(-2px);
}

/* Footer Logo Hover */
.footer-logo {
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.05);
}

/* ========================================
   LOGO PERFORMANCE OPTİMİZASYONU
======================================== */

/* Logo görsellerini optimize et */
.preloader-logo,
.nav-logo-img,
.footer-logo-img {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .preloader-logo,
    .nav-logo-img,
    .footer-logo-img {
        animation: none !important;
        transition: none !important;
    }
    
    @keyframes logoPulse {
        0%, 100% { 
            transform: scale(1);
        }
    }
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, #343a40 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: all 0.8s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    color: var(--white);
}

.logo-circle {
    width: 120px;
    height: 120px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: logoPulse 2s infinite;
}

.logo-text {
    text-align: center;
    color: var(--white);
}

.logo-lav {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 2px;
}

.logo-tantuni {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    opacity: 0.9;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin: 2rem auto 1rem;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: var(--primary-gradient);
    width: 0;
    animation: loading 3s ease-out forwards;
}

.loading-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

@keyframes loading {
    to { width: 100%; }
}

/* ========================================
   NAVIGATION
======================================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all var(--transition);
    border-bottom: 1px solid rgba(229, 62, 62, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.nav-logo-circle {
    width: 160px;
    height: 400px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo-text {
    text-align: center;
    color: var(--white);
}

.nav-lav {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
}

.nav-tantuni {
    font-family: var(--font-display);
    font-size: 6px;
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--secondary-dark);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-red);
}

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

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

.reservation-btn {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.reservation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(229, 62, 62, 0.4);
}

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--secondary-dark);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 3px;
}

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

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

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

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

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 52, 54, 0.8) 0%, rgba(229, 62, 62, 0.3) 50%, rgba(255, 107, 53, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-main {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.title-line {
    display: block;
}

.lav-text {
    color: var(--white);
    margin-right: 1rem;
}

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

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-primary {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(229, 62, 62, 0.4);
}

.cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   HERO VISUAL (Simplified)
======================================== */

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-visual {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
}

.tantuni-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 40px rgba(229, 62, 62, 0.6);
    animation: imageFloat 4s ease-in-out infinite;
}

.image-glow {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #e53e3e, #ff6b35, #ffa726, #ff8c42, #e53e3e);
    animation: rotateGlow 8s linear infinite;
    z-index: -1;
    opacity: 0.8;
    filter: blur(10px);
}

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

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================
   SECTION STYLES
======================================== */

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--secondary-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

/* ========================================
   ABOUT SECTION
======================================== */

.about-section {
    padding: 120px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-text .section-badge,
.about-text .section-title,
.about-text .section-subtitle {
    text-align: left;
    margin-left: 0;
}

.story-text p {
    font-size: 16px;
    color: var(--secondary-light);
    line-height: 1.8;
    margin: 2rem 0;
}

.achievement-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-100);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-red);
    transition: var(--transition);
}

.achievement-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.achievement-item i {
    font-size: 2rem;
    color: var(--primary-red);
    flex-shrink: 0;
}

.achievement-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-dark);
    margin-bottom: 0.5rem;
}

.achievement-item p {
    font-size: 14px;
    color: var(--secondary-light);
}

.about-visual {
    position: relative;
}

.chef-showcase {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.chef-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.chef-showcase:hover .chef-image {
    transform: scale(1.05);
}

.chef-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.8) 0%, rgba(255, 107, 53, 0.6) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.chef-showcase:hover .chef-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 30px;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.play-button:hover {
    background: var(--white);
    transform: scale(1.1);
}

.chef-info {
    text-align: center;
    color: var(--white);
}

.chef-info h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.chef-info p {
    font-size: 16px;
    opacity: 0.9;
}

.experience-counter {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--primary-red);
}

.counter-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-red);
    display: block;
    line-height: 1;
}

.counter-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary-dark);
    letter-spacing: 1px;
}

/* ========================================
   MENU SECTION
======================================== */

.menu-section {
    padding: 120px 0;
    background: var(--gray-100);
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.category-btn {
    background: var(--white);
    border: 2px solid var(--gray-200);
    color: var(--secondary-light);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
}

.category-btn.active,
.category-btn:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.menu-content {
    position: relative;
}

.menu-category {
    display: none;
}

.menu-category.active {
    display: block;
}

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

.menu-item {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-red);
}

.menu-item.premium {
    border: 2px solid var(--primary-red);
}

.menu-item.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    z-index: 2;
}

.item-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 3;
    box-shadow: var(--shadow);
}

.item-badge.chef-special {
    background: linear-gradient(135deg, #f1c40f, #e67e22);
    color: var(--secondary-dark);
}

.item-badge.spicy {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.item-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.item-content {
    padding: 2rem;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.item-header h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-dark);
    line-height: 1.2;
    flex: 1;
}

.price {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.item-description {
    color: var(--secondary-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 14px;
}

.item-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 12px;
    color: var(--secondary-light);
    background: var(--gray-100);
    padding: 4px 8px;
    border-radius: 6px;
}

.feature i {
    color: var(--primary-red);
}

.add-to-cart {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
    font-size: 14px;
}

.add-to-cart:hover {
    background: linear-gradient(135deg, #d63031, #e55039);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

.gallery-section {
    padding: 120px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    background: var(--gray-200);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

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

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.8) 0%, rgba(255, 107, 53, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

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

.overlay-content {
    text-align: center;
    color: var(--white);
    padding: 1rem;
}

.overlay-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.view-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    margin: 0 auto;
    font-size: 18px;
}

.view-btn:hover {
    background: var(--white);
    color: var(--primary-red);
    transform: scale(1.1);
}

/* ========================================
   CONTACT SECTION
======================================== */

.contact-section {
    padding: 120px 0;
    background: var(--gray-100);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.contact-info .section-badge,
.contact-info .section-title {
    text-align: left;
    margin-left: 0;
}

.contact-details {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius);
    transition: var(--transition);
    border-left: 4px solid var(--primary-red);
}

.contact-item:hover {
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-red);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-dark);
    margin-bottom: 0.5rem;
}

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

.contact-form-section {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-form {
    padding: 3rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary-dark);
    margin-bottom: 0.5rem;
}

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

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--gray-100);
    color: var(--secondary-dark);
    margin-bottom: 1.5rem;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-red);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.submit-btn {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    padding: 18px 30px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
    width: 100%;
}

/* ... (önceki CSS kodları devam ediyor) ... */

.submit-btn:hover {
    background: linear-gradient(135deg, #d63031, #e55039);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(229, 62, 62, 0.4);
}

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

.footer {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, #343a40 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
}

.footer-content {
    padding: 80px 0 40px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-circle {
    width: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-text {
    text-align: center;
    color: var(--white);
}

.footer-lav {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
}

.footer-tantuni {
    font-family: var(--font-display);
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 2px;
    opacity: 0.9;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 14px;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    grid-column: 2 / -1;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-gradient);
}

.footer-column ul {
    list-style: none;
    display: grid;
    gap: 0.8rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column a:hover {
    color: var(--primary-orange);
}

.footer-column a i {
    width: 16px;
    color: var(--primary-red);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* ========================================
   BACK TO TOP
======================================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow);
}

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

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(229, 62, 62, 0.4);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 992px) {
    .hamburger { display: flex; }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: left 0.4s ease;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 1.5rem;
        z-index: 999;
    }
    
    .nav-menu.active { left: 0; }
    .nav-cta { display: none; }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-text .section-badge,
    .about-text .section-title,
    .contact-info .section-badge,
    .contact-info .section-title {
        text-align: center;
    }
    
    .menu-grid { grid-template-columns: 1fr; }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        grid-column: 1;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .main-visual {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .nav-container { padding: 0 1rem; }
    
    .hero-title { font-size: clamp(2rem, 6vw, 3.5rem); }
    
    .section-title { font-size: clamp(2rem, 5vw, 3rem); }
    
    .menu-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .category-btn {
        width: 250px;
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    
    .form-row { grid-template-columns: 1fr; }
    
    .footer-links { grid-template-columns: 1fr; }
    
    .main-visual {
        width: 200px;
        height: 200px;
    }
    
    .experience-counter {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: clamp(1.8rem, 5vw, 2.8rem); }
    
    .section-title { font-size: clamp(1.8rem, 4vw, 2.5rem); }
    
    .item-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-form { padding: 2rem; }
    
    .main-visual {
        width: 180px;
        height: 180px;
    }
}

/* ========================================
   PERFORMANCE & ACCESSIBILITY
======================================== */

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

*:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

::selection {
    background: rgba(229, 62, 62, 0.3);
    color: var(--secondary-dark);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-200);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #d63031, #e55039);
}