/* ============================================
   See the Sea — Components CSS
   Navbar, Hero, About, Gallery, Nearby,
   Reviews, Location, Form, Footer
   ============================================ */

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar--scrolled {
  background: rgba(248, 246, 241, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  padding: 12px 24px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-white);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}

.navbar--scrolled .navbar__logo {
  color: var(--color-teal);
}

.navbar__logo svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar__links a {
  font-size: 0.93rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  transition: color var(--transition);
}

.navbar--scrolled .navbar__links a {
  color: var(--color-charcoal);
}

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

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Language toggle button */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
  background: rgba(255,255,255,0.1);
}

.navbar--scrolled .lang-toggle {
  border-color: var(--color-teal);
  color: var(--color-teal);
  background: transparent;
}

.lang-toggle:hover {
  background: rgba(255,255,255,0.2);
}

.navbar--scrolled .lang-toggle:hover {
  background: var(--color-teal);
  color: var(--color-white);
}

.lang-toggle img {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  display: inline-block;
}

/* Mobile hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar--scrolled .navbar__hamburger span {
  background: var(--color-charcoal);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  /* Fallback image shown until video loads or while video is being set up */
  background-image: url('../images/living-room-sea-clear.jpg');
  background-size: cover;
  background-position: center;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  padding: 20px;
  max-width: 720px;
}

.hero__brand {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 14px;
}

.hero__tagline {
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  line-height: 1.15;
}

body[data-lang="en"] .hero__tagline {
  font-family: var(--font-heading-en);
  font-weight: 600;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: 0.9;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.7);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ---- ABOUT ---- */
.about {
  background: var(--color-warm-white);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.about__text h2 {
  color: var(--color-teal);
  margin-bottom: 20px;
}

.about__text p {
  color: var(--color-charcoal);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about__amenities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 10px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-charcoal);
  transition: box-shadow var(--transition), transform var(--transition);
}

.amenity-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.amenity-item svg {
  width: 26px;
  height: 26px;
  stroke: var(--color-teal);
  stroke-width: 1.8;
  fill: none;
}

.about__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}

.about__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about__image-wrap:hover img {
  transform: scale(1.03);
}

/* ---- GALLERY ---- */
.gallery {
  background: var(--color-white);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  background: var(--color-gray-light);
}

.gallery__item img,
.gallery__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.gallery__item:hover img,
.gallery__item:hover video {
  transform: scale(1.05);
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: background var(--transition);
}

.gallery__play-btn:hover {
  background: rgba(0,0,0,0.45);
}

.gallery__play-btn svg {
  width: 52px;
  height: 52px;
  fill: var(--color-white);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

/* ---- LIGHTBOX ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox--open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__inner img,
.lightbox__inner video {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox__close {
  position: fixed;
  top: 20px;
  right: 20px;
  color: var(--color-white);
  font-size: 2.2rem;
  line-height: 1;
  opacity: 0.85;
  transition: opacity var(--transition);
  z-index: 2001;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
}

.lightbox__close:hover { opacity: 1; background: rgba(0,0,0,0.65); }

.lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-white);
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: background var(--transition);
  z-index: 2001;
}

.lightbox__nav:hover { background: rgba(0,0,0,0.65); }
.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }

/* ---- NEARBY ---- */
.nearby {
  background: var(--color-warm-white);
}

.nearby__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nearby__card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nearby__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.nearby__card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-teal), var(--color-teal-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nearby__card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-white);
  stroke-width: 2;
  fill: none;
}

.nearby__card h3 {
  font-size: 1.1rem;
  color: var(--color-teal);
}

.nearby__card p {
  font-size: 0.93rem;
  color: var(--color-gray);
  line-height: 1.6;
}

/* ---- REVIEWS ---- */
.reviews {
  background: var(--color-white);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.review-card {
  background: var(--color-warm-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(26, 107, 107, 0.08);
}

.review-card__stars {
  display: flex;
  gap: 4px;
}

.review-card__stars svg {
  width: 18px;
  height: 18px;
  fill: var(--color-gold);
}

.review-card__text {
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--color-charcoal);
  flex: 1;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-teal), var(--color-teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.9rem;
}

.review-card__name {
  font-weight: 700;
  font-size: 0.9rem;
}

.review-card__date {
  font-size: 0.8rem;
  color: var(--color-gray);
}

.reviews__empty {
  text-align: center;
  color: var(--color-gray);
  font-size: 1rem;
  padding: 32px;
}

/* ---- LOCATION ---- */
.location {
  background: var(--color-warm-white);
}

.location__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.location__text h2 {
  color: var(--color-teal);
  margin-bottom: 14px;
}

.location__text p {
  color: var(--color-gray);
  line-height: 1.8;
  margin-bottom: 10px;
}

.location__address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--color-teal);
  font-weight: 600;
  font-size: 1rem;
  margin-top: 16px;
}

.location__address svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-teal);
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ---- BOOKING FORM ---- */
.booking {
  background: var(--color-teal);
  color: var(--color-white);
}

