/* === RESET & VARIABLES === */
:root {
    /* Renk Paleti */
    --color-bg: #7a1a23; /* Yeni Bordo */
    --color-bg-dark: #4e1016; /* Bordonun koyu tonu */
    --color-gold: #f2e1d1; /* Yeni Krem/Sarı */
    --color-cream: #fff5ea; 
    --color-text-light: #ffffff;
    --color-text-muted: #e6cdd0; 
    
    /* Typography - Estetik & Minimal */
    --font-heading: 'Tenor Sans', sans-serif;
    --font-body: 'Manrope', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    
    /* Transitions */
    --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-light);
    font-family: var(--font-body);
    overflow-x: hidden;
    min-height: 100dvh; 
    font-weight: 300; 
}

/* === NOISE TEXTURE === */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
}

/* === LANDING SCREEN === */
.landing {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: radial-gradient(circle at center, var(--color-bg), var(--color-bg-dark));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
    padding: var(--spacing-lg);
    text-align: center;
    transition: transform 0.8s var(--ease-out), opacity 0.6s ease;
}

.landing.slide-up {
    transform: translateY(-100%);
    pointer-events: none;
}

.landing-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 3rem; 
}

.brand-logo {
    animation: breathe 4s ease-in-out infinite;
    max-width: 80%;
    display: flex;
    justify-content: center;
}

.logo-img {
    width: 100%;
    max-width: 280px; 
    height: auto;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.1));
}

@keyframes breathe {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.03); opacity: 0.9; }
}

/* === YENİ PREMIUM BUTON === */
.premium-btn {
    position: relative;
    background: rgba(242, 225, 209, 0.1); /* Yeni krem renginin şeffaf hali */
    border: 1px solid rgba(242, 225, 209, 0.3);
    padding: 1.2rem 3rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.5s;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px; /* Tam yuvarlak köşeler */
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.premium-btn .btn-text {
    position: relative;
    z-index: 2;
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.3s ease;
}

.premium-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--color-gold);
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.premium-btn:active {
    transform: scale(0.96);
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.3);
}

.premium-btn:active::before {
    width: 100%;
}

.premium-btn:active .btn-text {
    color: var(--color-bg);
}

.premium-btn .btn-border {
    display: none;
}

.landing-footer {
    position: absolute;
    bottom: 3rem;
    width: 100%;
    text-align: center;
}

.landing-footer p {
    font-family: var(--font-heading); 
    color: var(--color-gold);
    font-size: 1.2rem;
    opacity: 0.9;
    letter-spacing: 2px;
    text-transform: uppercase; 
}

/* === MENU SCREEN === */
.menu-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: var(--color-bg);
    padding-bottom: 4rem;
    opacity: 0; 
}

.hidden {
    display: none;
}

/* Glass Header */
.menu-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--spacing-sm);
    z-index: 50;
    transition: all 0.3s ease;
}

.glass-effect {
    background: rgba(122, 26, 35, 0.7); /* Yeni bordo ile şeffaflık */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-logo-container {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.header-logo-img {
    height: 40px; 
    width: auto;
}

/* Hero Section */
.menu-hero {
    position: relative;
    height: 35vh;
    width: 100%;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--color-bg) 5%, transparent 100%);
    z-index: 1;
}

.hero-text {
    position: absolute;
    bottom: 10%;
    left: var(--spacing-sm);
    z-index: 2;
}

.hero-text h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem; 
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    opacity: 0.9;
    font-weight: 300; 
    letter-spacing: 0.5px;
}

/* Category Nav */
.category-nav {
    position: sticky;
    top: 70px; 
    z-index: 40;
    background: var(--color-bg);
    padding: 1rem 0;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.category-list {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    padding: 0 var(--spacing-sm);
    list-style: none;
    scrollbar-width: none; 
}

.category-list::-webkit-scrollbar {
    display: none;
}

.category-list li {
    white-space: nowrap;
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-size: 0.85rem; 
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px; 
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-list li.active {
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
    border-color: var(--color-gold);
    font-weight: 600;
}

/* Product Grid */
.products-wrapper {
    padding: 0 var(--spacing-sm);
    display: grid;
    gap: var(--spacing-md);
}

.product-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02); 
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: var(--spacing-sm);
    border-radius: 8px; 
    position: relative;
    overflow: hidden;
    opacity: 0;
}

.product-info {
    flex: 1;
    padding-right: 1rem;
}

.product-name {
    font-family: var(--font-heading); 
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.3;
    color: var(--color-cream);
    margin-bottom: 0.4rem;
    letter-spacing: 0.5px;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0.8rem;
    line-height: 1.5;
    font-weight: 300;
}

.product-price {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--color-gold);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.product-img-container {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(242, 225, 209, 0.3); /* Yeni Krem */
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.product-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1); 
}

.menu-footer {
    text-align: center;
    padding: 3rem 0;
    color: var(--color-text-muted);
    font-size: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeIn {
    to { opacity: 1; }
}
