/* Lezzet Dünyası - Statische Website Styles */
/* Keine externen Abhängigkeiten */

@font-face {
    font-family: 'Manrope';
    src: local('Manrope'), local('Arial'), local('Helvetica');
    font-weight: 300 700;
    font-display: swap;
}

:root {
    --bg-default: #F9F6F0;
    --bg-surface: #F3EFE6;
    --primary: #B74A31;
    --primary-hover: #9C3E29;
    --secondary: #6B705C;
    --secondary-hover: #565A4A;
    --text-primary: #2A2624;
    --text-secondary: #5C5855;
    --text-accent: #B89C5A;
    --border-default: #E8DCCB;
    --white: #FFFFFF;
    --footer-bg: #2A2624;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-default);
    color: var(--text-primary);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 600;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 48px;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: inherit;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

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

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

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

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-default);
    color: var(--text-primary);
}

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

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn.full {
    width: 100%;
}

/* Overline */
.overline {
    display: block;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-accent);
    margin-bottom: 8px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 48px;
    }
}

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--text-accent);
    margin: 16px 0;
}

.section-divider.center {
    margin: 16px auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(249, 246, 240, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-default);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

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

.logo-text {
    font-family: Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
}

.nav-desktop {
    display: none;
    gap: 32px;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-desktop a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-desktop a:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    border: 1px solid var(--border-default);
    background: transparent;
    border-radius: 4px;
    cursor: pointer;
}

.lang-toggle:hover {
    border-color: var(--primary);
}

.lang-tr, .lang-de {
    font-weight: 600;
    color: var(--text-secondary);
}

.lang-tr.active, .lang-de.active {
    color: var(--primary);
}

.lang-divider {
    color: var(--border-default);
}

.order-btn-desktop {
    display: none;
}

@media (min-width: 768px) {
    .order-btn-desktop {
        display: inline-flex;
    }
}

.mobile-menu-btn {
    display: block;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg-default);
    z-index: 99;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-content {
    padding: 100px 24px 24px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
}

.mobile-nav a {
    padding: 16px 0;
    font-size: 20px;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 1px solid var(--border-default);
}

.mobile-order-btn {
    margin-top: 32px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-default) 0%, var(--bg-surface) 100%);
}

.hero-content {
    display: grid;
    gap: 48px;
    padding: 64px 0;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center;
    }
}

.hero-title {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 56px;
    }
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.hero-highlight {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-social {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.hero-social a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-default);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.hero-social a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hero-images {
    display: none;
}

@media (min-width: 768px) {
    .hero-images {
        display: grid;
        grid-template-columns: repeat(8, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 16px;
        height: 500px;
    }
}

.hero-img-main {
    grid-column: span 5;
    grid-row: span 2;
    border-radius: 8px;
    overflow: hidden;
}

.hero-img-side-top {
    grid-column: span 3;
    grid-row: span 1;
    border-radius: 8px;
    overflow: hidden;
}

.hero-img-side-bottom {
    grid-column: span 3;
    grid-row: span 2;
    border-radius: 8px;
    overflow: hidden;
}

.hero-img-bottom {
    grid-column: span 5;
    grid-row: span 1;
    border-radius: 8px;
    overflow: hidden;
}

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

/* Daily Specials */
.daily-specials {
    padding: 80px 0;
    background: var(--white);
}

.daily-specials-header {
    text-align: center;
    margin-bottom: 48px;
}

.daily-specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.daily-special-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.daily-special-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.daily-special-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(42, 38, 36, 0.9) 0%, transparent 100%);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.daily-special-info h3 {
    font-size: 24px;
}

.daily-special-info .price {
    font-family: Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-accent);
}

/* Social Feed */
.social-feed {
    padding: 80px 0;
    background: var(--bg-surface);
}

.social-feed-header {
    text-align: center;
    margin-bottom: 32px;
}

