/* ========================================
   Venus BNB — Styles
   ======================================== */

/* --- Custom Properties --- */
:root {
  --color-black: #04050A;
  --color-gold: #D4AD2B;
  --color-eclipse: #181B38;
  --color-body: #3F4358;
  --color-placeholder: rgba(24, 27, 56, 0.4);
  --color-white: #FFFFFF;
  --color-bg: #FAFAFA;

  --shadow-card: 0 10px 20px rgba(220, 220, 220, 0.25);
  --shadow-booking: -2px 6px 14px rgba(37, 43, 48, 0.4);

  --radius: 30px;
  --radius-sm: 15px;

  --max-width: 1300px;
  --side-padding: 70px;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-body);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button, input, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

address {
  font-style: normal;
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--side-padding);
}

/* --- Section Header --- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-gold);
  letter-spacing: 1.44px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 40px;
  color: var(--color-black);
  line-height: 1.3;
}

.section-title em {
  font-style: italic;
}

.gold {
  color: var(--color-gold);
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 32px 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}

.header.scrolled {
  background: rgba(4, 5, 10, 0.95);
  padding: 16px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--side-padding);
  display: flex;
  align-items: center;
  position: relative;
}



.logo img {
  height: 40px;
  width: auto;
}

.nav {
  display: flex;
  gap: 48px;
  /* Desktop: fixed, centered horizontally, aligned to header */
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 32px 0;
  align-items: center;
  transition: padding 0.3s;
  z-index: 99;
}

.header.scrolled ~ .nav {
  padding: 16px 0;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-white);
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold);
}

.btn-book {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-white);
  border: 1px solid var(--color-white);
  border-radius: var(--radius);
  padding: 8px 32px;
  transition: background 0.3s, color 0.3s;
  margin-left: auto;
}

.btn-book:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 5, 10, 0.7);
}

.hero-content {
  text-align: center;
  margin-top: -80px;
  position: relative;
  z-index: 2;
}

/* Booking Section */
.booking-section {
  padding: 60px 0 80px;
}

.booking-bar {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-card);
}

.booking-bar .booking-form {
  flex-direction: row;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.booking-bar .booking-field {
  flex: 1;
}

.booking-bar .booking-field--narrow {
  flex: 0 0 auto;
}

.booking-bar .booking-divider {
  display: block;
  width: 1px;
  height: 40px;
  background: #E0E0E0;
  margin: 0 20px;
  flex-shrink: 0;
}

.booking-bar .booking-search {
  width: auto;
  height: 48px;
  padding: 0 40px;
  margin: 20px auto 0;
}

.booking-results {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
  margin-top: 30px;
}

.booking-results.visible {
  display: grid;
}

.booking-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
}

#room-options:empty,
#reservation-form:empty {
  display: none;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-gold);
  letter-spacing: 1.44px;
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 60px;
  color: var(--color-white);
  line-height: 1.3;
}

/* Booking Box — removed, replaced by .booking-card */

.booking-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-black);
  letter-spacing: 1.44px;
  margin-bottom: 16px;
  text-align: center;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-field {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 4px;
}

.booking-field-label {
  font-weight: 700;
  font-size: 18px;
  color: var(--color-black);
  line-height: 32px;
  white-space: nowrap;
}

.booking-field-value {
  display: block;
  position: relative;
}

.booking-field-value input,
.booking-field-value select {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-placeholder);
  line-height: 32px;
  cursor: pointer;
  width: 100%;
  padding-right: 28px;
  box-sizing: border-box;
}

.dropdown-icon {
  width: 19px;
  height: 10px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.booking-field-value .flatpickr-wrapper {
  display: block;
  width: 100%;
}

.booking-field-value .flatpickr-input {
  width: 100%;
  box-sizing: border-box;
  padding-right: 28px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-placeholder);
  line-height: 32px;
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
}

/* Flatpickr calendar theme */
.flatpickr-calendar {
  font-family: var(--font-body);
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.flatpickr-months {
  background: var(--color-gold);
  padding: 6px 0;
}

.flatpickr-months .flatpickr-month {
  color: #fff;
  fill: #fff;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-body);
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  fill: #fff;
  color: #fff;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: rgba(255, 255, 255, 0.7);
}

.flatpickr-weekdays {
  background: #fdf6e3;
}

span.flatpickr-weekday {
  color: var(--color-gold);
  font-weight: 700;
  font-size: 11px;
  font-family: var(--font-body);
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.selected:focus {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #fff;
}

.flatpickr-day.today {
  border-color: var(--color-gold);
}

.flatpickr-day.today:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #fff;
}

.flatpickr-day:hover {
  background: #fdf6e3;
  border-color: transparent;
}


.stepper {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 0;
}

.stepper-value {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-placeholder);
  min-width: 16px;
  text-align: center;
}

