body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #fffafa;
  color: #4b3f3f;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  background: white;
}

header h1 {
  font-family: 'Playfair Display', serif;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #a67c7c;
}

/* Hero */
.hero {
  height: 90vh;
  background: url('board1.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-text {
  background: rgba(255,255,255,0.7);
  padding: 40px;
  border-radius: 10px;
}

.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5em;
}

.btn {
  background: #e8b4b8;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
}

/* Sections */
section {
  padding: 80px 20px;
  text-align: center;
}

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

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

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

/* Pricing */
.pricing {
  display: grid;
  gap: 20px;
  max-width: 600px;
  margin: auto;
}

.note {
  margin-top: 20px;
  font-style: italic;
}

/* Form */
form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: auto;
}

form input, form textarea, form select {
  margin: 10px 0;
  padding: 12px;
  border: 1px solid #eee;
}

button {
  background: #e8b4b8;
  color: white;
  padding: 12px;
  border: none;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
