:root {
    /* Colors */
    --primary: #f05a22;      /* Appetizing Orange/Red */
    --primary-hover: #d64a18;
    --secondary: #ffb703;    /* Yellow/Gold */
    --text-main: #2b2b2b;
    --text-muted: #666666;
    --bg-main: #ffffff;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 48px rgba(240, 90, 34, 0.15);
    
    /* Typography */
    --font-main: 'Outfit', sans-serif;
    
    /* Transitions - Changed from 'all' to specific properties to avoid GSAP conflicts */
    --transition-colors: background-color 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-colors);
}

ul {
    list-style: none;
}

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

.bg-light {
    background-color: var(--bg-light);
}

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

/* Glassmorphism Classes */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transform: translateZ(0); /* Hardware acceleration */
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-colors), transform 0.3s ease;
    border: 2px solid transparent;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 14px 32px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(240, 90, 34, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 90, 34, 0.4);
    color: var(--white);
}

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

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* QR Menu Button */
.btn-qr {
    background-color: #1a1a2e;
    color: var(--white);
    border-color: transparent;
    font-size: 0.88rem;
    padding: 9px 18px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}
.btn-qr:hover {
    background-color: #2d2d4e;
    transform: translateY(-2px);
    color: var(--white);
    border-color: transparent;
}

/* Header & Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition-colors);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.brand-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

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

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    gap: 10px; /* Butonlar arası mesafeyi biraz daralttık */
    align-items: center;
}

.nav-actions .btn {
    padding: 8px 14px; /* Butonların genişliğini daraltmak için padding düşürüldü */
    font-size: 0.85rem;
    white-space: nowrap;
}

/* Uber Eats / TGO Yemek Özel Buton Stili */
.btn-ubereats {
    background-color: #06C167; /* Uber Eats Yeşil Rengi */
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(6, 193, 103, 0.25);
}

.btn-ubereats:hover {
    background-color: #05a357;
    transform: translateY(-2px);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(6, 193, 103, 0.35);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: #fafafa;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50%;
    height: 70%;
    background: radial-gradient(circle, rgba(255, 183, 3, 0.15) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(240, 90, 34, 0.1) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 20px 0;
}

.text-highlight {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 500px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(255, 183, 3, 0.2);
    color: #cc8e00;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-image-wrapper {
    position: relative;
}

.image-card {
    border-radius: 30px;
    padding: 10px;
    transform: rotate(2deg);
    transition: var(--transition-colors), transform 0.3s ease;
}

.image-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    z-index: 2;
}

.floating-badge i {
    color: var(--primary);
    font-size: 1.2rem;
}

.badge-1 {
    top: 40px;
    right: -20px;
}

.badge-2 {
    bottom: 50px;
    left: -30px;
}

/* Sections Global */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-main);
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.rounded-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.feature-list {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.feature-list i {
    color: var(--secondary);
    font-size: 1.2rem;
}

/* Menu Section */
.menu-category { margin-bottom: 60px; }

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

.menu-card {
    overflow: hidden;
    transition: var(--transition-colors), transform 0.3s ease;
    will-change: transform;
    transform: translateZ(0); /* Hardware acceleration */
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.menu-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.menu-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-img-wrapper img {
    transform: scale(1.08);
}

.tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.menu-info {
    padding: 25px;
}

.menu-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.menu-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    min-height: 45px;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.info-items {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    transition: var(--transition-colors), transform 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
    border-color: var(--primary);
}

.info-item .icon {
    width: 60px;
    height: 60px;
    background-color: rgba(240, 90, 34, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-muted);
}

.info-item a:hover {
    color: var(--primary);
}

.map-wrapper {
    padding: 10px;
    height: 100%;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-brand .footer-brand-logo {
    height: 160px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.footer-brand p {
    color: #aaaaaa;
    max-width: 350px;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #aaaaaa;
}

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

.footer-bottom {
    background-color: #111111;
    padding: 20px 0;
    text-align: center;
    color: #888888;
    font-size: 0.9rem;
}

/* Fallback Animations for non-GSAP pages */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* ===== REVIEWS SLIDER ===== */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a0a00 100%);
    overflow: hidden;
}
.reviews-section .section-label {
    display: inline-block;
    background: rgba(240,90,34,0.15);
    color: var(--primary);
    border: 1px solid rgba(240,90,34,0.3);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}
.reviews-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 50px;
}
.reviews-section h2 span { color: var(--primary); }

.reviews-track-wrapper {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.reviews-track {
    display: flex;
    gap: 24px;
    animation: reviewsMarquee 30s linear infinite;
    width: max-content;
}

.reviews-track:hover {
    animation-play-state: paused;
}

@keyframes reviewsMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.review-card {
    width: 320px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.review-card:hover {
    border-color: rgba(240,90,34,0.4);
    transform: translateY(-4px);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}
.review-meta h4 { color: #ffffff; font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.review-meta span { color: rgba(255,255,255,0.45); font-size: 0.78rem; }
.review-source { display: flex; align-items: center; gap: 5px; margin-top: 3px; }
.review-source span { color: rgba(255,255,255,0.5); font-size: 0.75rem; }
.review-stars { color: #ffb703; font-size: 0.85rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.65; }

@media (max-width: 768px) {
    .nav-links, .nav-actions {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }

    .mobile-menu-active .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 140px;
        left: 0;
        width: 100%;
        background: transparent;
        padding: 10px 0;
        align-items: center;
        gap: 20px;
        z-index: 1001;
    }

    /* Mobil hamburger açıldığında butonların düzeni */
    .mobile-menu-active .nav-actions {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 360px; /* Linklerin altına gelecek şekilde hizalandı */
        left: 0;
        width: 100%;
        padding: 10px 20px;
        align-items: center;
        gap: 12px;
        z-index: 1001;
    }

    .mobile-menu-active .nav-actions .btn {
        width: 80%; /* Mobilde butonlar tam/geniş oturur */
        max-width: 280px;
        text-align: center;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container, .about-container, .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero {
        padding-top: 220px;
    }

    .hero-content {
        text-align: center;
        order: 2;
    }
    
    .hero-image-wrapper {
        order: 1;
        max-width: 80%;
        margin: 0 auto 30px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        margin: 0 auto 30px;
    }

    .badge-1 { right: 0; top: 10px; font-size: 0.8rem; padding: 8px 12px; }
    .badge-2 { left: 0; bottom: 10px; font-size: 0.8rem; padding: 8px 12px; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }

    .header .container {
        position: relative;
    }

    .header.mobile-menu-active {
        background: rgba(255, 255, 255, 0.85) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        height: 100vh !important;
        align-items: flex-start;
        box-shadow: none !important;
    }

    .mobile-menu-active .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 160px;
        left: 0;
        width: 100%;
        background: transparent;
        padding: 20px 0;
        box-shadow: none;
        align-items: center;
        gap: 25px;
        z-index: 1001;
    }
    
    .mobile-menu-active .nav-links a {
        font-size: 1.5rem;
        font-weight: 600;
    }
    
    .mobile-menu-active .nav-actions {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 420px;
        left: 0;
        width: 100%;
        background: transparent;
        padding: 20px 0;
        align-items: center;
        z-index: 1001;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a:hover {
        padding-left: 0;
        color: var(--primary);
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
}
