/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c41e3a;
    --secondary-color: #8b4513;
    --accent-color: #fff8e7;
    --warm-red: #d32f2f;
    --warm-orange: #ff6f00;
    --fresh-green: #2e7d32;
    --golden: #f9a825;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* Header */
.header {
    background: linear-gradient(135deg, var(--warm-red) 0%, var(--warm-orange) 100%);
    color: var(--white);
    padding: 1.5rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
    position: relative;
}

.nav a:hover {
    opacity: 0.8;
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(196, 30, 58, 0.85), rgba(255, 111, 0, 0.85)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23c41e3a" width="1200" height="600"/></svg>');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 8rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--warm-red);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--warm-red), var(--warm-orange));
    border-radius: 2px;
}

/* Menu Section */
.menu-section {
    background: linear-gradient(to bottom, #fff8e7 0%, #ffe0b2 100%);
}

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

.menu-category {
    background-color: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--warm-red);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.menu-category-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--warm-red);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--golden);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.menu-category:nth-child(1) .menu-category-title::before { content: '🍲'; }
.menu-category:nth-child(2) .menu-category-title::before { content: '🥪'; }
.menu-category:nth-child(3) .menu-category-title::before { content: '🍚'; }
.menu-category:nth-child(4) .menu-category-title::before { content: '🥟'; }
.menu-category:nth-child(5) .menu-category-title::before { content: '🥗'; }
.menu-category:nth-child(6) .menu-category-title::before { content: '🍖'; }
.menu-category:nth-child(7) .menu-category-title::before { content: '🥤'; }

.menu-item {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    color: var(--warm-red);
    padding-left: 10px;
}

.menu-item::before {
    content: '•';
    color: var(--warm-orange);
    font-weight: bold;
    margin-right: 0.5rem;
}

.menu-signature {
    text-align: center;
    margin-top: 3rem;
    font-size: 2rem;
    color: var(--warm-red);
    font-style: italic;
    font-weight: 600;
    padding: 1rem;
}

/* Address Section */
.address-section {
    background-color: var(--white);
}

.address-content {
    max-width: 800px;
    margin: 0 auto;
}

.address-info {
    background: linear-gradient(135deg, #fff8e7 0%, #ffe0b2 100%);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 2px solid var(--golden);
}

.address-info h3 {
    font-size: 1.8rem;
    color: var(--warm-red);
    margin-bottom: 2rem;
    text-align: center;
}

.address-text {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.address-text strong {
    color: var(--warm-red);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Order Section */
.order-section {
    background: linear-gradient(135deg, #fff8e7 0%, #ffe0b2 100%);
}

.order-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.order-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.order-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 3rem;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    min-width: 200px;
}

.order-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.order-btn span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.order-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.order-btn:hover .order-logo {
    transform: scale(1.1);
}

/* Yemeksepeti Logo */
.yemeksepeti:hover {
    background-color: #FF6600;
}

.yemeksepeti:hover span {
    color: var(--white);
}

/* Getir Logo */
.getir:hover {
    background-color: #5D3EBC;
}

.getir:hover span {
    color: var(--white);
}

/* Trendyol Logo */
.trendyol:hover {
    background-color: #F27A1A;
}

.trendyol:hover span {
    color: var(--white);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--warm-red) 0%, var(--warm-orange) 100%);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav {
        gap: 1rem;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .order-buttons {
        flex-direction: column;
        align-items: center;
    }

    .order-btn {
        width: 100%;
        max-width: 300px;
    }

    .address-info {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }

    .hero {
        padding: 5rem 0;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    section {
        padding: 3rem 0;
    }
}

