@import url('https://fonts.googleapis.com/css2?family=Aboreto&family=Inter:wght@300;400;600;700&display=swap');

:root {
  --primary-bg: #F2F6FF;
  --primary-box-shadow: #bbc1cd65;
  --dark-accent: black;
  --primary-font-color: black;
  --secondary-font-color: white;
  --component-bg: white;
  --border-color: rgba(255, 255, 255, 0.663);
  --outline-color: #C5C5C5;
  --inverted-color: white;
  --success-color: #10b981;
  --error-color: #ef4444;
  --info-color: #3b82f6;
  --default-font: "Aboreto", system-ui;
  --inter-font: "Inter", sans-serif;
  --pellet-bg: rgba(0,0,0,0.75);
  --pellet-text: white;
  --footer-bg: #0c0c0c;
  --footer-text: #dddddd;
}

.dark {
  --primary-bg: #1C1F26;
  --primary-font-color: white;
  --component-bg: #434343;
  --border-color: #8f8f8f9c;
  --primary-box-shadow: #bbc1cd00;
  --secondary-font-color: white;
  --outline-color: #C5C5C5;
  --inverted-color: black;
  --pellet-bg: rgba(255,255,255,0.15);
  --pellet-text: white;
  --footer-bg: #050505;
  --footer-text: #ccc;
}

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

a {
  text-decoration: none;
}

body {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url('../public/desktop_bg.jpeg');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  font-family: var(--default-font);
  transition: 0.8s;
  overflow-x: hidden;
  width: 100%;
  color: var(--primary-font-color);
}

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 15, 15, 0.65);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 2px 0.4rem 0.02rem var(--primary-box-shadow);
  transition: 0.6s;
  z-index: 999;
  height: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.549);
}

.logo-group {
  display: flex;
  align-items: center;
  color: var(--secondary-font-color);
  gap: 8px;
}

.logo-group h2 {
  letter-spacing: 6px;
  font-weight: 400;
  font-size: 1.6rem;
  color: white;
}

.header img {
  height: 48px;
  margin: 0;
}

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

nav a {
  color: white;
  font-size: 0.9rem;
  letter-spacing: 2px;
  font-weight: 300;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  transition: 0.2s;
}

nav a:hover {
  border-bottom-color: white;
}

/* Hamburger Menu - Mobile */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 1000;
  margin-left: 15px;
}

.hamburger-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

