/* 
   Tombik Turkish Kitchen Design System 
   Palette: Warm, Appetizing, Premium
*/

:root {
    /* Day Theme (Boho / Organic High-End) */
    --bg-body: #F9F7F2;
    /* Warm Cream / Eggshell */
    --bg-surface: #FFFFFF;
    /* Pure White for cards */
    --bg-overlay: rgba(255, 255, 255, 0.95);
    /* Light frost */

    --display-font-color: #3D342B;
    /* Deep Warm Brown */
    --text-body-color: #5D5448;
    /* Soft Brown-Grey */

    --primary-color: #C25B42;
    /* Terracotta / Burnt Earth */
    --secondary-color: #798D7F;
    /* Sage Green */
    --accent-color: #E0A458;
    /* Muted Gold / Straw */

    --border-light: #EBE5DC;
    --shadow: 0 10px 30px rgba(61, 52, 43, 0.08);
    /* Soft warm shadow */

    --hero-tint: rgba(61, 52, 43, 0.4);
    /* Brown tint for hero */

    --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Smooth luxurious friction */

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

body.dark-mode {
    /* Night Theme (Midnight Luxury) */
    --bg-body: #121212;
    /* True Black */
    --bg-surface: #1E1E1E;
    /* Dark Grey surface */
    --bg-overlay: rgba(18, 18, 18, 0.95);
    /* Dark frost */

    --display-font-color: #F5F1E8;
    /* Off-white / Parchment */
    --text-body-color: #B0B0B0;
    /* Silver Grey */

    --primary-color: #D9453A;
    /* Rich Crimson (glowing) */
    --secondary-color: #1ABC9C;
    /* Vibrant Turquoise (pops in dark) */
    --accent-color: #FFD700;
    /* Gold Leaf */

    --border-light: #333333;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    /* Deep shadow */

    --hero-tint: rgba(0, 0, 0, 0.7);
    /* Darker tint for hero */
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-body-color);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

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

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

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

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--text-dark);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-overlay);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow);
    padding: 15px 0;
    transition: background-color 0.5s ease;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--display-font-color);
}

.logo .accent {
    color: var(--primary-color);
}

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

.nav-links li a {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--hero-tint);
    z-index: 1;
}

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

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

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--display-font-color);
    transition: var(--transition);
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    color: var(--primary-color);
    transform: rotate(15deg);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: var(--display-font-color);
    margin: 5px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero.jpg?v=2');
    /* Placeholder image of Kebab/Turkish food */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--hero-tint);
    z-index: 1;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title .highlight {
    color: var(--secondary-color);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Features */
.features {
    padding: 80px 0;
    background-color: white;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: center;
}

.feature-card {
    padding: 30px;
    border-radius: 15px;
    background: var(--bg-surface);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

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

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--display-font-color);
}

/* Menu Section */
.menu {
    padding: 100px 0;
    background-color: var(--bg-body);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--display-font-color);
}

.section-subtitle {
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-body-color);
    font-size: 1.1rem;
    opacity: 0.8;
}

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

.menu-item {
    background: var(--bg-surface);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.menu-item:hover {
    border-color: var(--secondary-color);
    border: 1px solid var(--border-light);
}

.menu-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

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

.menu-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.menu-item-content {
    padding: 25px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
    border-bottom: 1px dashed var(--border-light);
    padding-bottom: 10px;
}

.menu-item-title {
    font-size: 1.3rem;
    color: var(--display-font-color);
    font-family: var(--font-heading);
}

.menu-item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.menu-item-desc {
    color: var(--text-body-color);
    font-size: 0.95rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--bg-surface);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-body-color);
}

.about-image-placeholder {
    flex: 1;
    height: 400px;
    background-color: var(--bg-body);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.img-box {
    font-size: 5rem;
    color: var(--border-light);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--bg-surface);
    color: var(--text-body-color);
    border-top: 1px solid var(--border-light);
}

.contact .section-title {
    color: var(--display-font-color);
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
    gap: 50px;
}

.contact-info,
.schedule-box {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 20px;
    width: 30px;
    text-align: center;
}

.social-links {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--bg-body);
    color: var(--display-font-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.schedule-box {
    background: var(--bg-body);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
}

.schedule-box h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.schedule-box ul li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 10px;
    color: var(--text-body-color);
}

.footer {
    padding: 30px 0;
    background-color: var(--bg-body);
    text-align: center;
    color: var(--text-body-color);
    font-size: 0.9rem;
    border-top: 1px solid var(--border-light);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero-title {
        font-size: 3rem;
    }

    .about-container {
        flex-direction: column;
    }

    .contact-wrapper {
        flex-direction: column;
    }
}

.menu-img-wrapper {
    overflow: hidden;
}

.about-img-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.about-img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}