:root {
    --primary-color: #e63946; /* Red */
    --secondary-color: #ffd700; /* Yellow */
    --text-color: #333;
    --background-color: #fff;
    --accent-color: #f1faee;
    --price-color: #d93030; /* Darker red for better contrast */
    --menu-bg-color: #fffbeb; /* Very light yellow for menu items */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--background-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: none;
    list-style: none;
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--background-color);
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-links li {
    margin: 1rem 0;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('Chipalicious - Foodtruck.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--background-color);
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    margin: 0.5rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--background-color);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--text-color);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Sections */
section {
    padding: 5rem 0;
}

section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* About Section */
.about-content {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 1rem;
}

/* Menu Section */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.menu-item {
    background: var(--menu-bg-color);
    border-radius: 10px;
    padding: 1.5rem;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    border-left: 4px solid var(--primary-color);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.menu-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 0.5rem;
}

.menu-item .price {
    color: var(--price-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.menu-item .description {
    font-size: 0.9rem;
    color: #444;
    margin-top: 0.5rem;
    flex-grow: 1;
}

/* Reviews Section */
.reviews-slider {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.review {
    background: var(--accent-color);
    padding: 2rem;
    border-radius: 10px;
    margin: 1rem;
    text-align: center;
    animation: fadeIn 0.5s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    text-align: center;
}

.availability-notice {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(230, 57, 70, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 5px 5px 0;
    text-align: left;
}

.availability-notice p {
    font-size: 0.9rem;
    color: #555;
}

.social-links {
    margin-top: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--secondary-color);
}

.facebook-icon {
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
    fill: currentColor;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.optional {
    font-weight: normal;
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
}

input,
textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    transition: var(--transition);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--text-color);
    color: var(--background-color);
    padding: 2rem 0;
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Media Queries */
@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }

    .nav-links {
        display: flex;
        gap: 2rem;
    }

    .nav-links.active {
        position: static;
        width: auto;
        background: none;
        box-shadow: none;
        padding: 0;
    }

    .nav-links li {
        margin: 0;
    }

    .contact-content {
        grid-template-columns: 1fr 1fr;
    }

    .contact-info {
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }

    .hero p {
        font-size: 1.5rem;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
} 