:root {
    --primary: #ff6b6b;   /* Appetizing Red */
    --secondary: #ff9f43; /* Warm Orange */
    --dark: #2d3436;      /* Soft Black */
    --light: #f5f6fa;     /* Off-white background */
    --white: #ffffff;
    --bg-card: #ffffff;
    --std-margin: 1rem;
    --shadow: 0 10px 20px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

/* --- Header & Nav --- */
header {
    display: flex;
    position: fixed; /* Sticky header */
    top: 0;
    left: 0;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -1px;
    color: var(--primary);
}

.nav-links a {
    text-decoration: none;
    color: #334155;
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2563eb;
}

/* Call to Action Button */
.btn-signup {
    background-color: #2563eb;
    color: white !important;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
}

.btn-signup:hover {
    background-color: #1d4ed8;
}

/* Hide Checkbox & Hamburger by default */
#nav-check { display: none; }
.nav-btn { display: none; }

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
}

nav a:hover {
    color: var(--primary);
}

/* CTA Button in Nav */
.btn-nav {
    background-color: var(--primary);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.btn-nav:hover {
    background-color: #ee5253;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    width: 100%;
    /* Using a high quality Unsplash food image */
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/micheile-henderson-ZVprbBmT8QA-unsplash.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 1rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 600px;
}

.btn-hero {
    background-color: var(--secondary);
    color: var(--white);
    padding: 1rem 3rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
}

.btn-hero:hover {
    background-color: #e67e22;
    transform: scale(1.05);
}

/* --- Common Section Styles --- */
section {
    padding: 5rem 10%;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h3 {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin: 0.5rem 0;
}

/* --- How It Works --- */
.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    text-align: center;
}

.step-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    flex: 1;
}

.step-number {
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    font-weight: bold;
}

/* --- Popular Menu Grid --- */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.food-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.food-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.food-info {
    padding: 1.5rem;
}

.food-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.add-btn {
    display: block;
    width: 100%;
    padding: 0.8rem;
    background: var(--dark);
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    margin-top: 1rem;
}

.add-btn:hover {
    background: var(--primary);
}

/* --- Testimonials --- */
#testimonials {
    padding: 60px 20px;
    background-color: #f9fafb;
    display: flex;
    justify-content: center;
}
  
.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
}
  
/* Card Styling */
.testimonial-card {
    background: white;
    flex: 1 1 300px; /* Grow, Shrink, and a base width of 300px */
    max-width: 400px;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column; /* Stack internal elements vertically */
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    
    /* Animation & Transitions */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* Hover Animation */
  .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  }
  
  .image-wrapper img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    margin-bottom: 1.5rem;
  }
  
  .remark {
    font-style: italic;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .name {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark);
  }
  
  .role {
    margin: 4px 0 0;
    font-size: 0.9rem;
    color: var(--light);
    font-weight: 500;
  }
  
/* --- Footer --- */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 10%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

footer h4 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 0.8rem;
}

footer a {
    color: #b2bec3;
    text-decoration: none;
}

footer a:hover {
    color: var(--white);
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
    }
    nav ul {
        margin-top: 1rem;
        gap: 1rem;
        font-size: 0.9rem;
    }
    .nav-btn {
        display: inline-block;
        cursor: pointer;
    }
    .nav-btn span {
        display: block;
        width: 25px;
        height: 3px;
        background: #334155;
        margin: 5px;
        border-radius: 3px;
    }

    .nav-links {
        position: absolute;
        display: flex;
        flex-direction: column;
        width: 100%;
        background-color: #ffffff;
        top: 70px;
        left: 0;
        transition: all 0.3s ease-in;
        overflow-y: hidden;
        height: 0; /* Hidden by default */
    }

    .nav-links a {
        width: 100%;
        padding: 1.5rem;
        margin: 0;
        text-align: center;
        border-bottom: 1px solid #f1f5f9;
    }

    /* Logic to show menu when checkbox is clicked */
    #nav-check:checked ~ .nav-links {
        height: calc(100vh - 70px);
    }
    .hero h1 { font-size: 2.5rem; }
    .steps-container { flex-direction: column; }
}


  /* Entrance Animation Keyframes */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

@view-transition {
    navigation: auto
}
