/* 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;
}

.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%;
}

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

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

/* 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: 1rem;
    margin-top: 2rem;
}

.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;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

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

.pasta-icon {
    top: 20%;
    right: 10%;
    animation-delay: -2s;
}

.pizza-icon {
    bottom: 20%;
    left: 10%;
    animation-delay: -4s;
}

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

/* 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;
}

/* 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;
}

/* 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);
    color: white;
    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);
    margin-bottom: 0.5rem;
}

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

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

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

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .location-card {
        padding: 1.5rem;
    }
}

/* 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;
}
