/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow: #FFC800;
  --yellow-light: #FFD740;
  --yellow-dark: #E6B400;
  --black: #0a0a0a;
  --black-soft: #1a1a1a;
  --white: #fff;
  --gray: #555;
  --gray-light: #f2f2f2;
  --border: #222;
  --radius: 0px;
  --radius-sm: 0px;
  --shadow: 0 4px 0 var(--black);
  --shadow-lg: 0 6px 0 var(--black);
  --transition: 0.2s ease;
  --max-width: 1200px;
}

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&display=swap');

html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--black);
  background: var(--yellow);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--black); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--black);
  color: var(--yellow);
  border: 3px solid var(--black);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn:hover { background: var(--white); color: var(--black); text-decoration: none; transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--black); }
.btn:active { transform: translate(0, 0); box-shadow: none; }
.btn:disabled { background: #999; border-color: #999; color: #666; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 18px 42px; font-size: 1.15rem; }
.btn-full { width: 100%; }

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 3px solid var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--yellow); }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  background: var(--yellow);
  border-bottom: 3px solid var(--black);
  z-index: 100;
  padding: 14px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.logo span { color: var(--black); }
.logo:hover { color: var(--black); text-decoration: none; }

.site-header nav {
  display: flex;
  gap: 28px;
}
.site-header nav a {
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: opacity var(--transition);
}
.site-header nav a:hover { opacity: 0.6; text-decoration: none; }

/* ===== HERO GALLERY ===== */
.hero-gallery {
  position: relative;
  overflow: hidden;
  background: var(--black);
  max-height: 600px;
  border-bottom: 3px solid var(--black);
}
.gallery-container {
  position: relative;
  width: 100%;
  max-height: 600px;
}
.gallery-slides { position: relative; width: 100%; height: 600px; }
.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.slide.active { opacity: 1; }
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.gallery-prev, .gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--yellow);
  color: var(--black);
  border: 3px solid var(--black);
  padding: 14px 18px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition);
}
.gallery-prev:hover, .gallery-next:hover { background: var(--white); }
.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }

.gallery-counter {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--yellow);
  color: var(--black);
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  border: 3px solid var(--black);
  z-index: 10;
}

.gallery-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.gallery-dot {
  width: 12px;
  height: 12px;
  background: rgba(255,200,0,0.4);
  cursor: pointer;
  transition: background var(--transition);
  border: 2px solid var(--black);
}
.gallery-dot.active { background: var(--yellow); }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--yellow);
  font-size: 2rem;
  cursor: pointer;
  padding: 16px;
  z-index: 10;
  font-weight: 700;
}
.lightbox-close { top: 16px; right: 24px; font-size: 2.5rem; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ===== HERO TEXT ===== */
.hero-text {
  padding: 56px 0 48px;
  text-align: center;
  background: var(--yellow);
}
.hero-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.badge {
  background: var(--black);
  color: var(--yellow);
  border: 2px solid var(--black);
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -1px;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--black-soft);
  max-width: 640px;
  margin: 0 auto 28px;
  font-weight: 500;
}

/* ===== PLATFORM LINKS ===== */
.platform-links {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 700;
}
.platform-links span { color: var(--gray); }
.platform-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 3px solid var(--black);
  color: var(--black);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: all var(--transition);
}
.platform-links a svg { flex-shrink: 0; }
.platform-links a:hover { background: var(--black); color: var(--yellow); text-decoration: none; }