.hamburger-menu.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Navigation Dropdown */
.mobile-nav-dropdown {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(12px);
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  z-index: 998;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav-dropdown.show {
  display: flex;
}

.mobile-nav-dropdown a {
  color: white;
  font-size: 1.1rem;
  letter-spacing: 3px;
  padding: 15px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-dropdown a:last-child {
  border-bottom: none;
}

.mobile-nav-dropdown a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ============= LIGHT SWITCH - FIXED CONTRAST ISSUES ============= */
.light-switch {
  background: #1e1e1e;
  width: 70px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  margin-left: 10px;
  border: none;
  flex-shrink: 0;
}

.light-switch ion-icon {
  margin: 0 5px;
  z-index: 2;
  font-size: 16px;
  transition: color 0.3s ease;
}

/* Dark mode (default) - moon black, sun yellow */
.light-switch ion-icon[name="moon"] {
  color: #000000; /* BLACK - visible against white circle */
}

.light-switch ion-icon[name="sunny"] {
  color: #ffd966; /* Warm yellow - visible on dark background */
}

.light-switch .circle {
  position: absolute;
  left: 38px;
  height: 24px;
  width: 24px;
  background: #ffffff; /* White circle */
  transition: 0.6s;
  z-index: 1;
  border: 1px solid rgba(0,0,0,0.1);
}

/* Light mode - toggle colors for better contrast */
body:not(.dark) .light-switch ion-icon[name="moon"] {
  color: #4a4a4a; /* Dark gray - visible on light circle */
}

body:not(.dark) .light-switch ion-icon[name="sunny"] {
  color: #000000; /* Black - maximum contrast on light background */
}

body:not(.dark) .light-switch .circle {
  background: #f0f0f0; /* Light gray circle */
  left: 12px; /* Moved to left side in light mode */
  border: 1px solid rgba(0,0,0,0.2);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .light-switch {
    width: 60px;
    height: 28px;
    margin-left: 5px;
  }
  
  .light-switch ion-icon {
    font-size: 14px;
  }
  
  .light-switch .circle {
    width: 20px;
    height: 20px;
    left: 34px;
  }
  
  body:not(.dark) .light-switch .circle {
    left: 10px;
  }
}

@media (max-width: 480px) {
  .light-switch {
    width: 55px;
    height: 26px;
  }
  
  .light-switch .circle {
    width: 18px;
    height: 18px;
    left: 32px;
  }
  
  body:not(.dark) .light-switch .circle {
    left: 9px;
  }
  
  .light-switch ion-icon {
    font-size: 12px;
  }
}
/* ============= END LIGHT SWITCH FIXES ============= */

/* Light mode - toggle colors for better contrast */
body:not(.dark) .light-switch ion-icon[name="moon"] {
  color: #4a4a4a; /* Dark gray - visible on light circle background */
}

body:not(.dark) .light-switch ion-icon[name="sunny"] {
  color: #000000; /* Black - maximum contrast for sun icon in light mode */
}

body:not(.dark) .light-switch .circle {
  background: #f0f0f0; /* Light gray circle */
  border: 1px solid rgba(0,0,0,0.2);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .light-switch {
    width: 60px;
    height: 28px;
    margin-left: 5px;
  }
  
  .light-switch ion-icon {
    font-size: 14px;
  }
  
  .light-switch .circle {
    width: 20px;
    height: 20px;
    left: 34px;
  }
}

@media (max-width: 480px) {
  .light-switch {
    width: 55px;
    height: 26px;
  }
  
  .light-switch .circle {
    width: 18px;
    height: 18px;
    left: 32px;
  }
  
  .light-switch ion-icon {
    font-size: 12px;
  }
}
/* ============= END LIGHT SWITCH FIXES ============= */

/* ---------- HERO ---------- */
.hero {
  margin-top: 0;
  padding-top: 120px;
  padding-left: 50px;
  padding-right: 50px;
  min-height: 100vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.greeting {
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: 8px;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.welcome {
  font-size: 1.2rem;
  font-family: var(--inter-font);
  font-weight: 300;
  line-height: 1.7;
  max-width: 750px;
  margin-bottom: 20px;
}

.valentine {
  font-size: 2.2rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: #ffe4e4;
  margin-bottom: 40px;
}

/* ---------- BOOKING PANEL with proper inputs ---------- */
.booking-panel {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 30px 40px;
  width: fit-content;
  min-width: 700px;
  margin-top: 10px;
}

.booking-header {
  font-size: 1.8rem;
  letter-spacing: 6px;
  font-weight: 400;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 20px;
  margin-bottom: 25px;
  font-family: var(--default-font);
}

.booking-grid {
  display: flex;
  align-items: flex-start;
  gap: 70px;
}

.check-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
}

.check-label {
  font-size: 0.9rem;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.8);
  font-family: var(--inter-font);
  font-weight: 400;
  margin-bottom: 5px;
}

/* Input wrappers with icons */
.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.input-icon {
  position: absolute;
  left: 15px;
  font-size: 1.3rem;
  color: white;
  pointer-events: none;
  z-index: 1;
}

.date-input,
.time-input {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  padding: 12px 15px 12px 50px;
  font-size: 1rem;
  font-family: var(--inter-font);
  font-weight: 500;
  letter-spacing: 1px;
  outline: none;
  transition: 0.2s;
  cursor: pointer;
}

.date-input:focus,
.time-input:focus {
  border-color: white;
  background: rgba(255, 255, 255, 0.05);
}

/* Custom date/time input styling */
.date-input::-webkit-calendar-picker-indicator,
.time-input::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
  font-size: 1.2rem;
}

.time-input-wrapper {
  margin-top: -5px;
}

/* Guest selector */
.guest-selector {
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid white;
  padding: 12px 20px;
  background: transparent;
  margin-top: 5px;
  flex-wrap: wrap;
}

.guest-icon {
  font-size: 1.4rem;
  color: white;
}

.guest-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.guest-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid white;
  color: white;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  transition: 0.2s;
  padding: 0;
}

