/* Base styles and resets */
:root {
    /* Main color scheme - customize these to match your café's branding */
    --primary-color: #8b5a2b;      /* Coffee brown */
    --secondary-color: #d4a573;    /* Light coffee */
    --accent-color: #f0c987;       /* Cream/beige */
    --dark-color: #2c1810;         /* Dark brown */
    --light-color: #f9f3e9;        /* Off-white */
    --text-color: #333333;
    --light-text: #ffffff;
    
    /* Font families */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-spacing: 3rem;
    --container-padding: 1rem;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-color);
    font-size: 16px;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
  }
  
  a:hover {
    color: var(--secondary-color);
  }
  
  ul {
    list-style: none;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
  }
  
  /* Typography */
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
  }
  
  p {
    margin-bottom: 1rem;
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
    border: 2px solid var(--primary-color);
  }
  
  .btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
  }
  
  .btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
  }
  
  .btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
  }
  
  .centered {
    text-align: center;
    margin: 1.5rem 0;
  }
  
  /* Header and Navigation */
  .main-header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  
  .logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
  }
  
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
  }
  
  .hamburger {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background-color: var(--dark-color);
  }
  
  .hamburger::before,
  .hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--dark-color);
    transition: all 0.3s ease;
  }
  
  .hamburger::before {
    top: -8px;
  }
  
  .hamburger::after {
    bottom: -8px;
  }
  
  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  .nav-list.active {
    display: flex;
  }
  
  .nav-list li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .nav-list a {
    display: block;
    padding: 1rem;
    color: var(--text-color);
    font-weight: 500;
  }
  
  .nav-list a.active,
  .nav-list a:hover {
    color: var(--primary-color);
  }
  
  /* Hero Section */
  .hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/491187646_4051971305075025_1056340321439538590_n.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    text-align: center;
    padding: 5rem 0;
  }
  
  .hero-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 300px;
    margin: 0 auto;
  }
  
  /* Featured Items */
  .featured-items {
    padding: var(--section-spacing) 0;
  }
  
  .items-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .item:hover {
    transform: translateY(-5px);
  }
  
  .item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .item h3, .item p {
    padding: 0 1rem;
  }
  
  .item h3 {
    margin-top: 1rem;
  }
  
  .item p {
    padding-bottom: 1rem;
  }
  
  /* Hours & Location */
  .hours-location {
    background-color: var(--dark-color);
    color: var(--light-text);
    padding: var(--section-spacing) 0;
  }
  
  .hours-location .section-title::after {
    background-color: var(--secondary-color);
  }
  
  .hours-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .hours-box, .location-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
  }
  
  .hours-list li {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .location-box address {
    font-style: normal;
    line-height: 1.8;
  }
  
  .location-box a {
    color: var(--accent-color);
  }
  
  .map-container {
    height: 250px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
  }
  
  .map-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    font-size: 1.2rem;
  }
  
  /* Testimonials */
  .testimonials {
    padding: var(--section-spacing) 0;
    background-color: var(--light-color);
  }
  
  .testimonial {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .stars {
    color: #f9a825;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  blockquote {
    font-style: italic;
    margin-bottom: 1rem;
  }
  
  .testimonial-author {
    font-weight: 600;
  }
  
  /* Newsletter */
  .newsletter {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: var(--section-spacing) 0;
  }
  
  .newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .newsletter-form input {
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 4px;
    font-family: var(--body-font);
    font-size: 1rem;
  }
  
  .newsletter-form .btn {
    border-radius: 4px;
  }
  
  /* Footer */
  .main-footer {
    background-color: var(--dark-color);
    color: var(--light-text);
    padding: 3rem 0 1rem;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .footer-links ul li {
    margin-bottom: 0.5rem;
  }
  
  .footer-links a {
    color: var(--light-text);
    opacity: 0.8;
  }
  
  .footer-links a:hover {
    opacity: 1;
  }
  
  .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  
  .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-text);
    transition: all 0.3s ease;
  }
  
  .social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
  }
  
  /* Media Queries for larger screens */
  @media (min-width: 768px) {
    :root {
      --container-padding: 2rem;
    }
    
    h1 {
      font-size: 2.5rem;
    }
    
    h2 {
      font-size: 2rem;
    }
    
    .menu-toggle {
      display: none;
    }
    
    .nav-list {
      display: flex;
      flex-direction: row;
      position: static;
      width: auto;
      background-color: transparent;
      box-shadow: none;
    }
    
    .nav-list li {
      border-bottom: none;
      margin-left: 1.5rem;
    }
    
    .nav-list a {
      padding: 0;
    }
    
    .hero-buttons {
      flex-direction: row;
      justify-content: center;
      max-width: none;
    }
    
    .items-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .hours-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-form {
      flex-direction: row;
      justify-content: center;
    }
    
    .newsletter-form input {
      flex: 1;
      max-width: 400px;
    }
    
    .footer-content {
      grid-template-columns: 1fr 1fr 1fr;
    }
  }
  
  @media (min-width: 1024px) {
    .hero {
      padding: 8rem 0;
    }
    
    .hero h2 {
      font-size: 3rem;
    }
  }
  
/* Menu CSS */
/* Menu Specific Styles */
.menu-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/491187709_552416297551062_4485359537645725209_n.jpg');
}

.menu-tabs {
    background: var(--light-color);
    padding: 2rem 0;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tab-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--dark-color);
}

.menu-section {
    display: none;
    padding: 2rem 0;
}

.menu-section.active {
    display: block;
}

.menu-category {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

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

.menu-item {
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.item-price {
    color: var(--primary-color);
    font-weight: 500;
}

.item-description {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.9rem;
}