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

body {
  font-family: 'Inter', sans-serif;
  color: #2f3e2f;
  background: #f7f9f5;
  line-height: 1.7;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  position: fixed;
  width: 100%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  z-index: 100;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  letter-spacing: 2px;
}

.header nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #3a5f3a;
  font-weight: 500;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("assets/hero.jpg") center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  margin-bottom: 12px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-btn .btn,
.hero-btn .btn-outline {
  padding: 12px 26px;
  margin: 0 8px;
  border-radius: 30px;
  text-decoration: none;
}

.btn {
  background: #5f8f5f;
  color: #fff;
}

.btn-outline {
  border: 1px solid #fff;
  color: #fff;
}

/* SECTION */
.section {
  padding: 90px 15%;
  text-align: center;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.desc {
  max-width: 700px;
  margin: auto;
  color: #4a5f4a;
}

/* EXPERIENCE */
.experience {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  padding: 40px 10%;
}

.card img {
  width: 100%;
  border-radius: 12px;
}

.card p {
  margin-top: 12px;
  text-align: center;
}

/* MENU */
.menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.menu-image img {
  width: 100%;
  border-radius: 16px;
}

/* CONTACT */
.contact {
  padding: 80px 20px;
  text-align: center;
  background: #e8efe6;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .experience,
  .menu {
    grid-template-columns: 1fr;
  }

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