/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Italian Flag Colors */
    --italian-green: #009246;
    --italian-white: #FFFFFF;
    --italian-red: #CE2B37;
    
    /* Extended Color Palette */
    --light-green: #00A651;
    --cream: #FFF8F0;
    --dark-gray: #333333;
    --light-gray: #F5F5F5;
    --gold: #FFD700;
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Open Sans', sans-serif;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--italian-white) 100%);
    min-height: 100vh;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 3px solid var(--italian-red);
}

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

.nav-logo h2 {
    font-family: var(--font-heading);
    color: var(--italian-red);
    font-size: 1.8rem;
    margin-bottom: -5px;
}

.nav-tagline {
    font-size: 0.8rem;
    color: var(--italian-green);
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--italian-red);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--italian-red);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--italian-red);
}

.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--italian-red);
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--cream) 0%, var(--italian-white) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 80px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.highlight {
    color: var(--italian-red);
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: flex-start;
}

.hero-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    min-width: 140px;
    justify-content: center;
}

.hero-btn i {
    font-size: 1rem;
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--italian-red), #e63946);
    color: white;
}

.hero-btn-primary:hover {
    background: linear-gradient(135deg, #e63946, var(--italian-red));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(206, 43, 55, 0.3);
}

.hero-btn-secondary {
    background: white;
    color: var(--italian-green);
    border: 2px solid var(--italian-green);
}

.hero-btn-secondary:hover {
    background: var(--italian-green);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 146, 70, 0.3);
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary {
    background: transparent;
    color: var(--italian-green);
    border: 2px solid var(--italian-green);
}

.btn-secondary:hover {
    background: var(--italian-green);
    color: white;
    transform: translateY(-2px);
}

.food-truck-placeholder {
    background: var(--light-gray);
    border: 3px dashed var(--italian-red);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    color: #999;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.truck-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.food-truck-placeholder i {
    font-size: 4rem;
    color: var(--italian-red);
    margin-bottom: 1rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Menu Page Header */
.menu-header {
    background: transparent;
    color: var(--dark-gray);
    padding: 6rem 0 2rem;
    text-align: center;
    margin-top: 80px;
}

.menu-header-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: none;
    color: var(--dark-gray) !important;
}

.menu-header-content p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
    color: #666 !important;
}

