* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f6f1e7;
  color: #2b2b2b;
  line-height: 1.6;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  background-color: #f6f1e7;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;

}


.logo img {
  display: block;
  height: 102px;
  width: auto;
}


.nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #2b2b2b;
  font-size: 15px;
}

.nav a:hover {
  color: #b83a2d;
}


/* HERO */
.hero {
  padding: 100px 40px;
  text-align: center;
  background-image: 
    linear-gradient(
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.45)
    ),
    url("hero.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}


.hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 14px;
  color: #ffffff;
}

.hero p {
  font-size: 18px;
  color: #eaeaea;
  margin-bottom: 32px;
}


.buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}


.btn {
  padding: 14px 28px;
  background-color: #b83a2d;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}


.btn.outline {
  background-color: transparent;
  color: white;
  border: 1.5px solid #b83a2d;
}

.btn:hover {
  background-color: #a83226;
}

.btn.outline:hover {
  background-color: rgba(184, 58, 45, 0.08);
}


/* SECTIONS */
.section {
  padding: 60px 40px;
}

.section h2 {
  margin-bottom: 20px;
  color: #6b1f1a;
}

.light {
  background-color: #fffaf2;
}

/* MENU CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  padding: 20px;
  background-color: white;
  border-radius: 8px;
}

/* FOOTER */
.footer {
  padding: 20px;
  text-align: center;
  background-color: #6b1f1a;
  color: white;
}

@media (max-width: 600px) {
  .hero {
    padding: 70px 20px;
  }

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

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

  .btn {
    width: 100%;
    max-width: 280px;
  }
  
}

/* End of style.css */


