* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #fffaf5;
  color: #2b211d;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* NAVBAR */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 18px 7%;

  background: rgba(255, 250, 245, 0.95);
  border-bottom: 1px solid #eee0d5;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: #a62929;
}

.navbar nav {
  display: flex;
  gap: 25px;
}

.navbar nav a {
  font-size: 14px;
  font-weight: 600;
}

.navbar nav a:hover {
  color: #b52d2d;
}


/* HERO */

.hero {
  min-height: 85vh;

  display: flex;
  align-items: center;

  padding: 80px 7%;

  background:
    linear-gradient(
      90deg,
      rgba(255, 250, 245, 0.98),
      rgba(255, 250, 245, 0.75),
      rgba(255, 250, 245, 0.2)
    );
}

.hero-text {
  max-width: 650px;
}

.small-title {
  margin-bottom: 12px;

  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;

  color: #b52d2d;
}

.hero h1 {
  margin-bottom: 5px;

  font-size: clamp(48px, 8vw, 90px);
  line-height: 1;

  color: #9d2424;
}

.hero h2 {
  margin-bottom: 20px;

  font-size: clamp(22px, 4vw, 38px);
}

.hero p {
  max-width: 580px;
  font-size: 17px;
  color: #665a54;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}


/* BUTTON */

.btn {
  display: inline-block;

  padding: 13px 23px;

  border-radius: 10px;

  background: #a62929;
  color: white;

  font-weight: 700;

  transition: 0.2s;
}

.btn:hover {
  background: #7f1d1d;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #a62929;
  border: 1px solid #a62929;
}

.btn-outline:hover {
  color: white;
}


/* SECTIONS */

.about,
.menu,
.large-order,
.contact {
  padding: 90px 7%;
}

.about {
  background: white;
}

.about h2,
.menu h2,
.large-order h2,
.contact h2 {
  max-width: 800px;

  margin-bottom: 20px;

  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.15;
}

.about p {
  max-width: 800px;

  margin-bottom: 18px;

  color: #665a54;
  font-size: 17px;
}


/* MENU */

.menu {
  background: #fff6ee;
}

.menu > p:not(.small-title) {
  margin-bottom: 35px;
  color: #665a54;
}

.product-grid {
  display: grid;

  grid-template-columns: repeat(
    auto-fit,
    minmax(250px, 1fr)
  );

  gap: 20px;
}


/* PRODUCT CARD */

.product-card {
  padding: 24px;

  background: white;

  border: 1px solid #eee0d5;
  border-radius: 16px;

  box-shadow: 0 8px 25px rgba(80, 40, 20, 0.06);
}

.product-card h3 {
  margin-bottom: 12px;

  font-size: 21px;
}

.product-card p {
  color: #665a54;
}

.product-select {
  width: 100%;

  margin-top: 15px;
  padding: 12px;

  border: 1px solid #ddd0c5;
  border-radius: 9px;

  background: white;

  font-size: 15px;
}

.product-price {
  display: block;

  margin-top: 12px;

  font-size: 20px;
  font-weight: 800;

  color: #a62929;
}


/* LARGE ORDER */

.large-order {
  background: #a62929;
  color: white;
}

.large-order .small-title {
  color: #ffd4b8;
}

.large-order p {
  max-width: 700px;

  margin-bottom: 25px;

  color: #ffece2;
}

.large-order .btn {
  background: white;
  color: #a62929;
}


/* CONTACT */

.contact {
  background: white;
}

.contact p {
  margin-bottom: 12px;
}

.phone-list {
  display: flex;
  flex-direction: column;

  gap: 8px;

  margin-bottom: 25px;
}

.phone-list a,
.map-link,
.instagram-link {
  color: #a62929;
  font-weight: 700;
}

.phone-list a:hover,
.map-link:hover,
.instagram-link:hover {
  text-decoration: underline;
}


/* FOOTER */

footer {
  padding: 25px 7%;

  background: #211816;

  color: #cfc3bd;

  text-align: center;

  font-size: 13px;
}


/* MOBILE */

@media (max-width: 700px) {

  .navbar {
    padding: 15px 5%;

    flex-direction: column;
    gap: 12px;
  }

  .navbar nav {
    width: 100%;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;
  }

  .navbar nav a {
    font-size: 12px;
  }

  .hero {
    min-height: 75vh;
    padding: 60px 5%;
  }

  .hero h1 {
    font-size: 55px;
  }

  .hero h2 {
    font-size: 25px;
  }

  .hero p {
    font-size: 15px;
  }

  .about,
  .menu,
  .large-order,
  .contact {
    padding: 65px 5%;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

}
