/* ===== HOLIDAY HOME BRUGES DE PEPEL ===== */
/* Refined, elegant hospitality aesthetic */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --cream: #f5f0e8;
  --warm-white: #faf8f4;
  --dark: #1a1612;
  --dark-mid: #2d2620;
  --gold: #a8884a;
  --gold-light: #c4a76a;
  --text: #3a322a;
  --text-light: #6b5e52;
  --border: #e0d5c5;
  --nav-h: 70px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  font-weight: 300;
  line-height: 1.7;
  font-size: 16px;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(26, 22, 18, 0.95);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  border-bottom: 1px solid rgba(168, 136, 74, 0.3);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--gold-light);
  text-decoration: none;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold-light);
}

.lang-switcher {
  display: flex;
  gap: 12px;
  align-items: center;
}

.lang-switcher a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.lang-switcher a:hover, .lang-switcher a.active {
  color: var(--gold-light);
}

.nav-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.2);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 1.5px;
  background: rgba(255,255,255,0.8);
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero:hover .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,16,12,0.3) 0%,
    rgba(20,16,12,0.5) 50%,
    rgba(20,16,12,0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.hero-tagline {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 8vw, 90px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
}

.hero-welcome {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 48px;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.hero-welcome span { color: var(--gold-light); }

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 36px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.hero-cta:hover {
  background: var(--gold);
  color: var(--dark);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ===== SECTIONS ===== */
section {
  padding: 100px 40px;
}

.section-label {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--dark);
}

h2 em { font-style: italic; color: var(--gold); }

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--dark-mid);
}

p { color: var(--text-light); margin-bottom: 16px; }

.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}

/* ===== BADGES ===== */
.badges {
  background: var(--dark);
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.badge {
  text-align: center;
  color: rgba(255,255,255,0.7);
}

.badge-icon {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}

.badge-text {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ===== FEATURES GRID ===== */
.features {
  background: var(--cream);
}

.features-grid {
  max-width: 1100px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-card {
  padding: 40px 32px;
  background: white;
  border-top: 2px solid var(--gold);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

/* ===== GALLERY ===== */
.gallery-grid {
  max-width: 1200px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  min-height: 220px;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ===== PRICES ===== */
.prices-section {
  background: var(--dark);
  color: white;
}

.prices-section .section-label {
  color: var(--gold-light);
}

.prices-section h2 {
  color: white;
}

.prices-section p {
  color: rgba(255,255,255,0.6);
}

.pricing-cards {
  max-width: 900px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.pricing-card {
  border: 1px solid rgba(168,136,74,0.3);
  padding: 40px;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--gold);
}

.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-size: 9px;
  letter-spacing: 0.2em;
  padding: 4px 16px;
  font-weight: 500;
}

.pricing-card h3 {
  color: var(--gold-light);
  font-size: 20px;
  margin-bottom: 8px;
}

.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: white;
  line-height: 1;
  margin: 16px 0;
}

.price-amount small {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
}

.price-note {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.price-list {
  list-style: none;
  margin-bottom: 32px;
}

.price-list li {
  color: rgba(255,255,255,0.7);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-list li::before {
  content: '✓';
  color: var(--gold);
  font-size: 12px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: 'Jost', sans-serif;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}

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

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold-light);
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ===== LOCATION / BRUGES ===== */
.location-section {
  background: var(--cream);
}

.location-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.location-image {
  position: relative;
}

.location-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.location-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--gold);
  z-index: -1;
}

/* ===== ACTIVITIES ===== */
.activities-grid {
  max-width: 1100px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.activity-card {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.activity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.activity-card:hover img {
  transform: scale(1.1);
}

.activity-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,16,12,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.activity-overlay h3 {
  color: white;
  font-size: 22px;
  margin: 0;
}

.activity-overlay p {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  margin: 6px 0 0;
}

/* ===== CONTACT ===== */
.contact-section {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  margin-top: 40px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-item-icon {
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-item-text strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-form {
  margin-top: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: white;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  padding: 60px 40px 32px;
  color: rgba(255,255,255,0.5);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-heading {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

/* ===== AVAILABILITY PAGE ===== */
.avail-info {
  max-width: 700px;
  margin: 60px auto 0;
  text-align: center;
}

.avail-info p {
  font-size: 18px;
  margin-bottom: 32px;
}

/* ===== INNER PAGE HERO ===== */
.page-hero {
  height: 320px;
  margin-top: var(--nav-h);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,16,12,0.85) 0%, rgba(20,16,12,0.3) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  color: white;
}

.page-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 300;
}

/* ===== TABLES ===== */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}

.price-table th {
  background: var(--gold);
  color: var(--dark);
  padding: 12px 16px;
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

.price-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text);
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table tr:hover td {
  background: var(--cream);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  
  section { padding: 70px 24px; }
  
  .features-grid,
  .activities-grid,
  .pricing-cards {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .location-inner,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .hero-welcome {
    gap: 16px;
    font-size: 12px;
  }
  
  .badges {
    gap: 32px;
    padding: 32px 20px;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item.large {
    grid-column: span 1;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .pricing-cards {
    grid-template-columns: 1fr;
  }
}

/* ===== MOBILE NAV ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--gold-light);
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 28px;
  cursor: pointer;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 300;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.container { max-width: 1100px; margin: 0 auto; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }

/* Scroll padding for fixed nav */
#accommodation, #prices, #location, #activities, #contact {
  scroll-margin-top: var(--nav-h);
}
