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

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #2c2c2c;
  background: #faf9f6;
  line-height: 1.6;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background: white;
  border-bottom: 1px solid #eaeaea;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 600;
  font-size: 1.2rem;
}

nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
}

.menu-btn {
  display: none;
  font-size: 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* Hero */
.hero {
  height: 70vh;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url("images/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;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 1rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 500;
}

.hero p {
  margin-top: 0.5rem;
  font-size: 1.1rem;
}

/* Sections */
.section {
  padding: 4rem 1rem;
}

.section.light {
  background: #f7f7f7;
}

.content {
  max-width: 900px;
  margin: auto;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.features-grid div {
  background: white;
  padding: 1.2rem;
  border: 1px solid #eaeaea;
  border-radius: 6px;
  text-align: center;
}

/* Accommodation */
.accommodation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.accommodation-item {
  background: white;
  padding: 2rem;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  text-align: center;
}

.accommodation-item h3 {
  color: #8b5a3c;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

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

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Contact */
.contact {
  text-align: center;
}

.email {
  display: inline-block;
  margin-top: 0.5rem;
  color: #000;
  text-decoration: underline;
  font-weight: 500;
}

.contact-info {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* Footer */
.footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
  background: #fff;
  border-top: 1px solid #eaeaea;
}

/* Mobile */
@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: white;
    flex-direction: column;
    display: none;
    width: 200px;
    border: 1px solid #eaeaea;
  }

  nav.open {
    display: flex;
  }

  nav a {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    margin: 0;
  }

  .menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
}