.booking .section__header h2 {
  color: var(--color-white);
}

.booking .section__header p {
  color: rgba(255,255,255,0.8);
}

.booking__form {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form__group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.form__group input,
.form__group select,
.form__group textarea {
  background: rgba(255,255,255,0.92);
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--color-charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  direction: inherit;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(232, 168, 56, 0.3);
}

.form__group textarea {
  resize: vertical;
  min-height: 96px;
}

.form__group--full {
  grid-column: 1 / -1;
}

.form__submit-wrap {
  text-align: center;
  margin-top: 8px;
}

.form__submit-wrap .btn {
  font-size: 1.05rem;
  padding: 16px 36px;
  width: 100%;
  justify-content: center;
}

.form__error {
  color: #ff6b6b;
  font-size: 0.8rem;
  margin-top: 3px;
}

/* ---- AVAILABILITY PLACEHOLDER (hidden until enabled) ---- */
.availability-section {
  display: none;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--color-charcoal);
  color: rgba(255,255,255,0.75);
  padding: 48px 24px 32px;
  text-align: center;
}

.footer__logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer__logo svg {
  width: 24px;
  height: 24px;
  fill: var(--color-teal-light);
}

.footer__tagline {
  font-size: 0.9rem;
  margin-bottom: 20px;
  opacity: 0.6;
}

.footer__rules {
  font-size: 0.88rem;
  margin-bottom: 10px;
}

.footer__copyright {
  font-size: 0.8rem;
  opacity: 0.5;
}

.footer__location {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  margin-bottom: 24px;
  opacity: 0.65;
}

.footer__location svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
}

/* ================================================================
   ACCESSIBILITY WIDGET
   ================================================================ */

.a11y-trigger {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-teal, #1A6B6B);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.28);
  transition: transform 0.2s, box-shadow 0.2s;
}

