* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: Arial, sans-serif;
  background: #111;
  color: #f5f1e8;
  line-height: 1.6;
}

.page-hero {
  min-height: 55vh;
  padding: 20px 6%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(rgba(0,0,0,0.62), rgba(17,17,17,0.95)),
    url("https://images.unsplash.com/photo-1551024601-bec78aea704b?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 110px;
}

.logo {
  margin-top: 6px;
  color: #d8b15a;
  font-size: 1.8rem;
  font-weight: 700;
}


.return-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.nav-links a {
  color: #1a120d;
  font-size: 0.95rem;
  transition: 0.2s ease;
  text-decoration: none;
}

.return-menu {
  display: inline-block;
  text-decoration: none;
  color: #1a120d;
  background: #d4a25a;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
}

.return-menu:hover {
  background: #e2b777;
  transform: translateY(-1px);
}

.hero-content {
  max-width: 760px;
  padding: 60px 0 30px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 12px;
}

.hero-content p {
  color: #ddd8cf;
}

main {
  padding: 60px 6%;
}

.dessert-menu {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
}

.dessert-heading {
  text-align: center;
  margin-bottom: 1.75rem;
}

.dessert-heading h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #f3f3f3;
}

.dessert-heading p {
  max-width: 650px;
  margin: 0 auto;
  color: #c9c9c9;
  font-size: 1.05rem;
  line-height: 1.7;
}

.dessert-items-grid {
  display: grid;
  gap: 1.25rem;
}

.dessert-card {
  position: relative;
  display: block;
  padding: 2.1rem 1.4rem;
  background: linear-gradient(180deg, rgba(27, 27, 27, 0.98), rgba(20, 20, 20, 0.98));
  border: 1px solid rgba(255, 153, 51, 0.12);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.dessert-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.dessert-info {
  padding-right: 120px;
}

.dessert-info h3 {
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.dessert-info p {
  font-size: 0.95rem;
  opacity: 0.85;
}

.dessert-prices {
  position: absolute;
  top: 18px;
  right: 20px;
  text-align: right;
}

.price-row {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 4px;
}

.size {
  font-size: 0.9rem;
  opacity: 0.8;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #d59a45;
}

footer {
  text-align: center;
  padding: 20px;
  background: #090909;
  color: #999;
  margin-top: 40px;
}

/* responsive */
@media (max-width: 768px) {
  .page-hero {
    min-height: auto;
    padding: 20px 1rem 2rem;
  }

  .navbar {
    margin-bottom: 60px;
  }

  .hero-content {
    max-width: 100%;
    padding: 40px 0 20px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.1;
  }

  .hero-content p {
    font-size: 0.98rem;
  }

  main {
    padding: 45px 1rem;
  }

  .dessert-menu {
    width: 100%;
    padding: 1.75rem 0 2.5rem;
  }

  .dessert-card {
    padding: 1.25rem 1.1rem;
    border-radius: 20px;
  }

  .dessert-info {
    padding-right: 105px;
  }

  .dessert-info h3 {
    font-size: 1.15rem;
  }

  .dessert-info p {
    font-size: 0.92rem;
  }

  .dessert-prices {
    top: 16px;
    right: 16px;
  }

  .price {
    font-size: 1.15rem;
  }

  .size {
    font-size: 0.8rem;
  }
}

@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 40px;
  }

  .nav-links {
    text-align: left;
  }

  .return-wrap {
    align-items: stretch;
  }

  .return-menu {
    width: 100%;
    text-align: center;
  }

  .hero-content {
    padding: 25px 0 10px;
  }

  .hero-content h1 {
    font-size: 1.95rem;
  }

  .dessert-card {
    padding: 1rem;
    border-radius: 18px;
  }

  .dessert-card-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }

  .dessert-info {
    padding-right: 0;
  }

  .dessert-prices {
    position: static;
    text-align: left;
    margin-top: 0.5rem;
  }

  .price-row {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .dessert-info h3 {
    font-size: 1.05rem;
  }

  .dessert-info p {
    font-size: 0.88rem;
  }

  .price {
    font-size: 1.05rem;
  }

  .size {
    font-size: 0.78rem;
  }
}