/* ========================================
   GLOBAL STYLES
======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  background: #f8f6f3;
  color: #2b2b2b;
  line-height: 1.7;
  overflow-x: hidden;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* GOLD */
:root {
  --gold: #d4af37;
  --gold-darker: #b9982d;
  --dark: #1b1b1b;
  --light: #f8f6f3;
}
/* Titels galerij centreren */
.gallery-room h3 {
  text-align: center !important;
  width: 100%;
  font-size: 26px;
  margin: 0 auto 18px auto;
}

/* ========================================
   BUTTONS
======================================== */
.btn-primary {
  background: var(--gold);
  padding: 12px 26px;
  border-radius: 30px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.btn-primary:hover {
  background: var(--gold-darker);
}

.btn-secondary {
  border: 2px solid var(--gold);
  padding: 12px 26px;
  border-radius: 30px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: var(--gold);
  color: white;
}

/* ========================================
   HEADER
======================================== */
.header {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 15px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: var(--dark);
}

.nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: 0.3s;
}

.nav a:hover {
  color: var(--gold);
}

.nav-cta {
  margin-left: 20px;
}

/* MOBILE MENU */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
  height: 100vh;
  background: url("img/living.JPG") center/cover no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-content {
  position: relative;
  text-align: center;
  color: white;
  max-width: 700px;
}

.hero h1 {
  font-size: 46px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 28px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* ========================================
   SECTIONS
======================================== */
.section {
  padding: 90px 0;
}

.section h2 {
  font-size: 36px;
  margin-bottom: 16px;
  text-align: center;
}

.section p {
  font-size: 18px;
  text-align: center;
}

/* ========================================
   OVER HET HUIS
======================================== */
/* Over het huis – premium cards zoals screenshot */
/* Premium grid (over het huis + voorzieningen) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 40px;
}

/* Luxe feature cards */
.feature-card {
  background: #f5f5f7;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  border: 1px solid rgba(0,0,0,0.04);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.10);
}

.feature-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1a1a1a;
}

.feature-card p {
  font-size: 16px;
  color: #666;
}

/* Mobile verbetering */
@media (max-width: 700px) {
  .feature-card {
    text-align: center;
  }
}



/* ========================================
   VOORZIENINGEN GRID
======================================== */
.amenities-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 30px;
  font-size: 18px;
  text-align: center;
}

.amenities-grid li {
  background: white;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* ========================================
   GALERIJ
======================================== */
.galerij h2 {
  text-align: center;
  margin-bottom: 20px;
}

.gallery-room {
  margin-top: 40px;
}

.gallery-room h3 {
  text-align: left;
  margin-bottom: 12px;
  font-size: 26px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* ========================================
   BOEKINGSFORMULIER
======================================== */
.booking-form {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  max-width: 650px;
  margin: 30px auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-form label {
  font-weight: 600;
}

.booking-form input,
.booking-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.form-row-2 {
  display: flex;
  gap: 16px;
}

.form-row-2 div {
  flex: 1;
}
.price-box {
  margin-top: 20px;
  background: #fff7e2;
  border: 1px solid #d4af37;
  padding: 20px;
  border-radius: 14px;
  text-align: center;
  font-size: 18px;
  display: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.price-box strong {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: #1f1f1f;
}

/* ========================================
   CONTACT
======================================== */
.contact-list {
  list-style: none;
  font-size: 18px;
  margin-top: 20px;
}

.contact-list li {
  padding: 6px 0;
  text-align: center;
}

.contact a {
  color: var(--gold);
  font-weight: 600;
}

/* ========================================
   FOOTER
======================================== */
.footer {
  background: #111;
  color: #ccc;
  padding: 50px 0 20px 0;
  text-align: center;
}

.footer-logo {
  color: var(--gold);
  font-size: 26px;
  margin-bottom: 10px;
}

.footer-bottom {
  margin-top: 12px;
  font-size: 14px;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 900px) {

  .nav {
    display: none;
    position: absolute;
    right: 20px;
    top: 80px;
    background: white;
    padding: 20px;
    flex-direction: column;
    border-radius: 14px;
    gap: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }

  .nav.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

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

  .hero-buttons {
    flex-direction: column;
  }

  .form-row-2 {
    flex-direction: column;
  }
}
