/* Premium Luxury Restaurant Design */

/* Google Fonts - Premium Typography */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');

:root {
    /* Premium Color Palette */
    --gold-primary: #D4AF37;
    --gold-light: #E8D5A3;
    --gold-dark: #B8951F;
    --platinum: #E5E4E2;
    --charcoal: #1A1A1A;
    --charcoal-light: #2C2C2C;
    --charcoal-lighter: #3A3A3A;
    --ivory: #F5F5F0;
    --cream: #FAF9F6;
    --text-primary: #FFFFFF;
    --text-secondary: #E0E0E0;
    --text-muted: #B0B0B0;
    
    /* Premium Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    --shadow-gold-lg: 0 8px 40px rgba(212, 175, 55, 0.4);
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-elegant: 'Cormorant Garamond', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--charcoal);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    text-align: center;
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
    width: 100%;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    box-shadow: 0 0 10px var(--gold-primary);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

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

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

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Premium Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

header.scrolled {
    padding: 0.8rem 0;
    background: rgba(26, 26, 26, 0.98);
    box-shadow: var(--shadow-lg);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo-img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
    transition: var(--transition-normal);
}

.logo-img:hover {
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.8));
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    list-style: none;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    position: relative;
    transition: var(--transition-normal);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition-normal);
    box-shadow: 0 0 10px var(--gold-primary);
}

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

.nav-links a:hover::before,
.nav-links a.active::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-links a.btn-login {
    border: 2px solid var(--gold-primary);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    background: transparent;
    color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.nav-links a.btn-login:hover {
    background: var(--gold-primary);
    color: var(--charcoal);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.nav-links a.btn-login::before {
    display: none;
}

/* Hero Section - Premium */
.hero {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.65) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: var(--spacing-lg);
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: var(--shadow-gold-lg);
    border-radius: 10px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-family: var(--font-elegant);
    font-size: clamp(1rem, 2vw, 1.5rem);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
    color: var(--gold-light);
    font-weight: 300;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.hero-content h1 {
    margin-bottom: var(--spacing-md);
    color: var(--gold-primary);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.btn-gold {
    display: inline-block;
    padding: 1rem 3rem;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-top: var(--spacing-md);
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
    background: transparent;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-primary);
    transition: var(--transition-slow);
    z-index: -1;
}

.btn-gold:hover {
    color: var(--charcoal);
    box-shadow: var(--shadow-gold-lg);
    transform: translateY(-3px);
}

.btn-gold:hover::before {
    left: 0;
}

/* Sections */
section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    padding: 0 var(--spacing-md);
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: var(--spacing-md);
    font-style: italic;
}

/* About Section */
.about-section {
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    box-shadow: 0 0 20px var(--gold-primary);
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.25rem;
    line-height: 2;
    color: var(--text-secondary);
    font-family: var(--font-elegant);
    font-style: italic;
}

/* Menu Section */
#menu {
    background: var(--charcoal-light);
    position: relative;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    padding: 0 var(--spacing-md);
}

.menu-cat-btn {
    background: transparent;
    border: 2px solid var(--charcoal-lighter);
    color: var(--text-muted);
    padding: 0.8rem 2rem;
    cursor: pointer;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-normal);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.menu-cat-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-primary);
    transition: var(--transition-normal);
    z-index: -1;
}

.menu-cat-btn:hover,
.menu-cat-btn.active {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.menu-cat-btn.active::before {
    left: 0;
    opacity: 0.1;
}

.menu-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: var(--spacing-md);
    padding: 0 var(--spacing-md);
}

.menu-item {
    background: var(--charcoal);
    border: 1px solid var(--charcoal-lighter);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    opacity: 0;
    transition: var(--transition-normal);
}

.menu-item:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold-lg);
}

.menu-item:hover::before {
    opacity: 1;
}

.menu-item-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.menu-item-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: var(--transition-normal);
}

.menu-item:hover .menu-item-img::after {
    opacity: 1;
}

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

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