/* ===== SECTIONS ===== */
.section { padding: 72px 0; }
.section-alt { background: var(--white); border-top: 3px solid var(--black); border-bottom: 3px solid var(--black); }
.section h2 {
  font-size: 2.4rem;
  margin-bottom: 12px;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.section-subtitle {
  text-align: center;
  color: var(--black-soft);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  margin-top: 24px;
}
.about-text p { margin-bottom: 16px; color: var(--black-soft); font-weight: 500; }
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.highlight {
  background: var(--white);
  padding: 18px 22px;
  border: 3px solid var(--black);
  box-shadow: 4px 4px 0 var(--black);
}
.highlight strong { display: block; color: var(--black); margin-bottom: 4px; font-size: 1.05rem; }
.highlight span { color: var(--black-soft); font-size: 0.9rem; }

/* ===== AMENITIES ===== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.amenity {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--yellow);
  border: 3px solid var(--black);
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 3px 3px 0 var(--black);
}
.amenity-icon { font-size: 1.4rem; }

/* ===== CALENDAR ===== */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.calendar-wrapper {
  background: var(--white);
  border: 3px solid var(--black);
  padding: 24px;
  box-shadow: 6px 6px 0 var(--black);
}
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.calendar-header h3 { font-size: 1.15rem; font-weight: 700; }
.cal-nav {
  background: var(--yellow);
  border: 3px solid var(--black);
  padding: 8px 16px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  transition: all var(--transition);
}
.cal-nav:hover { background: var(--black); color: var(--yellow); }

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day-header {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--black);
  padding: 8px 0;
  text-transform: uppercase;
}
.cal-day {
  text-align: center;
  padding: 10px 0;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  border: 2px solid transparent;
}
.cal-day:hover:not(.booked):not(.past):not(.empty) { background: var(--yellow); border-color: var(--black); }
.cal-day.past { color: #bbb; cursor: default; }
.cal-day.booked { background: #1a1a1a; color: #fff; cursor: not-allowed; }
.cal-day.available { background: var(--yellow-light); color: var(--black); }
.cal-day.selected { background: var(--black); color: var(--yellow); }
.cal-day.in-range { background: var(--yellow); color: var(--black); }
.cal-day.empty { cursor: default; }

.calendar-legend {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--black);
}
.legend-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 6px;
  vertical-align: middle;
  border: 2px solid var(--black);
}
.legend-dot.available { background: var(--yellow-light); }
.legend-dot.booked { background: var(--black); }
.legend-dot.selected { background: var(--black); }

/* ===== BOOKING FORM ===== */
.booking-form-wrapper {
  position: sticky;
  top: 80px;
}
.booking-form {
  background: var(--white);
  border: 3px solid var(--black);
  padding: 28px;
  box-shadow: 6px 6px 0 var(--black);
}
.price-display {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--black);
}
.price-amount { font-size: 2.4rem; font-weight: 700; color: var(--black); }
.price-label { font-size: 1rem; color: var(--gray); font-weight: 500; }

.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.form-group input, .form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 3px solid var(--black);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--black);
  background: var(--white);
  font-family: inherit;
  transition: all var(--transition);
}
.form-group input:focus, .form-group select:focus {
  outline: none;
  background: var(--yellow-light);
}

.price-breakdown {
  background: var(--yellow-light);
  border: 3px solid var(--black);
  padding: 16px;
  margin-bottom: 20px;
}
.price-line {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--black-soft);
  font-weight: 500;
}
.price-line.price-total {
  border-top: 3px solid var(--black);
  margin-top: 8px;
  padding-top: 12px;
  font-weight: 700;
  color: var(--black);
  font-size: 1.1rem;
}

.booking-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 12px;
  font-weight: 500;
}

/* ===== REVIEWS ===== */
.reviews-header {
  text-align: center;
  margin-bottom: 32px;
}
.reviews-rating {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--black);
  margin-right: 8px;
}
.reviews-count { font-size: 1rem; color: var(--gray); font-weight: 700; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--white);
  border: 3px solid var(--black);
  padding: 24px;
  box-shadow: 4px 4px 0 var(--black);
}
.review-stars { color: var(--black); margin-bottom: 12px; font-size: 1.1rem; }
.review-card p { color: var(--black-soft); font-size: 0.9rem; line-height: 1.6; margin-bottom: 12px; font-weight: 500; }
.review-author { font-size: 0.85rem; color: var(--black); font-weight: 700; text-transform: uppercase; }