.social-links-header {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.social-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.social-link-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.social-link-btn.facebook {
    background: #1877f2;
    color: white;
}

.social-link-btn.tiktok {
    background: #000;
    color: white;
}

.social-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* About Section */
.about {
    padding: 96px 0;
    background: var(--bg-default);
}

.about-content {
    display: grid;
    gap: 64px;
}

@media (min-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.about-images {
    display: none;
}

@media (min-width: 768px) {
    .about-images {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

.about-img-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-img-col.offset {
    padding-top: 32px;
}

.about-img-small,
.about-img-large {
    border-radius: 8px;
    width: 100%;
    object-fit: cover;
}

.about-img-small {
    height: 200px;
}

.about-img-large {
    height: 280px;
}

.about-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 767px) {
    .about-highlights {
        grid-template-columns: 1fr;
    }
}

.highlight-card {
    text-align: center;
    padding: 24px 16px;
    background: var(--white);
    border: 1px solid var(--border-default);
    border-radius: 8px;
}

.highlight-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.highlight-card p {
    font-size: 14px;
    font-weight: 500;
}

/* Menu Section */
.menu-section {
    padding: 96px 0;
    background: var(--white);
}

.menu-header {
    text-align: center;
    margin-bottom: 48px;
}

.pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.pdf-link:hover {
    color: var(--primary-hover);
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.menu-category-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-default);
    border-radius: 12px;
    padding: 24px;
}

.menu-category-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.category-price {
    font-family: Georgia, serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.menu-category-card ul {
    list-style: none;
}

.menu-category-card li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-default);
    font-size: 14px;
}

.menu-category-card li:last-child {
    border-bottom: none;
}

/* Chef's Platter */
.chef-platter {
    background: var(--bg-surface);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid var(--border-default);
    margin-bottom: 48px;
}

.chef-platter-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 768px) {
    .chef-platter-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.chef-platter-text h3 {
    font-size: 32px;
    margin-bottom: 8px;
}

.chef-platter-text p {
    color: var(--text-secondary);
}

.chef-platter-prices {
    display: flex;
    gap: 16px;
}

.chef-price-card {
    text-align: center;
    padding: 24px 32px;
    background: var(--white);
    border: 1px solid var(--border-default);
    border-radius: 8px;
}

.chef-price-card .persons {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.chef-price-card .dishes {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.chef-price-card .price {
    font-family: Georgia, serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--primary);
}

/* Drinks Section */
.drinks-section {
    margin-top: 48px;
}

.section-subtitle {
    font-size: 28px;
    text-align: center;
    margin-bottom: 24px;
}

.drinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.drink-category {
    background: var(--bg-surface);
    border-radius: 12px;
    padding: 24px;
}

.drink-category h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.drink-category ul {
    list-style: none;
}

.drink-category li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-default);
    font-size: 14px;
}

.drink-category li:last-child {
    border-bottom: none;
}

.drink-category .free {
    color: var(--secondary);
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 96px 0;
    background: var(--bg-default);
}

.contact-content {
    display: grid;
    gap: 64px;
}

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-details {
    margin-top: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(183, 74, 49, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--bg-surface);
    padding: 32px;
    border-radius: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-default);
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
}

.success-message {
    margin-top: 24px;
    padding: 16px;
    background: #d4edda;
    color: #155724;
    border-radius: 8px;
    text-align: center;
}

/* Footer */
.footer {
    background: var(--footer-bg);
    color: var(--bg-default);
    padding: 64px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    padding-bottom: 48px;
}

.footer h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.footer h4 {
    font-size: 16px;
    margin-bottom: 16px;
}

.footer p {
    color: rgba(249, 246, 240, 0.7);
    margin-bottom: 8px;
}

.footer a {
    color: var(--text-accent);
    text-decoration: none;
    font-size: 14px;
}

.footer a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-default);
    transition: background-color 0.2s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(249, 246, 240, 0.5);
}

/* Price styling */
.price {
    font-family: Georgia, serif;
    font-weight: 600;
    color: var(--primary);
}
