:root {
  --primary-green: #2e5a35;
  --accent-terracotta: #a65f45;
  --off-white: #fdfcf9;
  --text-dark: #333333;
  --text-light: #666666;
  --card-bg: #ffffff;
}

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

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: var(--off-white);
  color: var(--text-dark);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 10%;
  background: rgba(253, 252, 249, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-brand-name {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-terracotta);
  letter-spacing: -0.01em;
  line-height: 1;
}

.logo-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dark);
}

.nav-links a:hover {
  color: var(--accent-terracotta);
}

.nav-links a.active {
  color: var(--accent-terracotta);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  padding: 4rem 10%;
  gap: 4rem;
  min-height: 85vh;
}

.hero-content {
  flex: 1;
}

.brand-tag {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: 0.5em;
  margin-bottom: 2rem;
  padding-left: 0.3em;
  /* border-left: 6px solid var(--accent-terracotta); */
  line-height: 1;
}

.hero-content h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  color: var(--accent-terracotta);
  margin-bottom: 2rem;
  font-weight: 700;
}

.hero-content h1 span {
  color: var(--primary-green);
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 500px;
}

.hero-image {
  flex: 1.2;
  height: 600px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.hero-image:hover img {
  transform: scale(1.05);
}

.btn-primary {
  display: inline-block;
  background-color: var(--accent-terracotta);
  color: white;
  padding: 1.25rem 3rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(166, 95, 69, 0.3);
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(166, 95, 69, 0.4);
}

/* Menu Section */
.section-title {
  text-align: center;
  margin: 6rem auto 4rem;
}

.section-title h2 {
  font-size: 3.5rem;
  color: var(--primary-green);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  padding: 0 10% 6rem;
}

.card {
  background: var(--card-bg);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
  transition: 0.4s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
}

.card-img {
  height: 250px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding: 2.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
}

.card-header h3 {
  font-size: 1.8rem;
  color: var(--text-dark);
}

.card-price {
  font-weight: 700;
  color: var(--primary-green);
  font-size: 1.2rem;
}

.card-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-green);
  color: white;
  padding: 1rem;
  border-radius: 15px;
  font-weight: 600;
  gap: 0.5rem;
  margin-top: auto;
}

.btn-whatsapp:hover {
  background-color: #24462a;
}

/* How to order */
.steps-section {
  background:
    linear-gradient(rgba(244, 242, 238, 0.94), rgba(244, 242, 238, 0.94)),
    url("logo.png") center/contain no-repeat;
  padding: 6rem 10%;
  border-radius: 60px;
  margin: 4rem 2rem;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.step {
  text-align: center;
}

.step-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.step-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.step-desc {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Footer */
footer {
  padding: 4rem 10% 2rem;
  border-top: 1px solid #eee;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.social img {
  width: 24px;
}

.credit {
  color: var(--text-light);
  font-size: 0.9rem;
}

.copyright {
  text-align: center;
  font-size: 0.8rem;
  color: #999;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 6rem;
  }

  .hero-content h1 {
    font-size: 3.5rem;
  }

  .hero-content p {
    margin: 0 auto 3rem;
  }

  .hero-image {
    width: 100%;
    height: 400px;
  }

  .steps-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }

  .section-title h2 {
    font-size: 2.5rem;
  }
}