/* ===== LOCATION ===== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 24px;
}
.location-distances ul { list-style: none; }
.location-distances li {
  padding: 12px 0;
  border-bottom: 3px solid var(--black);
  font-size: 0.95rem;
  color: var(--black-soft);
  font-weight: 500;
}
.location-distances h3 { margin-bottom: 8px; font-weight: 700; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--black);
  color: var(--yellow);
  text-align: center;
  border-top: 3px solid var(--black);
}
.cta-section h2 { color: var(--yellow); }
.cta-section p { color: rgba(255,200,0,0.8); margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; font-weight: 500; }
.cta-section .btn { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.cta-section .btn:hover { background: var(--white); color: var(--black); border-color: var(--white); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--black);
  color: var(--yellow);
  padding: 56px 0 28px;
  border-top: 3px solid var(--yellow);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.site-footer h4 { color: var(--yellow); margin-bottom: 12px; font-weight: 700; text-transform: uppercase; }
.site-footer p { font-size: 0.9rem; line-height: 1.6; color: rgba(255,200,0,0.7); }
.site-footer ul li { margin-bottom: 8px; }
.site-footer a { color: rgba(255,200,0,0.7); }
.site-footer a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 2px solid rgba(255,200,0,0.2);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,200,0,0.5);
}

/* ===== BOOKING BANNER ===== */
.booking-banner {
  position: fixed;
  top: 60px;
  left: 0; right: 0;
  z-index: 200;
  padding: 16px 0;
  text-align: center;
  font-weight: 700;
  border-bottom: 3px solid var(--black);
}
.banner-success { background: var(--yellow); color: var(--black); }
.banner-cancel { background: var(--white); color: var(--black); }
.banner-close {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: inherit;
  font-weight: 700;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .booking-layout { grid-template-columns: 1fr; }
  .booking-form-wrapper { position: static; }
  .about-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-header nav { display: none; }
  .hero-text h1 { font-size: 2rem; }
  .gallery-slides { height: 350px; }
  .hero-gallery { max-height: 350px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  .section h2 { font-size: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .booking-form { padding: 20px; }
}

@media (max-width: 480px) {
  .amenities-grid { grid-template-columns: 1fr; }
  .hero-badges { flex-direction: column; align-items: center; }
  .gallery-slides { height: 260px; }
  .hero-gallery { max-height: 260px; }
  .hero-text h1 { font-size: 1.7rem; }
}

/* ===== pSEO PAGE STYLES ===== */
.seo-hero {
  background: var(--black);
  color: var(--yellow);
  padding: 64px 0;
  text-align: center;
  border-bottom: 3px solid var(--yellow);
}
.seo-hero h1 { color: var(--yellow); font-size: 2.4rem; margin-bottom: 16px; letter-spacing: -0.5px; }
.seo-hero p { color: rgba(255,200,0,0.8); max-width: 700px; margin: 0 auto 28px; font-weight: 500; }

.seo-content {
  padding: 56px 0;
}
.seo-content h2 { text-align: left; margin-bottom: 16px; }
.seo-content p { color: var(--black-soft); margin-bottom: 16px; line-height: 1.7; font-weight: 500; }
.seo-content ul { margin-bottom: 16px; padding-left: 20px; list-style: disc; }
.seo-content li { color: var(--black-soft); margin-bottom: 8px; font-weight: 500; }

.seo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 32px 0;
}
.seo-gallery img { width: 100%; height: 180px; object-fit: cover; border: 3px solid var(--black); }

.seo-cta {
  background: var(--black);
  border: 3px solid var(--black);
  padding: 36px;
  text-align: center;
  margin: 36px 0;
}
.seo-cta h3 { margin-bottom: 12px; color: var(--yellow); font-size: 1.4rem; }
.seo-cta p { margin-bottom: 20px; color: rgba(255,200,0,0.8); }
.seo-cta .btn { background: var(--yellow); color: var(--black); border-color: var(--yellow); }

.related-links {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 3px solid var(--black);
}
.related-links h3 { margin-bottom: 16px; font-weight: 700; }
.related-links a {
  display: inline-block;
  margin: 0 8px 8px 0;
  padding: 8px 18px;
  background: var(--black);
  border: 2px solid var(--black);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--yellow);
}
.related-links a:hover { background: var(--yellow); color: var(--black); text-decoration: none; }
