/* -------------------------- */
/* Base Styles */
/* -------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Raleway:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

body {
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0d0d0d;
    color: #f0f0f0;
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* -------------------------- */
/* Header / Navbar */
/* -------------------------- */
.header {
    background-color: #111111;
    padding: 20px 0;
    border-bottom: 2px solid #d4af37;
    position: relative;
}

.header .logo {
    font-size: 2rem;
    color: #c62828;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

.header .nav {
    position: relative;
}

.header .nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.header .nav a {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s ease;
}

.header .nav a:hover {
    color: #d4af37;
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #f0f0f0;
}

/* -------------------------- */
/* Hero Section */
/* -------------------------- */
.hero {
    text-align: center;
    padding: 80px 20px 40px 20px;
    background: linear-gradient(135deg, #c62828, #111111);
    color: #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: 2.8rem;
    margin: 20px 0 15px 0;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.3s;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    max-width: 600px;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.5s;
}

.hero-img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 25px;
    object-fit: cover;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.hero-buttons a {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #c62828;
    color: #f0f0f0;
}

.btn-primary:hover {
    background-color: #b71c1c;
    box-shadow: 0 0 10px #d4af37;
}

.btn-secondary {
    background-color: #d4af37;
    color: #111111;
}

.btn-secondary:hover {
    background-color: #ffd700;
    box-shadow: 0 0 10px #d4af37;
}

/* -------------------------- */
/* Gallery Section */
/* -------------------------- */
.gallery h2 {
    text-align: center;
    color: #d4af37;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.5s;
}

.gallery-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.gallery-grid img {
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
    filter: brightness(0.85) contrast(1.1);
}

.gallery-grid img:hover {
    filter: brightness(1) contrast(1.2);
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.5);
}

/* -------------------------- */
/* Menu Section */
/* -------------------------- */
.menu {
    padding: 60px 20px;
    background-color: #111111;
}

.menu h2 {
    text-align: center;
    color: #c62828;
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.7s;
}

.menu .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-category {
    margin-bottom: 50px;
    max-width: 400px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.menu-category img.menu-img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    margin-bottom: 15px;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.menu-category img.menu-img:hover {
    filter: brightness(1);
}

.menu-category h3 {
    color: #d4af37;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.menu-category ul {
    list-style: none;
    padding-left: 0;
    margin: 0 auto;
    text-align: center;
}

.menu-category li {
    padding: 5px 0;
    font-size: 1.1rem;
}

/* -------------------------- */
/* Location / Map Section */
/* -------------------------- */
.location h2 {
    text-align: center;
    color: #c62828;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.9s;
}

.location p {
    text-align: center;
}

/* -------------------------- */
/* Newsletter Section */
/* -------------------------- */
.newsletter {
    text-align: center;
    padding: 50px 20px;
    background-color: #111111;
}

.newsletter h2 {
    color: #d4af37;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 1.1s;
}

.newsletter form input[type="email"] {
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #c62828;
    margin-right: 10px;
    width: 250px;
    max-width: 80%;
    background-color: #0d0d0d;
    color: #f0f0f0;
    font-family: 'Raleway', sans-serif;
}

.newsletter form button {
    padding: 12px 25px;
    border-radius: 5px;
    border: none;
    background-color: #c62828;
    color: #f0f0f0;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter form button:hover {
    background-color: #b71c1c;
    box-shadow: 0 0 10px #d4af37;
}

/* -------------------------- */
/* Social Section */
/* -------------------------- */
.social {
    text-align: center;
    padding: 50px 20px;
}

.social h2 {
    color: #c62828;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 1.3s;
}

.social-links a {
    margin: 0 15px;
    text-decoration: none;
    color: #d4af37;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #ffd700;
    text-shadow: 0 0 8px #d4af37;
}

/* -------------------------- */
/* Testimonials Section */
/* -------------------------- */
.testimonials h2 {
    text-align: center;
    color: #c62828;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 1.5s;
}

.testimonial-item {
    background-color: #111111;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #d4af37;
    border-radius: 5px;
}

.testimonial-item p {
    margin-bottom: 10px;
    font-family: 'Raleway', sans-serif;
}

/* -------------------------- */
/* Contact Section */
/* -------------------------- */
.contact {
    text-align: center;
    padding: 50px 20px;
}

.contact h2 {
    color: #c62828;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 1.7s;
}

.contact a.btn-primary {
    margin-top: 10px;
    padding: 12px 25px;
    transition: all 0.3s ease;
}

.contact a.btn-primary:hover {
    box-shadow: 0 0 10px #d4af37;
}

/* -------------------------- */
/* Footer */
/* -------------------------- */
.footer {
    text-align: center;
    padding: 20px;
    background-color: #111111;
    border-top: 2px solid #d4af37;
}

.footer p {
    margin: 5px 0;
}

.footer small {
    color: #888;
}

/* -------------------------- */
/* Animazioni generali */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -------------------------- */
/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.4rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .hero-img {
        max-width: 90%;
    }
}

@media (max-width: 767px) {
    /* Hamburger */
    .hamburger {
        display: block;
    }

    #nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        background-color: #111111;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        text-align: center;
        border-top: 1px solid #d4af37;
        z-index: 999;
    }

    #nav-links.show {
        display: flex;
    }

    #nav-links li {
        margin: 15px 0;
    }

    /* Hero */
    .hero {
        padding: 50px 15px 20px 15px;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

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

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }

    .hero-buttons a {
        width: 70%;
        font-size: 1rem;
    }

    /* Newsletter */
    .newsletter form input[type="email"] {
        width: 80%;
        margin-bottom: 10px;
    }

    .newsletter form button {
        width: 50%;
    }

    /* Menu */
    .menu-category {
        max-width: 90%;
    }

    .menu-category img.menu-img {
        max-width: 100%;
        height: auto;
    }

    /* Gallery */
    .gallery-grid,
    .menu-category ul {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }
}