.a11y-trigger:hover,
.a11y-trigger:focus-visible {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* Panel */
.a11y-panel {
  position: fixed;
  bottom: 94px;
  left: 28px;
  z-index: 9998;
  width: 300px;
  max-height: 80vh;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 48px rgba(0,0,0,0.22);
  font-family: 'Assistant', Arial, sans-serif;
  direction: rtl;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.a11y-panel--open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.a11y-panel__header {
  background: var(--color-teal, #1A6B6B);
  color: #fff;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.a11y-panel__close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 2px;
  opacity: 0.85;
  transition: opacity 0.15s;
}

.a11y-panel__close:hover { opacity: 1; }

.a11y-panel__body {
  padding: 16px;
  overflow-y: auto;
  max-height: calc(80vh - 54px);
}

.a11y-section {
  margin-bottom: 18px;
}

.a11y-section__label {
  display: block;
  font-size: 0.72rem;
  color: #999;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
}

.a11y-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.a11y-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* Buttons */
.a11y-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  border: 2px solid #e4e4e4;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  font-size: 0.88rem;
  font-family: inherit;
  color: #333;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  white-space: nowrap;
}

.a11y-btn:hover {
  border-color: var(--color-teal, #1A6B6B);
  color: var(--color-teal, #1A6B6B);
}

.a11y-btn--active,
.a11y-btn[aria-pressed="true"] {
  background: var(--color-teal, #1A6B6B);
  border-color: var(--color-teal, #1A6B6B);
  color: #fff;
}

.a11y-btn--flex {
  flex: 1;
  justify-content: center;
}

.a11y-btn--block {
  flex-direction: column;
  gap: 5px;
  padding: 12px 8px;
  font-size: 0.78rem;
  text-align: center;
}

.a11y-font-display {
  font-size: 0.9rem;
  font-weight: 700;
  min-width: 46px;
  text-align: center;
  color: var(--color-teal, #1A6B6B);
}

.a11y-reset {
  width: 100%;
  padding: 10px;
  border: 2px solid #e4e4e4;
  border-radius: 10px;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 10px;
  transition: border-color 0.15s, color 0.15s;
}

.a11y-reset:hover {
  border-color: #aaa;
  color: #333;
}

.a11y-statement-link {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  color: #bbb;
  text-decoration: none;
  padding-bottom: 4px;
  transition: color 0.15s;
}

.a11y-statement-link:hover {
  color: var(--color-teal, #1A6B6B);
  text-decoration: underline;
}

/* ── Applied accessibility state classes ───────────────────── */

/* Underline links */
.a11y-underline-links a {
  text-decoration: underline !important;
}

/* Pause all animations */
.a11y-pause-animations *,
.a11y-pause-animations *::before,
.a11y-pause-animations *::after {
  animation-play-state: paused !important;
  transition-duration: 0ms !important;
}

/* Readable font */
.a11y-readable-font,
.a11y-readable-font * {
  font-family: Arial, Helvetica, sans-serif !important;
}

/* Text spacing */
.a11y-text-spacing p,
.a11y-text-spacing span,
.a11y-text-spacing li,
.a11y-text-spacing h1,
.a11y-text-spacing h2,
.a11y-text-spacing h3 {
  letter-spacing: 0.12em !important;
  word-spacing: 0.18em !important;
  line-height: 1.9 !important;
}

/* Highlight focus — keyboard + mouse (:focus) + JS tracker (.a11y-focused) */
/* Only active when the feature is ON (.a11y-highlight-focus on <html>) */
.a11y-highlight-focus :focus,
.a11y-highlight-focus :focus-visible,
.a11y-highlight-focus .a11y-focused {
  outline: 4px solid #F5C518 !important;
  outline-offset: 4px !important;
  box-shadow: 0 0 0 8px rgba(245,197,24,0.35) !important;
}
/* Also highlight interactive elements on hover so the effect is immediately visible */
.a11y-highlight-focus a:hover,
.a11y-highlight-focus button:hover,
.a11y-highlight-focus input:hover,
.a11y-highlight-focus select:hover,
.a11y-highlight-focus textarea:hover,
.a11y-highlight-focus [tabindex]:hover {
  outline: 4px solid #F5C518 !important;
  outline-offset: 4px !important;
}

/* High contrast */
[data-a11y-contrast="high"] {
  filter: contrast(150%) !important;
}

/* Dark mode contrast — comprehensive */
[data-a11y-contrast="dark"] body {
  background-color: #0d0d0d !important;
  color: #e8e8e8 !important;
}

/* All text elements */
[data-a11y-contrast="dark"] h1,
[data-a11y-contrast="dark"] h2,
[data-a11y-contrast="dark"] h3,
[data-a11y-contrast="dark"] h4,
[data-a11y-contrast="dark"] h5,
[data-a11y-contrast="dark"] h6,
[data-a11y-contrast="dark"] p,
[data-a11y-contrast="dark"] li,
[data-a11y-contrast="dark"] span,
[data-a11y-contrast="dark"] label,
[data-a11y-contrast="dark"] a,
[data-a11y-contrast="dark"] blockquote {
  color: #e8e8e8 !important;
}

/* Sections & hero */
[data-a11y-contrast="dark"] .section,
[data-a11y-contrast="dark"] .hero {
  background-color: #0d0d0d !important;
}

/* Navbar */
[data-a11y-contrast="dark"] .navbar {
  background: #111 !important;
  border-bottom-color: #333 !important;
}
[data-a11y-contrast="dark"] .navbar a,
[data-a11y-contrast="dark"] .nav__link,
[data-a11y-contrast="dark"] .navbar .brand {
  color: #e8e8e8 !important;
}

/* Cards */
[data-a11y-contrast="dark"] .nearby__card,
[data-a11y-contrast="dark"] .review-card,
[data-a11y-contrast="dark"] .amenity__item,
[data-a11y-contrast="dark"] .gallery__item {
  background: #1c1c1c !important;
  color: #e8e8e8 !important;
  border-color: #3a3a3a !important;
}
/* Review card internal text */
[data-a11y-contrast="dark"] .review-card__text {
  color: #d8d8d8 !important;
}
[data-a11y-contrast="dark"] .review-card__name {
  color: #e8e8e8 !important;
}
[data-a11y-contrast="dark"] .review-card__date {
  color: #999 !important;
}

/* Section backgrounds that use light colors */
[data-a11y-contrast="dark"] .about,
[data-a11y-contrast="dark"] .nearby,
[data-a11y-contrast="dark"] .reviews,
[data-a11y-contrast="dark"] .location,
[data-a11y-contrast="dark"] .booking {
  background-color: #0d0d0d !important;
}

/* Booking form */
[data-a11y-contrast="dark"] .booking__form {
  background: #1c1c1c !important;
  border-color: #3a3a3a !important;
}
[data-a11y-contrast="dark"] .booking__form input,
[data-a11y-contrast="dark"] .booking__form select,
[data-a11y-contrast="dark"] .booking__form textarea {
  background: #2a2a2a !important;
  color: #e8e8e8 !important;
  border-color: #555 !important;
}
[data-a11y-contrast="dark"] .booking__form input::placeholder,
[data-a11y-contrast="dark"] .booking__form textarea::placeholder {
  color: #999 !important;
}

/* Footer */
[data-a11y-contrast="dark"] .footer {
  background: #050505 !important;
  color: #aaa !important;
}
[data-a11y-contrast="dark"] .footer p,
[data-a11y-contrast="dark"] .footer span,
[data-a11y-contrast="dark"] .footer a {
  color: #aaa !important;
}

/* Section headings that have teal color */
[data-a11y-contrast="dark"] .section__title,
[data-a11y-contrast="dark"] .section__subtitle {
  color: #7ecaca !important;
}

/* Icons / SVG that use teal fill */
[data-a11y-contrast="dark"] .amenity__icon svg,
[data-a11y-contrast="dark"] .nearby__icon svg {
  color: #7ecaca !important;
}
