* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

body {
  background: #f4f9ff;
  color: #333;
}

/* ===== HEADER ===== */
header {
  height: 100vh;
  background:
    linear-gradient(rgba(0, 80, 160, 0.6), rgba(0, 80, 160, 0.6)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e")
      center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

header h1 {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 2px;
}

header p {
  margin: 20px 0;
  font-size: 1.3rem;
  max-width: 700px;
}

header a {
  text-decoration: none;
  padding: 14px 40px;
  background: #1e90ff;
  color: white;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

header a:hover {
  background: #0b63c9;
}

/* ===== MENU ===== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 60, 120, 0.95);
  padding: 15px 0;
  z-index: 1000;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

/* ===== SECTION ===== */
section {
  padding: 80px 10%;
}

section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #005bbb;
  margin-bottom: 40px;
}

/* ===== OVERVIEW ===== */
.overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.overview img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===== FOOD ===== */
.food {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.food-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.food-card:hover {
  transform: translateY(-10px);
}

.food-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.food-card div {
  padding: 20px;
}

/* ===== VIDEO ===== */
.video-box {
  display: flex;
  justify-content: center;
}

.video-box iframe {
  width: 80%;
  height: 450px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, #004e92, #000428);
  color: white;
  text-align: center;
  padding: 50px 20px;
}

footer h3 {
  margin-bottom: 10px;
  font-size: 1.8rem;
}

footer p {
  opacity: 0.9;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  header h1 {
    font-size: 2.8rem;
  }
  .overview {
    grid-template-columns: 1fr;
  }
  .video-box iframe {
    width: 100%;
    height: 250px;
  }
}
