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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

/* Header Styles */
header {
    background-color: #1a1a1a;
    color: #fff;
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo h1 {
    font-size: 1.4rem;
    color: #ff6b6b;
    font-weight: 700;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

nav li:not(:first-child):not(.language-switcher) {
    display: flex;
    align-items: center;
}

nav li:not(:first-child):not(.language-switcher)::before {
    content: "｜";
    color: #555;
    font-size: 0.9rem;
}

.language-switcher {
    margin-left: 1.5rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.3rem 0.6rem;
}

nav a:hover,
nav a.active {
    color: #ff6b6b;
}

/* language-switcher margin moved to nav ul block above */

.lang-dropdown {
    background-color: #ff6b6b;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.lang-dropdown:hover {
    background-color: #ff5252;
}

.lang-dropdown option {
    background-color: #fff;
    color: #333;
    padding: 0.5rem;
}

#dranken .price {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 3rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    line-height: 1;
}

.slider-nav:hover {
    background-color: rgba(255, 107, 107, 0.9);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero-overlay h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-overlay p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ff6b6b;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
}

.btn-primary {
    background-color: #ff6b6b;
    width: 100%;
}

/* About Section */
.about {
    padding: 4rem 0;
    background-color: #fff;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Featured Items Section */
.featured-items {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.featured-items h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.category-title {
    font-size: 2rem;
    color: #ff6b6b;
    margin-top: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #ff6b6b;
    text-align: center;
}

.category-title:first-of-type {
    margin-top: 0;
}

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

.item-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.item-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.item-card h3 {
    padding: 1rem;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.item-card p {
    padding: 0 1rem 1.5rem 1rem;
    color: #666;
}

/* Gallery Section */
.gallery {
    padding: 4rem 0;
    background-color: #fff;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Menu Page Styles */
.menu-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.menu-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.menu-content {
    padding: 4rem 0;
    background-color: #fff;
}

.menu-category {
    margin-bottom: 4rem;
}

.menu-category h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ff6b6b;
    border-bottom: 3px solid #ff6b6b;
    padding-bottom: 0.5rem;
}

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

.menu-item {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 0;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
    background-color: #fff;
}

.menu-item-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0;
    flex-shrink: 0;
}

.item-info {
    flex: 1;
    min-width: 0;
    padding: 1rem 1rem 0.5rem 1rem;
}

.item-info h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.item-info p {
    color: #666;
    font-size: 0.95rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b6b;
    white-space: nowrap;
    margin-left: 0;
    padding: 0.5rem 1rem 1rem 1rem;
    align-self: flex-start;
}

/* Reservation Page Styles */
.reservation-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.reservation-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-section {
    padding: 4rem 0;
    background-color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.contact-info h2,
.reservation-form h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.info-block {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ff6b6b;
}

.info-block p {
    margin-bottom: 0.5rem;
    color: #333;
}

.info-block a {
    color: #ff6b6b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-block a:hover {
    color: #ff5252;
    text-decoration: underline;
}

.hours-table {
    width: 100%;
    margin-top: 1rem;
}

.hours-table td {
    padding: 0.5rem 0;
}

.hours-table td:first-child {
    font-weight: 600;
}

.note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: #ff6b6b;
    color: #fff !important;
    border-radius: 5px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
}

/* Form Styles */
.reservation-form {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b6b;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.map-info {
    text-align: center;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
}

.map-info p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

/* Notice Section */
.notice-section {
    padding: 3rem 0;
    background-color: #fff;
}

.notice-box {
    background-color: #fff3cd;
    border-left: 5px solid #ff6b6b;
    padding: 2rem;
    border-radius: 8px;
}

.notice-box h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.notice-box p {
    margin-bottom: 0.8rem;
    color: #333;
}

/* Footer Styles */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem 0 1rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

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

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero {
        height: 400px;
    }

    .hero-overlay h2 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1.2rem;
    }

    .items-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .menu-item {
        flex-direction: column;
        gap: 1rem;
    }

    .price {
        margin-left: 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .menu-header h1,
    .reservation-header h1 {
        font-size: 2rem;
    }

    .about h2,
    .featured-items h2,
    .gallery h2,
    .map-section h2 {
        font-size: 2rem;
    }
}

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

    .hero-overlay h2 {
        font-size: 1.5rem;
    }

    .hero-overlay p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
