/* CSS Variables */
:root {
    --font-size-base: 16px;
    --font-family-base: Arial, sans-serif;
    --color-primary: #333;
    --color-secondary: #c5a47e;
    --color-background: #f9f9f9;
    --color-text: #555;
    --color-highlight: #e05d5d;
    --color-footer: #1a1a1a;
    --color-footer-text: #fff;
    --color-credits: #866d35;
    --gap-large: 10rem;
    --gap-medium: 2rem;
    --gap-small: 1rem;
    --gap-xsmall: 0.75rem;
    --padding-base: 5%;
    --padding-section: 5rem;
    --padding-small: 1rem;
    --padding-medium: 1.5rem;
    --padding-large: 4rem;
    --border-radius: 10px;
    --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* General Styles */
html {
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-family-base);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--padding-small) var(--padding-base);
    background-color: var(--color-primary);
    color: var(--color-secondary);
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--gap-xsmall);
}

.logo img {
    height: 3.125rem;
    width: auto;
}

.logo h1 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    margin: 0;
    white-space: nowrap;
}

/* Navigation Styles */
nav ul.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap-medium);
}

nav ul.menu li a {
    color: #fff;
    text-decoration: none;
    font-size: clamp(0.875rem, 2vw, 1rem);
    transition: color 0.3s ease;
}

nav ul.menu li a:hover {
    color: var(--color-secondary);
}

/* Hamburger Menu Styles */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
    position: relative;
    width: 30px;
    height: 30px;
}

.hamburger {
    display: block;
    transition: transform 0.3s ease;
    width: 20px;
    height: 2px;
    background: #fff;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    top: 6px;
}

/* Banner Styles */
.banner {
    width: 100%;
    height: clamp(250px, 50vh, 400px);
    overflow: hidden;
    position: relative;
}

.slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: slideShow 15s infinite;
}

.slide:nth-child(1) {
    animation-delay: 0s;
}

.slide:nth-child(2) {
    animation-delay: 5s;
}

.slide:nth-child(3) {
    animation-delay: 10s;
}

@keyframes slideShow {
    0%, 100% { opacity: 0; }
    5%, 30% { opacity: 1; }
}

/* Welcome Section */
.welcome-section {
    padding: var(--padding-section) var(--padding-base);
    background-color: var(--color-background);
}

.welcome-content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-large);
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.welcome-text {
    flex: 1 1 min(600px, 100%);
}

.welcome-text h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--color-highlight);
    margin-bottom: 1.5rem;
}

.welcome-text p {
    font-size: clamp(1rem, 1.75vw, 1.25rem);
    line-height: 1.6;
    color: var(--color-text);
}

.welcome-image {
    flex: 1 1 min(500px, 100%);
}

.welcome-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Special Section for Menu */
.special {
    margin: 0;
    font-family: 'Cochin, Georgia, Times, Times New Roman, serif';
    background-color: var(--color-background);
    padding: 5rem var(--padding-base);
}

.container_special {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
}

.image-container_special {
    flex: 1 1 min(600px, 100%);
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.slideshow_special {
    position: relative;
    width: 100%;
    height: 400px;
}

.slide_special {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    border-radius: var(--border-radius);
}

.slide_special:nth-child(1) {
    animation: slideShow 9s infinite;
}

.slide_special:nth-child(2) {
    animation: slideShow 9s infinite 3s;
}

.slide_special:nth-child(3) {
    animation: slideShow 9s infinite 6s;
}

.text-container_special {
    flex: 1 1 min(400px, 100%);
    padding: 2rem;
    background-color: azure;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.text-container_special h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
    color: #353333;
}

.text-container_special p {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    line-height: 1.6;
    color: #4f4d4d;
}

/* Food Section */
.food-section {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem auto;
    padding: var(--padding-medium);
    border-radius: var(--border-radius);
    background-color: azure;
    max-width: 1400px;
}

.food-image {
    flex: 1 1 min(400px, 100%);
}

.food-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.food-name {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: bold;
    margin: 1rem 0;
    text-align: center;
}

.food-description {
    flex: 1 1 min(500px, 100%);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.6;
    color: #4f4d4d;
    padding: 1rem;
}

/* Cocktail Section */
.cocktail-section {
    background-color: var(--color-footer);
    padding: var(--padding-large) var(--padding-base);
}

.content-container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-medium);
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.text-content {
    flex: 1 1 min(500px, 100%);
}