.menu-header-decoration {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.menu-header-decoration i {
    font-size: 2.5rem;
    opacity: 0.7;
    animation: float 4s ease-in-out infinite;
    color: var(--italian-red) !important;
}

.menu-header-decoration i:nth-child(2) {
    animation-delay: -1s;
}

.menu-header-decoration i:nth-child(3) {
    animation-delay: -2s;
}

.menu-page {
    padding: 2rem 0;
    background: transparent;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Menu Page Scattered Icons */
.menu-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.food-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(206, 43, 55, 0.15);
    animation: float 8s ease-in-out infinite;
}

.pizza-icon-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.burger-icon-1 {
    top: 25%;
    right: 20%;
    animation-delay: -1s;
}

.utensils-icon-1 {
    top: 40%;
    left: 10%;
    animation-delay: -2s;
}

.pizza-icon-2 {
    top: 60%;
    right: 15%;
    animation-delay: -3s;
}

.sandwich-icon-1 {
    top: 75%;
    left: 25%;
    animation-delay: -4s;
}

.coffee-icon-1 {
    top: 20%;
    left: 60%;
    animation-delay: -5s;
}

.burger-icon-2 {
    top: 50%;
    right: 50%;
    animation-delay: -6s;
}

.utensils-icon-2 {
    top: 80%;
    right: 25%;
    animation-delay: -7s;
}

.pizza-icon-3 {
    top: 35%;
    left: 80%;
    animation-delay: -1.5s;
}

.wine-icon-1 {
    top: 70%;
    left: 70%;
    animation-delay: -2.5s;
}

.sandwich-icon-2 {
    top: 10%;
    right: 40%;
    animation-delay: -3.5s;
}

.beer-icon-1 {
    top: 85%;
    left: 50%;
    animation-delay: -4.5s;
}

.pasta-icon-1 {
    top: 30%;
    left: 30%;
    animation-delay: -5.5s;
}

.cheese-icon-1 {
    top: 45%;
    right: 10%;
    animation-delay: -6.5s;
}

.pizza-icon-4 {
    top: 65%;
    left: 40%;
    animation-delay: -0.5s;
}

.burger-icon-3 {
    top: 55%;
    left: 85%;
    animation-delay: -1.8s;
}

.coffee-icon-2 {
    top: 90%;
    right: 45%;
    animation-delay: -2.8s;
}

.wine-icon-2 {
    top: 15%;
    left: 75%;
    animation-delay: -3.8s;
}

.sandwich-icon-3 {
    top: 40%;
    left: 45%;
    animation-delay: -4.8s;
}

.utensils-icon-3 {
    top: 25%;
    left: 40%;
    animation-delay: -5.8s;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--italian-red);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

/* Menu Section */
.menu {
    background: var(--cream);
    padding: 5rem 0;
}

.menu-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Menu page specific styling */
.menu-layout {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem;
    z-index: 10;
    overflow-wrap: break-word;
}

/* Floating Category Menu for Mobile */
.floating-category-menu {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 200;
}

.floating-menu-toggle {
    background: linear-gradient(135deg, var(--italian-red), #e63946);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(206, 43, 55, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.floating-menu-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(206, 43, 55, 0.4);
}

.floating-menu-toggle.active {
    background: linear-gradient(135deg, var(--italian-green), var(--light-green));
}

.floating-menu-toggle i {
    transition: transform 0.3s ease;
}

.floating-menu-toggle.active i {
    transform: rotate(45deg);
}

.floating-category-list {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: white;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.floating-category-list.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-category-item {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.floating-category-item:last-child {
    margin-bottom: 0;
}

.floating-category-item:hover {
    background: var(--cream);
    color: var(--italian-red);
    transform: translateX(5px);
}

.floating-category-item.active {
    background: linear-gradient(135deg, var(--italian-red), #e63946);
    color: white;
    font-weight: 600;
}

.menu-nav {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 220px;
    z-index: 150;
}

.menu-nav-content {
    background: var(--italian-white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.menu-nav-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--italian-green);
    margin-bottom: 1.2rem;
    text-align: center;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--italian-red);
}

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

.menu-nav-list li {
    margin-bottom: 0.4rem;
}

.menu-nav-link {
    display: block;
    padding: 0.6rem 0.8rem;
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9rem;
}

.menu-nav-link:hover {
    background: var(--cream);
    color: var(--italian-red);
    transform: translateX(5px);
}

.menu-nav-link.active {
    background: linear-gradient(135deg, var(--italian-red), #e63946);
    color: white;
    font-weight: 600;
}

.menu-nav-link.active:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, #e63946, var(--italian-red));
}

.menu-page .menu-content {
    background: transparent;
    padding: 0;
    border-radius: 15px;
    margin: 0 auto;
    max-width: 800px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.menu-category {
    background: var(--italian-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.menu-category-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--italian-green);
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--italian-red);
}

.menu-items {
    display: grid;
    gap: 1rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-info {
    flex: 1;
    min-width: 0; /* Allows flex item to shrink */
    max-width: calc(100% - 100px); /* Reserve space for price */
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding-right: 1rem;
}

.menu-item-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.menu-item-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    word-break: break-word;
    max-width: 100%;
}

.menu-item-price {
    font-weight: 600;
    color: var(--italian-red);
    font-size: 1.1rem;
    white-space: nowrap;
    margin-left: 1rem;
}

/* About Section */
.about {
    background: var(--italian-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--italian-green);
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    color: var(--italian-red);
    font-size: 1.2rem;
    width: 25px;
}

.chef-placeholder {
    background: var(--light-gray);
    border: 3px dashed var(--italian-green);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    color: #999;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.chef-placeholder i {
    font-size: 3rem;
    color: var(--italian-green);
    margin-bottom: 1rem;
}

/* Image Carousel */
.image-carousel {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--italian-red);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: var(--italian-red);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(206, 43, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.carousel-indicator.active {
    background: var(--italian-red);
    transform: scale(1.2);
}

.carousel-indicator:hover {
    background: var(--italian-red);
    transform: scale(1.1);
}

.carousel-caption {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-caption p {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--italian-green);
    margin-bottom: 5px;
    font-weight: 600;
}

.carousel-caption small {
    color: var(--dark-gray);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Location Section (now combined with Contact) */
.location {
    background: var(--light-gray);
    padding: 80px 0;
}

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

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

.location-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--italian-green);
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-card i {
    color: var(--italian-red);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.location-card h3 {
    font-family: var(--font-heading);
    color: var(--italian-green);
    margin-bottom: 1rem;
}

.location-card p {
    margin-bottom: 1rem;
    color: var(--dark-gray);
    line-height: 1.5;
}

.location-card p:last-child {
    margin-bottom: 0;
}

.location-card strong {
    color: var(--italian-red);
    font-weight: 600;
}

.location-card a {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.location-card a:hover {
    color: var(--italian-green);
}

.location-address {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.schedule h4 {
    color: var(--italian-red);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.schedule p {
    color: var(--dark-gray);
    margin-bottom: 0.3rem;
}

.contact-details {
    margin-bottom: 1.5rem;
}

.contact-details p {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
}

.contact-details a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-details a:hover {
    color: var(--italian-red);
}

.contact-details i {
    color: var(--italian-red) !important;
    font-size: 1rem !important;
    margin-bottom: 0 !important;
}

.contact-details a:hover i {
    color: var(--italian-red) !important;
}

.contact-info h4 {
    color: var(--italian-red);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-info p {
    color: var(--dark-gray);
    margin-bottom: 0.3rem;
}

/* Footer */
.footer {
    background: var(--dark-gray) !important;
    color: white !important;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-logo h3 {
    font-family: var(--font-heading);
    color: var(--italian-red) !important;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #ccc !important;
}

.footer-links h4 {
    color: white !important;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #ccc !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--italian-red) !important;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: #ccc !important;
}

.footer-contact i {
    color: var(--italian-red) !important;
    margin-right: 0.5rem;
}

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

/* Responsive Design */
@media (max-width: 1400px) {
    .menu-nav {
        display: none;
    }
    
    .menu-layout {
        padding: 2rem 1rem;
    }
    
    .menu-page .menu-content {
        max-width: 1000px;
    }
    
    .floating-category-menu {
        display: block;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 999;
        padding: 2rem 0;
        display: flex;
        list-style: none;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 1rem;
        display: block;
    }
    
    .menu-header {
        padding: 5rem 0 1.5rem;
    }
    
    .menu-header-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .menu-header-content p {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .menu-header-decoration {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .menu-header-decoration i {
        font-size: 2rem;
    }
    
    .menu-layout {
        position: relative;
        padding: 1.5rem 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .menu-page {
        padding: 1rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
        padding-top: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 250px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .about-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about {
        padding: 3rem 0;
    }
    
    .location {
        padding: 3rem 0;
    }
    
    .location-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .menu-category {
        padding: 1.5rem;
        margin-bottom: 2rem;
        border-radius: 12px;
    }
    
    .menu-category-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .menu-items {
        gap: 1.2rem;
    }
    
    .menu-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 1.25rem 0;
        width: 100%;
        box-sizing: border-box;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .menu-item:last-child {
        border-bottom: none;
    }
    
    .menu-item-info {
        width: 100%;
        max-width: 100%;
        margin-bottom: 0.5rem;
        padding-right: 0;
    }
    
    .menu-item-name {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
        font-weight: 600;
    }
    
    .menu-item-description {
        font-size: 0.9rem;
        line-height: 1.4;
        margin: 0.5rem 0 0 0;
        word-break: break-word;
        hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        overflow-wrap: anywhere;
        color: #555;
    }
    
    .menu-item-price {
        margin-left: 0;
        align-self: flex-end;
        font-size: 1.1rem;
        margin-top: 0.75rem;
        font-weight: 700;
        background: linear-gradient(135deg, var(--italian-red), #e63946);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
        margin-top: 2rem;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .carousel-container {
        height: 250px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .carousel-caption {
        margin-top: 15px;
        padding: 10px;
    }
    
    .carousel-caption p {
        font-size: 1.1rem;
    }
    
    .food-icon {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .nav-logo h2 {
        font-size: 1.6rem;
    }
    
    .nav-tagline {
        font-size: 0.75rem;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .menu-header {
        padding: 4rem 0 1rem;
        margin-top: 70px;
    }
    
    .menu-header-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .menu-header-content p {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .menu-layout {
        padding: 1rem 0.75rem;
    }
    
    .menu-page {
        padding: 0.5rem 0;
    }
    
    .menu-category {
        padding: 1.25rem;
        margin: 0 0 1.5rem 0;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .menu-category-title {
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
        padding-bottom: 0.75rem;
        text-align: center;
    }
    
    .menu-items {
        gap: 1rem;
    }
    
    .menu-item {
        padding: 1rem 0;
        border-bottom: 1px solid #f5f5f5;
    }
    
    .menu-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .menu-item-info {
        padding-right: 0;
        margin-bottom: 0.75rem;
    }
    
    .menu-item-name {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        line-height: 1.2;
        font-weight: 600;
    }
    
    .menu-item-description {
        font-size: 0.85rem;
        line-height: 1.3;
        margin: 0.4rem 0 0 0;
        max-width: 100%;
        color: #666;
    }
    
    .menu-item-price {
        font-size: 1rem;
        margin-top: 0.75rem;
        font-weight: 700;
        align-self: flex-end;
    }
    
    .hero-btn {
        font-size: 0.95rem;
        padding: 0.875rem 1.25rem;
        min-width: 140px;
        max-width: 260px;
    }
    
    .location-card {
        padding: 1.5rem 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .footer {
        padding: 2.5rem 0 1rem;
    }
    
    .footer-content {
        gap: 2rem;
        text-align: center;
    }
    
    .carousel-container {
        height: 200px;
    }
    
    .image-carousel {
        max-width: 320px;
    }
    
    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .carousel-prev {
        left: 5px;
    }
    
    .carousel-next {
        right: 5px;
    }
    
    .food-icon {
        font-size: 1.2rem;
    }
    
    .menu-decoration {
        opacity: 0.5;
    }
    
    .floating-category-menu {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-menu-toggle {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .floating-category-list {
        bottom: 75px;
        min-width: 180px;
        padding: 0.875rem;
    }
    
    .floating-category-item {
        padding: 0.625rem 0.875rem;
        font-size: 0.85rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.location-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--italian-red);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #B91C26;
}
