/* ============================================
   RESET & BASE
============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f4f1ec;
  color: #2f3e46;
  line-height: 1.6;
}

/* ============================================
   HEADER & NAVIGATION
============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  z-index: 999;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: -0.5px;
}

/* DESKTOP NAVIGATION - Moved to the right */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #4f8a8b;
}

.book-btn {
  background: linear-gradient(135deg, #cfa670, #b8885d) !important;
  color: white !important;
  padding: 11px 24px !important;
  border-radius: 30px !important;
  font-weight: 600 !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12) !important;
  transition: all 0.3s ease !important;
}

.book-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18) !important;
  background: linear-gradient(135deg, #b8885d, #a67748) !important;
  color: white !important;
}

/* MOBILE TOGGLE - Hidden on desktop */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  user-select: none;
  color: #2c3e50;
  background: none;
  border: none;
  padding: 5px 10px;
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
  height: 100vh;
  position: relative;
  margin-top: 0;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider img.active {
  opacity: 1;
}

.hero-glass {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
}

.hero-glass h1 {
  font-size: 48px;
  max-width: 900px;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.hero-glass p {
  max-width: 700px;
  font-size: 1.2rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.price {
  font-size: 32px;
  color: #cfa670;
  margin: 20px 0;
  font-weight: 700;
}

.cta {
  background: #cfa670;
  color: white;
  padding: 16px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta:hover {
  background: #b8885d;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* ============================================
   SECTIONS
============================================ */
section {
  padding: 100px 6%;
}

h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.8rem;
  color: #2f3e46;
  font-weight: 700;
}

/* ============================================
   WHY SECTION
============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  text-align: center;
}

.why-card i {
  font-size: 3.5rem;
  color: #4f8a8b;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #2f3e46;
  font-weight: 600;
}

.why-card p {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.6;
}

/* ============================================
   ROOMS SECTION - 4 COLUMNS ON DESKTOP
============================================ */
.room-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1400px;
  margin: 0 auto;
}

.room-card {
  background: white;
  padding: 0;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  overflow: hidden;
}

.room-media {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #e0e0e0;
}

.room-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.room-media img.active {
  opacity: 1;
}

.room-card h3 {
  font-size: 1.3rem;
  margin: 20px 20px 10px;
  color: #2f3e46;
  font-weight: 600;
}

.room-card p {
  color: #6c757d;
  margin: 0 20px 15px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.room-card span {
  color: #cfa670;
  font-weight: 700;
  font-size: 1.4rem;
  display: block;
  margin: 15px 20px;
}

.room-card a {
  display: block;
  margin: 20px 20px 25px;
  background: #2f3e46;
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  text-align: center;
}

.room-card a:hover {
  background: #4f8a8b;
  transform: translateY(-2px);
}

/* ============================================
   AMENITIES SECTION - FLEXIBLE DESIGN
============================================ */
.amenity-slider {
  height: 500px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  border: 4px solid #4f8a8b;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  background: #2f3e46;
}

.amenity-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.amenity-slider img.active {
  opacity: 1;
}

.amenity-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.amenity-list div {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  font-weight: 500;
  color: #2f3e46;
  transition: all 0.3s ease;
}

.amenity-list div:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.amenity-list i {
  display: block;
  font-size: 2.5rem;
  color: #4f8a8b;
  margin-bottom: 15px;
}

/* ============================================
   LOCATION SECTION
============================================ */
.location {
  text-align: center;
}

.location p {
  margin: 20px auto;
  font-size: 1.1rem;
  max-width: 800px;
}

.location iframe {
  width: 100%;
  max-width: 1000px;
  height: 400px;
  border: none;
  border-radius: 20px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* ============================================
   CONTACT SECTION
============================================ */
.contact {
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto 40px;
  display: grid;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 18px;
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #4f8a8b;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form button {
  background: #6b8f71;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.05rem;
}

.contact-form button:hover {
  background: #557a5b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-info {
  margin-top: 40px;
}

.contact-info p {
  margin: 12px 0;
  font-size: 1.15rem;
  font-weight: 500;
}

/* ============================================
   FOOTER
============================================ */
footer {
  text-align: center;
  background: #2f3e46;
  color: white;
  padding: 40px 20px;
}

footer p {
  margin-bottom: 15px;
  font-size: 1rem;
}

footer a {
  color: #cfa670;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #b8885d;
}

/* ============================================
   ANIMATIONS & EFFECTS
============================================ */
.hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   TABLET RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .header-inner {
    padding: 16px 30px;
  }

  .logo {
    font-size: 1.6rem;
  }

  .nav-links {
    gap: 24px;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .book-btn {
    padding: 10px 20px !important;
  }

  .hero-glass h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 2.3rem;
  }

  section {
    padding: 80px 5%;
  }

  /* 2 columns for rooms on tablet */
  .room-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   MOBILE RESPONSIVE
============================================ */
@media (max-width: 900px) {
  
  /* Show hamburger menu */
  .menu-toggle {
    display: block;
  }

  /* Hide desktop navigation */
  .nav-links {
    position: fixed;
    top: 70px;
    right: 20px;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    display: none;
    min-width: 240px;
    z-index: 1000;
    margin-left: 0;
  }

  /* Show when toggled */
  .nav-links.show {
    display: flex;
    animation: slideDown 0.3s ease;
  }

  /* All links aligned left with white background */
  .nav-links a {
    padding: 16px 24px;
    width: 100%;
    font-size: 1rem;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
    background: white;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  /* Book Now button - aligned left with white background */
  .nav-links .book-btn {
    margin: 0 !important;
    padding: 16px 24px !important;
    text-align: left !important;
    border-radius: 0 !important;
    background: white !important;
    color: #2c3e50 !important;
    box-shadow: none !important;
    font-weight: 600 !important;
    border-bottom: none !important;
    border-radius: 0 0 14px 14px !important;
  }

  .nav-links .book-btn:hover {
    background: #f8f8f8 !important;
    color: #4f8a8b !important;
    transform: none !important;
  }

  .logo {
    font-size: 1.3rem;
  }

  .hero-glass h1 {
    font-size: 32px;
  }

  .hero-glass p {
    font-size: 1.05rem;
  }

  .price {
    font-size: 26px;
  }

  .cta {
    padding: 14px 30px;
    font-size: 1rem;
  }

  h2 {
    font-size: 2rem;
  }

  section {
    padding: 60px 5%;
  }

  .why-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  /* Single column for rooms on mobile */
  .room-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  /* Amenity slider height for mobile */
  .amenity-slider {
    height: 300px;
  }

  .amenity-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .location iframe {
    height: 300px;
  }
}

/* ============================================
   SMALL MOBILE
============================================ */
@media (max-width: 480px) {
  .header-inner {
    padding: 14px 20px;
  }

  .logo {
    font-size: 1.1rem;
  }

  .menu-toggle {
    font-size: 1.6rem;
  }

  .hero-glass h1 {
    font-size: 26px;
  }

  .hero-glass p {
    font-size: 0.95rem;
  }

  .price {
    font-size: 22px;
  }

  h2 {
    font-size: 1.8rem;
  }

  .amenity-list {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 0 10px;
  }
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   SCROLL TO TOP BUTTON
============================================ */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #4f8a8b;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-to-top:hover {
  background: #3d7a66;
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile scroll button */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}