body {
    font-family: "Indie Flower", cursive;
    background-color: #ffffff;
    color: #0f0c06;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 700px;
    margin: auto;
    padding: 20px;
    background: #fff;
    min-height: 100vh;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

.restaurant-name {
    font-size: 3em;
    color: #0f0c06;
    text-transform: lowercase;
    font-weight: 300;
    position: relative;
    display: inline-block;
    line-height: 1.1;
}

.section-title {
    font-size: 1.5em;
    color: #0f0c06;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
    margin-bottom: 20px;
    text-transform: lowercase;
}

.menu-list {
    list-style: none;
    padding-left: 0;
}

/* Ürünler arası dikey boşluk */
.menu-list li {
    margin-bottom: 12px;
}

.item-name {
    font-weight: bold;
    color: #8B4513;
    display: block;
    margin-bottom: 2px;
    text-transform: lowercase;
    line-height: 1.2;
}

.menu-list p {
    font-style: italic;
    font-size: 0.95em;
    color: #666;
    margin: 0;
    line-height: 1.3;
}

.note {
    font-size: 0.85em;
    color: #666;
    font-style: italic;
    text-align: center;
    margin-top: 40px;
}

.legend {
    text-align: center;
    margin-top: 10px;
    font-size: 0.9em;
    color: #8B4513;
}

.legend span {
    margin: 0 10px;
}

.volume-sizes {
    word-spacing: 15px;
}

.wine-title {
    color: #0f0c06;
    text-align: center;
}

/* Hero Section - Responsive */
.hero {
    height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    align-items: center;
    width: 50%;
    height: 100%;
    object-fit: cover;
    display: block;  
}

/* Footer Hero Section - Responsive */
.heroiki {
    height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-imageiki {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Menu Images - Floating positioned */
.menu-image {
    position: relative;
    height: 0;
    bottom: 20em;
}

.menu-image img {
    position: absolute;
    right: 0;
    top: -150px;
    max-width: 200px;
    height: auto;
    z-index: 10;
}

.menu-imageyeni {
    position: relative;
    height: 0;
    bottom: 20em;
}

.menu-imageyeni img {
    position: absolute;
    right: 0;
    top: -150px;
    max-width: 200px;
    height: auto;
    z-index: 10;
}

/* Language Toggle Responsive */
.language-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Shadows Into Light', cursive;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.language-toggle:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.language-toggle .current-lang {
    color: #333;
    margin-right: 5px;
}

.language-toggle .switch-indicator {
    color: #888;
    font-size: 12px;
}

.menu-content {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    pointer-events: none;
}

.menu-content.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.menu-container {
    position: relative;
    min-height: 100vh;
}

/* Tablet Responsive - 1024px and below */
@media (max-width: 1024px) {
    .hero-image {
        width: 60%;
    }
    
    .menu-image img,
    .menu-imageyeni img {
        max-width: 180px;
        top: -120px;
    }
    
    .container {
        padding: 15px;
    }
}

/* Mobile Landscape and Small Tablets - 768px and below */
@media (max-width: 768px) {
    .hero-image {
        margin-left: 0;
        width: 100%;
    }
    
    .hero-imageiki {
        width: 100%;
    }
    
    .menu-image img,
    .menu-imageyeni img {
        max-width: 120px;
        top: -80px;
    }
    
    .restaurant-name {
        font-size: 2.5em;
    }
    
    .section-title {
        font-size: 1.4em;
    }
    
    .item-name {
        font-size: 1em;
    }
    
    .container {
        padding: 15px;
        max-width: 100%;
    }
    
    .language-toggle {
        top: 15px;
        right: 15px;
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .hero {
        height: 80vh;
    }
    
    .heroiki {
        height: 80vh;
    }
}

/* Mobile Portrait - 480px and below */
@media (max-width: 480px) {
    .restaurant-name {
        font-size: 2.2em;
    }
    
    .section-title {
        font-size: 1.3em;
        margin-bottom: 15px;
    }
    
    .item-name {
        font-size: 0.95em;
    }
    
    .menu-list p {
        font-size: 0.9em;
    }
    
    .menu-list li {
        margin-bottom: 15px;
    }
    
    .container {
        padding: 10px;
    }
    
    .menu-image img,
    .menu-imageyeni img {
        max-width: 100px;
        top: -60px;
    }
    
    .language-toggle {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .hero {
        height: 60vh;
    }
    
    .heroiki {
        height: 60vh;
    }
    
    .legend span {
        margin: 0 5px;
        display: inline-block;
    }
    
    .volume-sizes {
        word-spacing: 10px;
        font-size: 0.9em;
    }
}

/* Very Small Mobile - 320px and below */
@media (max-width: 320px) {
    .restaurant-name {
        font-size: 2em;
    }
    
    .section-title {
        font-size: 1.2em;
    }
    
    .item-name {
        font-size: 0.9em;
    }
    
    .menu-list p {
        font-size: 0.85em;
    }
    
    .container {
        padding: 8px;
    }
    
    .menu-image img,
    .menu-imageyeni img {
        max-width: 80px;
        top: -40px;
    }
    
    .hero {
        height: 50vh;
    }
    
    .heroiki {
        height: 50vh;
    }
    
    .language-toggle {
        padding: 5px 10px;
        font-size: 12px;
        top: 10px;
        right: 10px;
    }
    
    .legend {
        font-size: 0.8em;
    }
    
    .legend span {
        display: block;
        margin: 5px 0;
    }
}

/* Large Screens - Above 1200px */
@media (min-width: 1200px) {
    .container {
        max-width: 800px;
        padding: 30px;
    }
    
    .restaurant-name {
        font-size: 3.5em;
    }
    
    .menu-image img,
    .menu-imageyeni img {
        max-width: 250px;
        top: -200px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-image,
    .hero-imageiki,
    .menu-image img,
    .menu-imageyeni img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: optimize-contrast;
    }
}