.guest-btn:hover {
  background: white;
  color: black;
}

.guest-controls span:not(.guest-label) {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  min-width: 20px;
  text-align: center;
  font-family: var(--inter-font);
}

.guest-label {
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: white;
  font-family: var(--inter-font);
  font-weight: 500;
}

.guest-divider {
  color: white;
  font-size: 1.2rem;
  margin: 0 5px;
}

/* Check availability button */
.availability-btn {
  background: white;
  color: black;
  border: none;
  font-weight: 700;
  padding: 14px 32px;
  font-size: 0.9rem;
  letter-spacing: 3px;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--default-font);
  border: 1px solid white;
  transition: 0.2s;
  white-space: nowrap;
  margin-top: 10px;
  width: 100%;
}

.availability-btn:hover {
  background: black;
  color: white;
}

.availability-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Price display */
.price-display {
  margin-top: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  font-family: var(--inter-font);
  color: white;
}

.price-display p {
  margin: 8px 0;
  font-size: 1rem;
  letter-spacing: 1px;
}

.price-display strong {
  color: white;
  font-weight: 600;
}

/* ---------- CONTACT MODAL ---------- */
.contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.contact-modal.show {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 90%;
  max-width: 550px;
  z-index: 10001;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-header h3 {
  font-size: 1.5rem;
  letter-spacing: 5px;
  color: white;
  font-family: var(--default-font);
  font-weight: 400;
  margin: 0;
}

.close-modal-btn {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.close-modal-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.close-modal-btn ion-icon {
  font-size: 2rem;
  color: white;
}

.modal-body {
  padding: 30px;
}

.modal-description {
  font-family: var(--inter-font);
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form .input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form .input-group label {
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--inter-font);
  font-weight: 500;
  text-transform: uppercase;
}

.contact-form .input-group input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 14px 18px;
  font-size: 1.05rem;
  font-family: var(--inter-font);
  outline: none;
  transition: 0.2s;
  letter-spacing: 0.5px;
}

.contact-form .input-group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contact-form .input-group input:focus {
  border-color: white;
  background: rgba(255, 255, 255, 0.08);
}

.modal-footer {
  padding: 0 30px 30px 30px;
}

.proceed-btn {
  background: white;
  color: black;
  border: none;
  font-weight: 700;
  padding: 15px 32px;
  font-size: 0.95rem;
  letter-spacing: 3px;
  cursor: pointer;
  font-family: var(--default-font);
  border: 1px solid white;
  transition: 0.2s;
  width: 100%;
}

.proceed-btn:hover {
  background: black;
  color: white;
  border-color: white;
}

.proceed-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Toast notifications */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 16px 24px;
  border-radius: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--inter-font);
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 10000;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast ion-icon {
  font-size: 1.5rem;
}

.toast-error {
  border-color: var(--error-color);
}

.toast-error ion-icon {
  color: var(--error-color);
}

.toast-success {
  border-color: var(--success-color);
}

.toast-success ion-icon {
  color: var(--success-color);
}

.toast-info {
  border-color: var(--info-color);
}

.toast-info ion-icon {
  color: var(--info-color);
}

/* ---------- WHY JD HOMES ---------- */
.whyus {
  background: white;
  padding: 70px 50px;
  margin-top: 0;
  color: black;
}

.dark .whyus {
  background: #1e1e1e;
  color: white;
}

.whyus h1 {
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 10px;
  margin: 30px 0 30px 0;
  border-bottom: 2px solid #aaa;
  display: inline-block;
  padding-bottom: 8px;
}

.justification {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 50px;
}

.whyus img {
  width: 500px;
  height: auto;
  object-fit: cover;
  box-shadow: 10px 10px 0 rgba(0,0,0,0.06);
  margin: 0;
}

.side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 45px;
  flex: 1;
}

.info-group h2 {
  font-size: 1.4rem;
  letter-spacing: 4px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  color: #1f1f1f;
}

.dark .info-group h2 {
  color: #f0f0f0;
}