.menu-item-content {
    padding: var(--spacing-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px dashed rgba(212, 175, 55, 0.3);
}

.menu-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.menu-price {
    font-size: 1.4rem;
    color: var(--gold-primary);
    font-weight: 700;
    font-family: var(--font-display);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.menu-desc {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: auto;
}

/* Simple Menu Item (No Image) */
.menu-item[style*="border-left"] {
    border-left: 4px solid var(--gold-primary) !important;
    padding-left: var(--spacing-md);
}

/* Contact Section */
#contact {
    background: linear-gradient(180deg, var(--charcoal-light) 0%, var(--charcoal) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.contact-info-box {
    padding: var(--spacing-md);
    background: var(--charcoal);
    border: 1px solid var(--charcoal-lighter);
    text-align: center;
    margin-bottom: var(--spacing-md);
    border-radius: 8px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

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

.contact-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.contact-info-box h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

.contact-info-box p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--charcoal-lighter);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    filter: grayscale(30%) contrast(110%);
}

/* Footer - Premium */
footer {
    background: #000;
    padding: var(--spacing-lg) 0 var(--spacing-md);
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    box-shadow: 0 0 20px var(--gold-primary);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.footer-social {
    margin-bottom: var(--spacing-md);
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

.footer-social a {
    color: var(--text-secondary);
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--charcoal-lighter);
    border-radius: 50%;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    color: var(--gold-primary);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
    transform: translateY(-5px) scale(1.1);
}

/* Footer Delivery Services */
.footer-delivery {
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-md) 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.delivery-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gold-primary);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.delivery-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.delivery-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    background: rgba(44, 44, 44, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    transition: all var(--transition-normal);
    min-width: 150px;
    height: 70px;
    position: relative;
    overflow: hidden;
}

.delivery-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.delivery-logo:hover::before {
    left: 100%;
}

.delivery-logo:hover {
    border-color: var(--gold-primary);
    background: rgba(44, 44, 44, 0.8);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.delivery-logo .logo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.delivery-logo .logo-text-trendyol,
.delivery-logo .logo-text-go,
.delivery-logo .logo-text-getir,
.delivery-logo .logo-text-yemeksepeti {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: var(--transition-normal);
}

/* Trendyol Go Logo */
.trendyol-logo .logo-text-trendyol {
    color: #FF6000;
    font-size: 1.3rem;
}

.trendyol-logo .logo-text-go {
    color: #FF6000;
    font-size: 0.9rem;
    margin-top: -5px;
}

.trendyol-logo:hover {
    border-color: #FF6000;
    box-shadow: 0 4px 20px rgba(255, 96, 0, 0.4);
}

.trendyol-logo:hover .logo-text-trendyol,
.trendyol-logo:hover .logo-text-go {
    color: #FF6000;
    text-shadow: 0 0 10px rgba(255, 96, 0, 0.5);
}

/* Getir Logo */
.getir-logo .logo-text-getir {
    color: #5D3EBC;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: lowercase;
}

.getir-logo:hover {
    border-color: #5D3EBC;
    box-shadow: 0 4px 20px rgba(93, 62, 188, 0.4);
}

.getir-logo:hover .logo-text-getir {
    color: #5D3EBC;
    text-shadow: 0 0 10px rgba(93, 62, 188, 0.5);
}

/* Yemek Sepeti Logo */
.yemeksepeti-logo .logo-text-yemeksepeti {
    color: #FFCC00;
    font-size: 1.1rem;
    font-weight: 700;
}

.yemeksepeti-logo:hover {
    border-color: #FFCC00;
    box-shadow: 0 4px 20px rgba(255, 204, 0, 0.4);
}

.yemeksepeti-logo:hover .logo-text-yemeksepeti {
    color: #FFCC00;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid var(--charcoal-lighter);
    padding-top: var(--spacing-md);
    margin-top: var(--spacing-md);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .menu-container {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: var(--spacing-sm);
    }
    
    .nav-links a {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
    
    .nav-links a.btn-login {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .logo-img {
        max-height: 45px;
    }
    
    .menu-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .hero-content {
        padding: var(--spacing-md);
    }
    
    .menu-categories {
        gap: 0.5rem;
    }
    
    .menu-cat-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
    }
    
    .delivery-logos {
        gap: var(--spacing-sm);
    }
    
    .delivery-logo {
        min-width: 120px;
        height: 60px;
        padding: 10px 15px;
    }
    
    .delivery-logo .logo-text-trendyol,
    .delivery-logo .logo-text-go,
    .delivery-logo .logo-text-getir,
    .delivery-logo .logo-text-yemeksepeti {
        font-size: 0.9rem;
    }
    
    .trendyol-logo .logo-text-trendyol {
        font-size: 1.1rem;
    }
    
    .getir-logo .logo-text-getir {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    nav {
        flex-wrap: wrap;
    }
    
    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: var(--spacing-sm);
    }
}

/* Smooth Scroll Animation */
@media (prefers-reduced-motion: no-preference) {
    .menu-item-wrapper {
        animation: fadeIn 0.6s ease;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Animation */
.menu-item-wrapper {
    transition: var(--transition-normal);
}

.menu-item-wrapper[style*="display: none"] {
    display: none !important;
}
