/* RESET + FONT */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  body {
    background: #0b0f14;
    color: #f1f1f1;
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    min-height: 100vh;
  }
  
  /* HEADER */
  .header {
    background: #10161d;
    border-bottom: 2px solid #1ed760;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
  }
  
  .nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1ed760;
    user-select: none;
    letter-spacing: 1px;
  }
  
  /* NAVIGATION */
  .navbar {
    position: relative;
    flex-grow: 1;
    text-align: right;
  }
  
  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    justify-content: flex-end;
  }
  
  .nav-links li a {
    color: #f1f1f1;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    transition: color 0.3s ease, background-color 0.3s ease;
  }
  
  .nav-links li a:hover,
  .nav-links li a:focus {
    color: #0b0f14;
    background-color: #1ed760;
    outline: none;
  }
  
  /* MENU TOGGLE (BURGER) */
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: #f1f1f1;
    cursor: pointer;
    user-select: none;
    transition: color 0.3s ease;
  }
  
  .menu-toggle:hover,
  .menu-toggle:focus {
    color: #1ed760;
    outline: none;
  }
  
  /* HERO SECTION */
  .hero {
    background: url("assets/bg.jpg") no-repeat center center/cover;
    min-height: 100vh;
    padding: 8rem 1.5rem 4rem;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
  }
  
  .hero h1 {
    font-size: 3rem;
    color: #fff;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.85);
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.1;
  }
  
  .hero p {
    font-size: 1.4rem;
    color: #1ed760;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .btn {
    background: #1ed760;
    color: #0b0f14;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 215, 96, 0.6);
    user-select: none;
  }
  
  .btn:hover,
  .btn:focus {
    background: #14b24f;
    box-shadow: 0 6px 20px rgba(20, 178, 79, 0.85);
    outline: none;
  }
  
  /* SECTIONS */
  section {
    padding: 4rem 1.5rem;
    max-width: 1000px;
    margin: auto;
  }
  
  h2 {
    font-size: 2.4rem;
    color: #1ed760;
    margin-bottom: 1.5rem;
    font-weight: 700;
    border-left: 5px solid #1ed760;
    padding-left: 0.75rem;
    user-select: none;
  }
  
  ul {
    list-style-type: square;
    padding-left: 1.25rem;
  }
  
  ul li {
    margin-bottom: 1rem;
    color: #ddd;
    font-size: 1.1rem;
    line-height: 1.5;
  }
  
  /* RESERVATION + DELIVERY */
  .reservation,
  .delivery {
    background-color: #0e141b;
    border-radius: 12px;
    padding: 2.5rem 3rem;
    box-shadow: 0 0 15px rgba(30, 215, 96, 0.15);
    margin-bottom: 3rem;
    transition: box-shadow 0.3s ease;
  }
  
  .reservation:hover,
  .delivery:hover {
    box-shadow: 0 0 25px rgba(30, 215, 96, 0.4);
  }
  
  .reservation p,
  .delivery p {
    font-size: 1.1rem;
    margin-top: 1rem;
    color: #ccc;
  }
  
  /* CONTACT INFO */
  .contact ul {
    list-style: none;
    padding-left: 0;
  }
  
  .contact li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #ddd;
  }
  
  /* FOOTER */
  .footer {
    background: #10161d;
    text-align: center;
    padding: 1.75rem 1rem;
    color: #aaa;
    font-size: 14px;
    user-select: none;
    letter-spacing: 0.5px;
    border-top: 1px solid #1ed760;
  }
  
  /* RESPONSIVE STYLES */
  @media (max-width: 1024px) {
    .hero h1 {
      font-size: 2.4rem;
    }
  
    .hero p {
      font-size: 1.2rem;
    }
  
    section {
      padding: 3rem 1.5rem;
    }
  
    .reservation,
    .delivery {
      padding: 2rem 2rem;
    }
  }
  
  @media (max-width: 768px) {
    .nav-container {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .logo {
      margin-bottom: 1rem;
      font-size: 1.5rem;
    }
  
    .navbar {
      width: 100%;
      text-align: left;
    }
  
    /* Hamburger menu toggle visible */
    .menu-toggle {
      display: block;
    }
  
    /* Nav links mobile menu style */
    .nav-links {
      display: none;
      position: absolute;
      top: 58px;
      right: 0;
      background: #10161d;
      width: 100%;
      max-width: 320px;
      flex-direction: column;
      padding: 1.5rem 2rem;
      border-radius: 0 0 0 12px;
      box-shadow: -2px 2px 12px rgba(0,0,0,0.6);
      z-index: 1001;
    }
  
    .nav-links.show {
      display: flex;
    }
  
    .nav-links li {
      margin-bottom: 1.25rem;
    }
  
    .nav-links li:last-child {
      margin-bottom: 0;
    }
  
    .nav-links li a {
      font-size: 1.2rem;
      padding: 0.3rem 0.2rem;
    }
  
    .hero {
      padding: 6rem 1rem 3rem;
      min-height: auto;
    }
  
    .hero h1 {
      font-size: 2rem;
    }
  
    .hero p {
      font-size: 1rem;
    }
  
    section {
      padding: 3rem 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .hero h1 {
      font-size: 1.6rem;
    }
  
    .hero p {
      font-size: 0.9rem;
    }
  
    h2 {
      font-size: 1.6rem;
    }
  
    .nav-links {
      max-width: 280px;
      padding-left: 1rem;
      padding-right: 1rem;
    }
  
    .nav-links li a {
      font-size: 1rem;
    }
  
    section {
      padding: 2.5rem 1rem;
    }
  
    .reservation,
    .delivery {
      padding: 1.5rem 1.5rem;
    }
  }
  