:root {
    --primary-color: #D4AF37;
    --background-color: #121212;
    --text-color: #f5f5f5;
    --surface-color: #1e1e1e;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.7;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s ease, padding 0.4s ease;
}

.header.scrolled {
    background-color: rgba(18, 18, 18, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    padding: 5px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    transition: padding 0.4s ease;
}

.logo {
    height: 40px;
    width: auto;
    filter: none;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-nav ul li {
    margin: 0 20px;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icons a {
    color: var(--text-color);
    font-size: 1.4rem;
    margin: 0 10px;
    transition: color 0.3s;
}

.contact-icons a:hover {
    color: var(--primary-color);
}

.language-switcher button {
    background: none;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    cursor: pointer;
    padding: 4px 8px;
    transition: all 0.3s;
}

.language-switcher button.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--background-color);
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #fff;
}

.menu-toggle {
    display: none;
}

.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.bg-slide.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.hero-content {
    color: #fff;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

.hero-subtitle-slider {
    position: relative;
    height: 60px;
    margin: 15px 0 30px 0;
}

.subtitle-item {
    font-size: 1.5rem;
    color: #e74c3c;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.subtitle-item.active {
    opacity: 1;
}

.content-section {
    padding: 80px 20px;
}

.section-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

p {
    font-size: 1.1rem;
    color: #ccc;
}

.menu-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--surface-color);
}

.menu-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    cursor: grab;
}

.menu-slider.grabbing {
    cursor: grabbing;
}

.menu-item {
    min-width: 100%;
    box-sizing: border-box;
}

.menu-item img {
    width: 100%;
    display: block;
    user-select: none;
    pointer-events: none;
}

.menu-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.menu-nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    border-color: #fff;
}

.menu-nav-btn.prev {
    left: 20px;
}

.menu-nav-btn.next {
    right: 20px;
}

.menu-nav-btn:disabled {
    opacity: 0;
    cursor: default;
    pointer-events: none;
}

#introduction .section-container {
    text-align: left;
}

#introduction h2 {
    text-align: center;
}

#introduction h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

#introduction ul {
    list-style: none;
    padding-left: 0;
}

#introduction ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #ccc;
    line-height: 1.8;
}

#introduction ul li::before {
    content: '🍕';
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1rem;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    text-align: left;
}

.contact-info,
.contact-maps {
    flex: 1;
    min-width: 300px;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.map-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border: 0;
    border-radius: 5px;
}

footer {
    background-color: #000;
    padding: 40px 20px;
    text-align: center;
}

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 15px;
    transition: color 0.3s;
}

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

footer p {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #aaa;
}

@media (max-width: 992px) {
    .main-nav, .header-right .cta-button {
        display: none;
    }

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

    .contact-icons {
        display: flex;
        gap: 15px;
    }
    
    .header-right {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .menu-toggle {
        display: block;
        color: #fff;
        font-size: 1.8rem;
        cursor: pointer;
    }

    .main-nav.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--background-color);
        flex-direction: column;
        padding: 10px 0;
    }

    .main-nav.active li {
        margin: 10px 0;
        text-align: center;
    }
    
    .hero-section {
        height: 85vh;
    }

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

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

    h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-details {
        flex-direction: column;
    }
}