.text-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.text-content p {
    font-size: clamp(1rem, 1.75vw, 1.125rem);
    line-height: 1.6;
    color: var(--color-footer-text);
}

.video-container {
    flex: 1 1 min(400px, 100%);
}

.video-container video {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

/* Parking Section Styles */
.parking-section {
    margin: 4rem auto;
    padding: 3rem 0;
    background: #f7f7f7;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    max-width: 900px;
    width: 95%;
}

.parking-container {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 2rem;
}

.parking-photo {
    flex: 1 1 min(400px, 100%);
}

.parking-photo img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.12);
    background: #eaeaea;
}

.parking-info {
    flex: 1 1 min(300px, 100%);
    text-align: left;
}

.parking-info h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
    color: #333;
}

.parking-info h3 {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #666;
    margin-bottom: 0;
}

/* Footer Styles */
footer {
    background-color: var(--color-primary);
    color: var(--color-footer-text);
    padding: 3rem var(--padding-base);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-medium);
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
}

.footer-left,
.footer-right {
    flex: 1 1 min(300px, 100%);
}

.social-media {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    color: var(--color-secondary);
    font-size: 1.8rem;
    margin-top: 1rem;
}

.follow-us {
    text-align: center;
    margin-top: 2rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-secondary);
}

/* Credits Section */
.credits {
    background-color: var(--color-credits);
    padding: 1rem var(--padding-base);
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    :root {
        --gap-large: 5rem;
    }
    
    .container_special {
        gap: 3rem;
    }
    
    .food-section {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav ul.menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 250px;
        background: var(--color-primary);
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: 0.3s;
        z-index: 999;
    }

    nav ul.menu.active {
        right: 0;
    }

    nav ul.menu li {
        margin: 15px 0;
    }

    /* Animate hamburger to X */
    .menu-toggle.active .hamburger {
        background: transparent;
    }

    .menu-toggle.active .hamburger::before {
        top: 0;
        transform: rotate(45deg);
    }

    .menu-toggle.active .hamburger::after {
        top: 0;
        transform: rotate(-45deg);
    }
    
    .welcome-content,
    .content-container,
    .container_special {
        gap: 2rem;
    }
    
    .special {
        padding: 3rem var(--padding-base);
    }
    
    .container_special {
        flex-direction: column;
    }
    
    .slideshow_special {
        height: 300px;
    }
    
    .food-section {
        flex-direction: column;
        margin: 1rem var(--padding-base);
        padding: var(--padding-medium);
    }
    
    .parking-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .parking-info {
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: var(--padding-small);
    }

    .logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .banner {
        height: 40vh;
    }

    .welcome-section,
    .cocktail-section,
    .special {
        padding: 2rem var(--padding-base);
    }
    
    .container_special {
        padding: 0;
    }
    
    .text-container_special {
        padding: 1.5rem;
    }
    
    .slideshow_special {
        height: 200px;
    }
    
    .food-section {
        margin: 1rem 0;
        padding: var(--padding-small);
    }
    
    .parking-section {
        margin: 2rem auto;
        padding: 1.5rem 0;
    }
    
    .parking-container {
        padding: 0 1rem;
    }
    
        .parking-photo img {
            max-width: 100%;
            max-height: 200px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 1px 6px rgba(0,0,0,0.12);
            background: #eaeaea;
        }
    
    .social-media {
        font-size: 1.5rem;
        gap: 1rem;
    }
    
    .credits {
        padding: 0.75rem var(--padding-base);
    }
}