.info-group p {
  font-family: var(--inter-font);
  font-size: 1rem;
  line-height: 1.5;
  color: #3a3a3a;
  margin: 0;
}

.dark .info-group p {
  color: #ccc;
}

.about-text {
  font-family: var(--inter-font);
  font-size: 1.15rem;
  line-height: 1.7;
  margin: 20px 0 50px 0;
  max-width: 95%;
  color: #2c2c2c;
}

.dark .about-text {
  color: #e0e0e0;
}

/* ---------- EXPLORE SOUTH B ---------- */
.explore-section {
  display: flex;
  gap: 60px;
  margin-top: 30px;
  align-items: flex-start;
}

.explore-text {
  flex: 1;
}

.explore-text p {
  font-family: var(--inter-font);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 40px;
  color: #2c2c2c;
}

.dark .explore-text p {
  color: #e0e0e0;
}

.feature-pellets {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.pellet {
  background: var(--pellet-bg);
  color: var(--pellet-text);
  padding: 14px 26px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 0;
  font-family: var(--inter-font);
  backdrop-filter: blur(4px);
  letter-spacing: 1px;
}

.pellet ion-icon {
  font-size: 1.5rem;
  color: white;
}

.explore-image img {
  width: 450px;
  box-shadow: 10px 10px 0 rgba(0,0,0,0.06);
  margin: 0;
}

.dark .explore-image img {
  box-shadow: 10px 10px 0 #2c2c2c;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 60px 50px 30px;
  font-family: var(--inter-font);
  border-top: 2px solid #3e3e3e;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-brand {
  max-width: 350px;
}

.footer-brand h2 {
  font-family: var(--default-font);
  letter-spacing: 8px;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: white;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links ion-icon {
  font-size: 1.8rem;
  color: white;
  transition: 0.2s;
  padding: 6px;
}

.social-links a:hover ion-icon {
  border-bottom: 1px solid white;
}

.footer-links {
  display: flex;
  gap: 70px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
  color: white;
  font-weight: 500;
}

.footer-col a {
  display: block;
  color: var(--footer-text);
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 0.95rem;
  transition: 0.2s;
}

.footer-col a:hover {
  color: white;
  padding-left: 5px;
}

.footer-col p {
  margin-bottom: 10px;
  color: var(--footer-text);
  font-size: 0.95rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
}

.footer-bottom span {
  font-weight: 600;
  color: white;
}

/* ---------- RESPONSIVE ---------- */

/* Large tablets and small desktops */
@media (max-width: 1200px) {
  .greeting {
    font-size: 4rem;
    letter-spacing: 6px;
  }
  
  .booking-panel {
    min-width: 650px;
  }
  
  .whyus img {
    width: 450px;
  }
  
  .explore-image img {
    width: 400px;
  }
}

/* Tablets */
@media (max-width: 1000px) {
  .header {
    padding: 0 25px;
    height: 70px;
  }
  
  .header img {
    height: 40px;
  }
  
  .logo-group h2 {
    font-size: 1.3rem;
    letter-spacing: 4px;
  }
  
  nav a {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
  }
  
  .hero {
    padding: 100px 30px 50px;
  }
  
  .greeting {
    font-size: 3.5rem;
    letter-spacing: 4px;
  }
  
  .welcome {
    font-size: 1.1rem;
  }
  
  .valentine {
    font-size: 1.8rem;
    letter-spacing: 4px;
  }
  
  .booking-panel {
    min-width: auto;
    width: 95%;
    max-width: 600px;
    padding: 25px 30px;
  }
  
  .booking-header {
    font-size: 1.5rem;
    letter-spacing: 4px;
  }
  
  .booking-grid {
    flex-direction: column;
    gap: 30px;
  }
  
  .whyus {
    padding: 60px 30px;
  }
  
  .whyus h1 {
    font-size: 2.3rem;
    letter-spacing: 6px;
  }
  
  .justification {
    flex-direction: column;
    gap: 40px;
  }
  
  .whyus img {
    width: 100%;
    max-width: 600px;
  }
  
  .side {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .explore-section {
    flex-direction: column;
    gap: 40px;
  }
  
  .explore-image img {
    width: 100%;
    max-width: 600px;
  }
  
  footer {
    padding: 50px 30px 25px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-links {
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .footer-brand {
    max-width: 100%;
  }
}

/* Mobile landscape and small tablets */
@media (max-width: 768px) {
  /* Hide desktop navigation links */
  nav a:not(.light-switch) {
    display: none;
  }
  
  /* Show hamburger menu */
  .hamburger-menu {
    display: flex;
  }
  
  /* Keep light switch visible */
  .light-switch {
    display: flex;
  }
  
  nav {
    gap: 10px;
  }
  
  .greeting {
    font-size: 2.8rem;
    letter-spacing: 3px;
  }
  
  .welcome {
    font-size: 1rem;
  }
  
  .valentine {
    font-size: 1.5rem;
    letter-spacing: 3px;
  }
  
  .booking-panel {
    padding: 20px 25px;
  }
  
  .booking-header {
    font-size: 1.2rem;
    letter-spacing: 3px;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
  
  .check-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }
  
  .date-input,
  .time-input {
    font-size: 0.9rem;
    padding: 10px 12px 10px 45px;
  }
  
  .input-icon {
    font-size: 1.1rem;
    left: 12px;
  }
  
  .guest-selector {
    padding: 10px 15px;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .guest-icon {
    font-size: 1.2rem;
  }
  
  .guest-btn {
    width: 26px;
    height: 26px;
    font-size: 1rem;
  }
  
  .guest-label {
    font-size: 0.75rem;
  }
  
  .availability-btn {
    padding: 12px 24px;
    font-size: 0.8rem;
    letter-spacing: 2px;
  }
  
  .modal-header {
    padding: 20px 25px;
  }
  
  .modal-header h3 {
    font-size: 1.2rem;
    letter-spacing: 3px;
  }
  
  .modal-body {
    padding: 25px;
  }
  
  .modal-footer {
    padding: 0 25px 25px 25px;
  }
  
  .whyus h1 {
    font-size: 2rem;
    letter-spacing: 4px;
  }
  
  .info-group h2 {
    font-size: 1.2rem;
    letter-spacing: 3px;
  }
  
  .info-group p,
  .about-text,
  .explore-text p {
    font-size: 1rem;
  }
  
  .pellet {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .pellet ion-icon {
    font-size: 1.3rem;
  }
  
  .footer-brand h2 {
    font-size: 1.5rem;
    letter-spacing: 6px;
  }
}

/* Mobile portrait */
@media (max-width: 480px) {
  .header {
    padding: 0 15px;
    height: 60px;
  }
  
  .header img {
    height: 35px;
  }
  
  .logo-group h2 {
    font-size: 1.1rem;
    letter-spacing: 3px;
  }
  
  nav {
    gap: 8px;
  }
  
  .mobile-nav-dropdown {
    top: 60px;
  }
  
  .mobile-nav-dropdown a {
    font-size: 1rem;
    padding: 14px 0;
  }
  
  .hero {
    padding: 80px 15px 40px;
  }
  
  .greeting {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }
  
  .welcome {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .welcome br {
    display: none;
  }
  
  .valentine {
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
  }
  
  /* Mobile form inputs - larger and centered */
  .booking-panel {
    padding: 20px 15px;
    width: 100%;
    min-width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .booking-header {
    font-size: 1rem;
    letter-spacing: 2px;
    padding-bottom: 12px;
    margin-bottom: 15px;
    width: 100%;
    text-align: center;
  }
  
  .booking-grid {
    gap: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .check-col {
    gap: 12px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .check-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    width: 100%;
    text-align: left;
    padding-left: 5px;
  }
  
  .input-wrapper {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }
  
  .date-input,
  .time-input {
    font-size: 0.95rem;
    padding: 14px 15px 14px 50px;
    width: 100%;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.6);
  }
  
  .input-icon {
    font-size: 1.2rem;
    left: 15px;
  }
  
  .guest-selector {
    padding: 15px 20px;
    gap: 15px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 380px;
    margin: 5px auto 0;
    border: 1px solid white;
    flex-wrap: wrap;
  }
  
  .guest-icon {
    font-size: 1.3rem;
  }
  
  .guest-controls {
    gap: 12px;
  }
  
  .guest-btn {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }
  
  .guest-controls span:not(.guest-label) {
    font-size: 1.2rem;
    min-width: 25px;
  }
  
  .guest-label {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
  }
  
  .guest-divider {
    display: inline-block;
    font-size: 1.3rem;
  }
  
  .availability-btn {
    padding: 16px 20px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    width: 100%;
    max-width: 380px;
    margin: 10px auto 0;
  }
  
  .price-display {
    padding: 15px;
    margin-top: 20px;
    width: 100%;
    max-width: 380px;
  }
  
  .price-display p {
    font-size: 0.95rem;
  }
  
  .modal-content {
    width: 95%;
  }
  
  .modal-header {
    padding: 18px 20px;
  }
  
  .modal-header h3 {
    font-size: 1rem;
    letter-spacing: 2px;
  }
  
  .close-modal-btn ion-icon {
    font-size: 1.5rem;
  }
  
  .modal-body {
    padding: 20px;
  }
  
  .modal-description {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  .contact-form .input-group label {
    font-size: 0.8rem;
  }
  
  .contact-form .input-group input {
    padding: 14px 16px;
    font-size: 0.95rem;
  }
  
  .modal-footer {
    padding: 0 20px 20px 20px;
  }
  
  .proceed-btn {
    padding: 14px 24px;
    font-size: 0.85rem;
    letter-spacing: 2px;
  }
  
  .toast {
    bottom: 20px;
    right: 20px;
    left: 20px;
    padding: 14px 18px;
    font-size: 0.85rem;
  }
  
  .toast ion-icon {
    font-size: 1.3rem;
  }
  
  .whyus {
    padding: 50px 20px;
  }
  
  .whyus h1 {
    font-size: 1.6rem;
    letter-spacing: 3px;
    margin: 20px 0;
  }
  
  .justification {
    gap: 30px;
  }
  
  .side {
    gap: 20px;
  }
  
  .info-group h2 {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }
  
  .info-group p,
  .about-text,
  .explore-text p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .explore-section {
    gap: 30px;
  }
  
  .feature-pellets {
    gap: 15px;
    justify-content: center;
  }
  
  .pellet {
    padding: 12px 18px;
    font-size: 0.9rem;
    gap: 8px;
    flex: 0 1 auto;
  }
  
  .pellet ion-icon {
    font-size: 1.2rem;
  }
  
  footer {
    padding: 40px 20px 20px;
  }
  
  .footer-brand h2 {
    font-size: 1.3rem;
    letter-spacing: 4px;
  }
  
  .footer-brand p {
    font-size: 0.9rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-col h4 {
    font-size: 1rem;
    letter-spacing: 1.5px;
  }
  
  .footer-col a,
  .footer-col p {
    font-size: 0.9rem;
  }
  
  .footer-bottom {
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding-top: 30px;
    margin-top: 30px;
  }
}

/* Extra small mobile */
@media (max-width: 360px) {
  .greeting {
    font-size: 1.8rem;
  }
  
  .booking-header {
    font-size: 0.9rem;
  }
  
  .date-input,
  .time-input {
    font-size: 0.9rem;
    padding: 12px 12px 12px 45px;
  }
  
  .guest-selector {
    padding: 12px 15px;
  }
  
  .guest-btn {
    width: 28px;
    height: 28px;
  }
  
  .guest-controls span:not(.guest-label) {
    font-size: 1.1rem;
  }
  
  .guest-label {
    font-size: 0.75rem;
  }
  
  .whyus h1 {
    font-size: 1.4rem;
    letter-spacing: 2px;
  }
  
  .info-group h2 {
    font-size: 1rem;
  }
}

/* Small mobile devices */
@media (max-width: 320px) {
  .date-input,
  .time-input {
    font-size: 0.85rem;
    padding: 12px 10px 12px 42px;
  }
  
  .input-icon {
    left: 12px;
    font-size: 1.1rem;
  }
  
  .guest-selector {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .guest-divider {
    display: none;
  }
}