    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Segoe UI", sans-serif;
    }

    body {
      background: #0f0f0f;
      color: #fff;
      overflow-x: hidden;
    }

    html {
      scroll-behavior: smooth;
    }

    header {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      padding: 22px 8%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(10, 10, 10, 0.55);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .logo {
      font-size: 28px;
      font-weight: 800;
      letter-spacing: 1px;
    }

    .logo span {
      color: #ff7a18;
    }

    nav a {
      color: #fff;
      margin-left: 32px;
      text-decoration: none;
      font-weight: 500;
      position: relative;
    }

    nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 0;
      height: 2px;
      background: #ff7a18;
      transition: 0.35s;
    }

    nav a:hover::after {
      width: 100%;
    }

    .hero {
      min-height: 100vh;
      background:
        linear-gradient(rgba(0,0,0,.68), rgba(0,0,0,.78)),
        url("https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&w=1600&q=80");
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      padding: 0 8%;
    }

    .hero-content {
      max-width: 700px;
      animation: fadeUp 1.2s ease;
    }

    .hero small {
      color: #ff7a18;
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
    }

    .hero h1 {
      font-size: clamp(48px, 7vw, 92px);
      line-height: 1;
      margin: 20px 0;
    }

    .hero p {
      font-size: 20px;
      color: #ddd;
      max-width: 560px;
      line-height: 1.8;
      margin-bottom: 36px;
    }

    .btn {
      display: inline-block;
      padding: 15px 34px;
      border-radius: 40px;
      background: linear-gradient(135deg, #ff7a18, #ff3d00);
      color: #fff;
      text-decoration: none;
      font-weight: 700;
      box-shadow: 0 18px 45px rgba(255, 101, 0, .35);
      transition: .35s;
    }

    .btn:hover {
      transform: translateY(-5px) scale(1.04);
      box-shadow: 0 25px 60px rgba(255, 101, 0, .55);
    }

    section {
      padding: 110px 8%;
    }

    .section-title {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-title span {
      color: #ff7a18;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
    }

    .section-title h2 {
      font-size: 46px;
      margin-top: 12px;
    }

    .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 28px;
    }

    .menu-card {
      background: linear-gradient(145deg, #1b1b1b, #101010);
      border-radius: 28px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.08);
      transition: .4s;
      position: relative;
    }

    .menu-card:hover {
      transform: translateY(-12px);
      border-color: rgba(255,122,24,.6);
      box-shadow: 0 25px 70px rgba(0,0,0,.55);
    }

    .menu-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .menu-card .info {
      padding: 25px;
    }

    .menu-card h3 {
      font-size: 24px;
      margin-bottom: 10px;
    }

    .menu-card p {
      color: #aaa;
      line-height: 1.7;
      margin-bottom: 18px;
    }

    .price {
      color: #ff7a18;
      font-size: 24px;
      font-weight: 800;
    }

    .gallery {
      background: #151515;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .gallery-grid img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      border-radius: 22px;
      transition: .45s;
      filter: brightness(.8);
    }

    .gallery-grid img:hover {
      transform: scale(1.06);
      filter: brightness(1.1);
    }

    .reservation {
      background:
        linear-gradient(rgba(0,0,0,.82), rgba(0,0,0,.82)),
        url("https://images.unsplash.com/photo-1552566626-52f8b828add9?auto=format&fit=crop&w=1600&q=80");
      background-size: cover;
      background-position: center;
    }

    .booking-box {
      max-width: 720px;
      margin: auto;
      background: rgba(255,255,255,.08);
      backdrop-filter: blur(22px);
      border: 1px solid rgba(255,255,255,.14);
      padding: 40px;
      border-radius: 30px;
      box-shadow: 0 30px 90px rgba(0,0,0,.55);
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }


    input, select, textarea {
      width: 100%;
      padding: 16px 18px;
      border-radius: 15px;
      border: 1px solid rgba(255,255,255,.15);
      background: rgba(0,0,0,.45);
      color: #fff;
      outline: none;
      font-size: 15px;
    }

    textarea {
      grid-column: span 2;
      height: 120px;
      resize: none;
    }

    input:focus, select:focus, textarea:focus {
      border-color: #ff7a18;
    }

    .booking-box .btn {
      border: none;
      margin-top: 22px;
      cursor: pointer;
      width: 100%;
      font-size: 17px;
    }

    .location {
      background: #0f0f0f;
    }

    .map-card {
      max-width: 900px;
      width: 70%;
      height: 360px;
      margin: auto;
      border-radius: 30px;
      background-size: cover;
      background-position: center;
      border: 1px solid rgba(255,255,255,.12);
      position: relative;
      overflow: hidden;
    }
    .map-card:hover {
    transform: scale(1.1);
    transform: 0.7 ease;
    box-shadow: 0 0 25px rgba(255, 115, 0, 0.4);
    }

    .map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
    footer {
      padding: 35px;
      text-align: center;
      background: #080808;
      color: #aaa;
    }

    footer span {
      color: #ff7a18;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(45px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(255,61,0,.45);
      }
      70% {
        box-shadow: 0 0 0 28px rgba(255,61,0,0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(255,61,0,0);
      }
    }

    @media (max-width: 900px) {
      header {
        padding: 18px 5%;
      }

      nav {
        display: none;
      }

      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .form-grid {
        grid-template-columns: 1fr;
      }

      textarea {
        grid-column: span 1;
      }
    }

    @media (max-width: 520px) {
      .hero h1 {
        font-size: 46px;
      }

      .gallery-grid {
        grid-template-columns: 1fr;
      }

      section {
        padding: 80px 5%;
      }
    }
    @media (max-width: 768px) {

  header {
    padding: 15px 5%;
    flex-direction: column;
    gap: 15px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  nav a {
    margin: 0;
    font-size: 14px;
  }

  .hero,
  .main {
    min-height: 100vh;
    padding: 120px 5% 60px;
    text-align: center;
    background-position: center bottom;
  }

  .hero h1,
  .main h1 {
    font-size: 38px;
    line-height: 1.1;
  }

  .hero p,
  .main p {
    font-size: 16px;
  }

  .menu-grid,
  .grid,
  .gallery-grid {
    grid-template-columns: 1fr !important;
  }

  .card,
  .dish {
    height: auto;
  }

  .card img,
  .dish img {
    height: 240px;
  }

  .booking-box,
  .reserve-card {
    width: 100%;
    padding: 25px;
  }

  form {
    grid-template-columns: 1fr !important;
  }

  input,
  select,
  textarea,
  button {
    width: 100%;
  }

  .map-card {
    width: 55%;
    height: 280px;
  }

  footer {
    text-align: center;
    padding: 30px 5%;
  }
}
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}
.map-card{
  width: 45% !important;
  height: 300px !important;
}