.stepper-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  background: none;
  font-size: 18px;
  line-height: 1;
  color: var(--color-black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}

.stepper-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.stepper-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.booking-divider {
  display: none;
}

.booking-search {
  width: 100%;
  height: 48px;
  background: var(--color-gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 4px;
}

.booking-search span {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-white);
  letter-spacing: 0.5px;
}

.booking-search:hover {
  background: #c49e24;
}

.booking-search img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

/* Polished date inputs */
.booking-field-value input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
}

.booking-field-value input[type="date"] {
  color-scheme: light;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-body);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, color 0.3s;
}

.booking-field-value input[type="date"]:focus {
  border-bottom-color: var(--color-gold);
  color: var(--color-black);
}

.booking-field-value input[type="date"]:invalid,
.booking-field-value input[type="date"][value=""] {
  color: var(--color-placeholder);
}

/* Room Options Panel */
#room-options {
  text-align: left;
}

.room-options-heading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-black);
  margin-bottom: 16px;
}

.room-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  border: 2px solid transparent;
  gap: 16px;
}

.room-option:hover {
  background: #f5f5f5;
}

.room-option.selected {
  border-color: var(--color-gold);
  background: rgba(212, 173, 43, 0.06);
}

.room-option-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ccc;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}

.room-option.selected .room-option-radio {
  border-color: var(--color-gold);
}

.room-option.selected .room-option-radio::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-gold);
}

.room-option-desc {
  flex: 1;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--color-black);
}

.room-option-price {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--color-gold);
  white-space: nowrap;
}

/* Reservation Contact Form */
#reservation-form {
  text-align: left;
}

.reservation-form-heading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-black);
  margin-bottom: 16px;
}

.btn-confirm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
  padding: 14px 32px;
  background: var(--color-gold);
  color: var(--color-white);
  font-family: var(--font-body);
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s;
}

.btn-confirm:hover {
  background: #c49e24;
}

.btn-confirm-label {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.btn-confirm-phone {
  font-weight: 500;
  font-size: 14px;
  opacity: 0.9;
}


/* ========================================
   THINGS TO DO
   ======================================== */
.things-to-do {
  padding: 80px 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(220, 220, 220, 0.4);
}

.card-image {
  height: 443px;
  overflow: hidden;
}

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

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-body {
  padding: 32px 18px;
  text-align: center;
}

.card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-black);
  line-height: 32px;
  margin-bottom: 16px;
  max-width: 256px;
  margin-left: auto;
  margin-right: auto;
}

.card-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  color: var(--color-body);
  line-height: 1.5;
}

/* ========================================
   FACILITIES
   ======================================== */
.facilities {
  padding: 80px 0;
}

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

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

.facility-icon {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  object-fit: contain;
}

.facility-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--color-eclipse);
  line-height: 32px;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  padding: 80px 0;
  background: var(--color-bg);
}

.testimonial-carousel {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-track {
  overflow: hidden;
}

.testimonial-track-inner {
  display: flex;
  transition: transform 0.4s ease;
}

.testimonial-card {
  min-width: 100%;
  text-align: center;
  padding: 48px 48px 32px;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-bottom: 8px;
}

.testimonial-btn {
  background: none;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.testimonial-btn:hover {
  background: var(--color-gold);
  color: #fff;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.2s;
}

.testimonial-dot.active {
  background: var(--color-gold);
}

.testimonial-stars {
  font-size: 20px;
  color: var(--color-gold);
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  gap: 4px;
}

.testimonial-quote {
  margin-bottom: 32px;
}

.testimonial-quote p {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--color-body);
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  background: #C4C4C4;
  border-radius: 50%;
}

.testimonial-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-black);
}

/* ========================================
   OUR ROOMS
   ======================================== */
.rooms {
  padding: 80px 0;
}

.rooms-list {
  display: flex;
  flex-direction: column;
  gap: 56px;
  margin-top: 72px;
}

.room-entry {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 520px;
}

.room-image {
  width: 65.77%;
  height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-info {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 64px;
  width: 525px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.room-entry--reversed .room-image {
  margin-left: auto;
}

.room-entry--reversed .room-info {
  right: auto;
  left: 0;
}

.room-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: var(--color-black);
  margin-bottom: 8px;
}

.room-price {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-gold);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.room-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  color: var(--color-body);
  line-height: 1.5;
  margin-bottom: 24px;
}

