/* styles.css */
:root {
  --bg: #FEFDFC;
  --brown-dark: #230301;
  --brown: #816146;
  --green: #56C830;
  --beige: #EBCEA6;
  --red: #F52913;
}

* {
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--brown-dark);
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.header {
  background: var(--bg);
  border-bottom: 1px solid #eee;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  height: 55px;
}

.nav a {
  margin: 0 12px;
  text-decoration: none;
  color: var(--brown-dark);
  font-weight: 500;
}

.btn {
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.hero {
  background: linear-gradient(to right, #fff, var(--beige));
  padding: 80px 0;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-text h1 span {
  color: var(--green);
}

.hero-image img {
  width: 520px;
  border-radius: 30px;
}

.products {
  padding: 80px 0;
}

.products h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.products h2 span {
  color: var(--green);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-card {
  background: #fff;
  border-radius: 25px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.product-card img {
  width: 100%;
  border-radius: 20px;
}

.reservation {
  padding: 80px 0;
  background: linear-gradient(to right, var(--beige), #fff);
}

.reservation-box {
  display: flex;
  gap: 60px;
  align-items: center;
}

.reservation-form {
  background: #fff;
  padding: 40px;
  border-radius: 30px;
  width: 420px;
}

.reservation-form h3 span {
  color: var(--green);
}

.reservation-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.reservation-form input,
.reservation-form select {
  padding: 12px;
  border-radius: 20px;
  border: 1px solid #ddd;
}

.demo-message {
  margin-top: 15px;
  color: var(--red);
  font-weight: 500;
}

.reservation-image img {
  width: 520px;
  border-radius: 30px;
}

.footer {
  padding: 40px 0;
  background: #fff;
  border-top: 1px solid #eee;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-links a {
  margin-left: 15px;
  color: var(--brown);
  text-decoration: none;
}