.btn-view {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
  border-radius: var(--radius);
  padding: 14px 32px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}

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

/* ========================================
   MAILING LIST
   ======================================== */
.mailing {
  padding: 80px 0;
  background: var(--color-black);
  text-align: center;
}

.mailing-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 40px;
  color: var(--color-white);
  margin-bottom: 32px;
}

.mailing-form {
  display: flex;
  max-width: 540px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
}

.mailing-form input {
  flex: 1;
  padding: 16px 24px;
  font-size: 16px;
  color: var(--color-black);
  background: var(--color-white);
  border: none;
}

.mailing-form input::placeholder {
  color: var(--color-placeholder);
}

.btn-subscribe {
  padding: 16px 32px;
  background: var(--color-gold);
  color: var(--color-white);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}

.btn-subscribe:hover {
  background: #c49e24;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: 72px 0 48px;
  background: var(--color-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 48px;
  align-items: start;
}

.footer-map {
  width: 100%;
}

.footer-logo {
  margin-bottom: 16px;
  filter: invert(1);
}

.footer-address {
  font-size: 16px;
  color: var(--color-body);
  line-height: 1.7;
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-black);
  margin-bottom: 12px;
}

.footer-heading-line {
  width: 30px;
  height: 2px;
  background: var(--color-gold);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links a {
  font-size: 16px;
  color: var(--color-body);
  transition: color 0.3s;
}

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

/* ========================================
   COPYRIGHT
   ======================================== */
.copyright {
  background: var(--color-white);
  border-top: 1px solid #E0E0E0;
  padding: 20px 0;
}

.copyright-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright-left {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: var(--color-body);
}

.copyright-left a {
  color: var(--color-body);
  transition: color 0.3s;
}

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

.copyright-social {
  display: flex;
  gap: 12px;
}

.copyright-social a {
  color: var(--color-body);
  transition: color 0.3s;
}

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

/* ========================================
   LANGUAGE TOGGLE
   ======================================== */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  padding: 4px 0;
}

.lang-option {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  padding: 2px 8px;
  transition: color 0.3s;
}

.lang-option.active {
  color: var(--color-white);
}

.lang-toggle .lang-option:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.lang-toggle--nav {
  display: none;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
  :root {
    --side-padding: 40px;
  }

  .hero-title {
    font-size: 48px;
  }

  .room-info {
    width: 440px;
    padding: 48px;
  }

  .facilities-grid {
    gap: 40px 60px;
  }
}

@media (max-width: 992px) {
  .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
    transform: none;
    background: rgba(4, 5, 10, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 200;
    transition: none;
  }

  .nav.open {
    display: flex;
  }

  .nav-link {
    font-size: 24px;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
    z-index: 201;
  }

  .btn-book {
    display: none;
  }

  .lang-toggle--header {
    display: none;
  }

  .lang-toggle--nav {
    display: flex;
    margin-top: 16px;
  }

  .booking-bar .booking-form {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .booking-bar .booking-field--narrow {
    flex: 1 1 auto;
  }

  .booking-bar .booking-divider {
    display: none;
  }

  .booking-bar .booking-search {
    width: 100%;
    margin-top: 4px;
  }

  .booking-bar {
    max-width: 500px;
    margin: 0 auto;
  }

  .booking-results {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 30px auto 0;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    max-width: 413px;
    margin: 0 auto;
  }

  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 48px;
  }

  .room-entry {
    flex-direction: column;
    min-height: auto;
  }

  .room-image {
    width: 100%;
    height: 360px;
  }

  .room-info {
    position: relative;
    width: 100%;
    top: auto;
    right: auto;
    left: auto;
    transform: none;
    margin-top: -40px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .room-entry--reversed .room-info {
    left: auto;
    right: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  :root {
    --side-padding: 20px;
  }

  .hero {
    height: 600px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .booking-bar {
    max-width: 100%;
  }

  .booking-results {
    max-width: 100%;
  }

  .room-option {
    padding: 10px 12px;
    gap: 10px;
  }

  .room-option-desc {
    font-size: 13px;
  }

  .room-option-price {
    font-size: 13px;
  }

  .section-title {
    font-size: 30px;
  }

  .facilities-grid {
    grid-template-columns: 1fr;
  }

  .mailing-form {
    flex-direction: column;
    border-radius: 0;
  }

  .mailing-form input {
    border-radius: var(--radius);
    margin-bottom: 12px;
  }

  .btn-subscribe {
    border-radius: var(--radius);
  }

  .mailing-title {
    font-size: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .copyright-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .copyright-left {
    flex-direction: column;
    gap: 8px;
  }
}
