/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

:root {
  --color-bg: #fefefe;                    /* Keep this as is */
  --color-secondary-bg: #eaeaea;          /* Keep this as is */
  --color-accent: #00b7ff;                /* Updated from #00bcd4 to a lighter cyan */
  --color-text: #4a4a4a;                 /* Keep this as is */
  --color-highlight: #00a3cc;            /* Updated from #ff9933 (orange) to a slightly darker cyan */
  --primary-color: #00bcd4;      /* Main cyan color */
  --primary-dark: #0095cc;       /* Slightly darker cyan for hover effects */
  --footer-bg: #004d66;          /* Dark cyan close to black for footer background */
  --menu-bg: #00bcd4;        /* light background for menu dropdown */
  --menu-text: #4a4a4a;     /* default text color */
  --menu-hover: var(--primary-color); /* hover color same as primary */

}




/* Global */
body {
  font-family: 'Poppins', sans-serif;
  color: #2c2c2c;
  line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #2c1810;
}


/* Buttons */
.btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}


html {
  scroll-behavior: smooth;
}


/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 8%;
  background: linear-gradient(135deg, #ff9933 0%, #ffcc33 100%);
  backdrop-filter: blur(6px);
  z-index: 1000;
  color: #333333;
}

.header .logo {
  font-weight: 600;
  font-size: 1.4rem;
}

.header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.header nav ul li a {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  transition: 0.3s;
}

.header nav ul li a:hover,
.header nav ul li a.active {
  color: #ff9933;
}




/* Royal Themed Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #8c4b1f, #d4af37, #2c1810);
  background-size: 300% 300%;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s ease;
  animation: gradientShift 12s ease infinite;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 22px rgba(0,0,0,0.35);
}



.hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Secondary button (transparent gold) */
.btn.secondary {
  background: transparent;
  border: 2px solid #d4af37;
  color: #d4af37;
  transition: all 0.3s ease;
}

.btn.secondary:hover {
  background: #d4af37;
  color: #2c1810;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}



.hero-image img:hover {
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Royal animated gradient */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}



/* Mobile */
@media (max-width: 768px) {
  .hero {
    padding-top: 100px;  /* less space above */
    padding-bottom: 20px;
    text-align: center;
  }

  .hero-container {
    flex-direction: column;
    align-items: center; /* Ensures content is centered on mobile */
    gap: 20px; /* A bit more vertical space between text and image */
  }
  
    /* Adjust the image container on mobile */
  .hero-image {
    max-width: 80%; /* Limit the image width on smaller screens */
    height: auto; /* Allow the height to adjust based on the image's aspect ratio */
  }

  .hero-text h1 {
    font-size: 2.2rem;
    margin-bottom: 10px; /* reduce space under heading */
  }

  .hero-text p {
    margin-bottom: 15px; /* shrink paragraph spacing */
  }

  .hero-cta {
    margin-bottom: 10px; /* less space under buttons */
  }

  .hero-image img {
    max-width: 100%;
  }
}


/* Sections */
section { padding: 80px 8%; text-align: center; }
h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 20px;
  position: relative;
}
h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #ff9933;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* About */
.about p { max-width: 800px; margin: 0 auto 30px; }
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.highlights .card {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}




/* Rooms */
.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.room-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.room-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.room-info {
  padding: 20px;
  text-align: left;
}
.room-info h3 {
  margin-bottom: 10px;
  color: #ff6600;
}

/* Facilities */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.facility-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}
.facility-card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.facility-card h4 {
  font-size: 1.1rem;
  color: #2c3e50;
}


/* Booking */
.booking form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.booking input, 
.booking textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}
.booking textarea { min-height: 100px; resize: vertical; }
.date-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.date-group label { font-size: 0.9rem; font-weight: 500; }
.form-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 10px;
}

/* Footer */
footer {
  background: #2c3e50;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* Animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}




/* Floating WhatsApp Button (Royal Styled + Pulse) */
.whatsapp-float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #8c4b1f, #d4af37, #2c1810);
  background-size: 300% 300%;
  animation: gradientShift 15s ease infinite, pulseGlow 3s ease-in-out infinite;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #fff;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
  filter: brightness(1.1);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-float img {
    width: 26px;
    height: 26px;
  }
}

/* Glow pulse animation */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 8px rgba(212,175,55,0.4), 0 0 16px rgba(212,175,55,0.3); }
  50% { box-shadow: 0 0 16px rgba(212,175,55,0.6), 0 0 32px rgba(212,175,55,0.4); }
  100% { box-shadow: 0 0 8px rgba(212,175,55,0.4), 0 0 16px rgba(212,175,55,0.3); }
}


/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  padding: 60px;
  inset: 0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.lightbox .close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.lightbox-nav {
  margin-top: 15px;
  display: flex;
  gap: 40px;
}

.lightbox-nav span {
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  user-select: none;
}


@media (max-width: 600px) {
  /* Buttons */
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .form-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  /* Room / Facility Cards */
  .room-info,
  .facility-card {
    padding: 15px;
  }

  .room-img img {
    height: 180px; /* prevent extra tall images */
  }

  /* Booking Form */
  .booking input,
  .booking textarea {
    font-size: 0.95rem;
    padding: 10px;
  }
}


@media (max-width: 600px) {
  /* Buttons */
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .form-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  /* Room / Facility Cards */
  .room-info,
  .facility-card {
    padding: 15px;
  }

  .room-img img {
    height: 180px; /* prevent extra tall images */
  }

  /* Booking Form */
  .booking input,
  .booking textarea {
    font-size: 0.95rem;
    padding: 10px;
  }
}


/* ===========================
   📱 Ultra-Narrow Screens (iPhone SE / 320px)
   =========================== */
@media (max-width: 375px) {

  /* CTA buttons stack full width */
  .hero-cta .btn,
  .form-buttons .btn {
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 0.95rem;
  }

  /* Room & facility cards */
  .room-img img {
    height: 150px;
  }
  .room-info h3 {
    font-size: 1rem;
  }

  /* Booking form */
  .booking form {
    padding: 0 5px; /* prevent cutoff at edges */
  }

  /* Footer readability */
  footer {
    font-size: 0.85rem;
    padding: 15px 5px;
  }
}

/* Booking form mobile fixes */
@media (max-width: 375px) {
  .date-group {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .form-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .booking input,
  .booking textarea {
    font-size: 0.95rem;
    padding: 10px;
  }
}


/* Room cards mobile fixes */
@media (max-width: 375px) {
  .room-grid {
    grid-template-columns: 1fr; /* single column */
    gap: 18px;
  }

  .room-card img {
    height: 180px; /* smaller image height */
    object-fit: cover;
  }

  .room-info {
    padding: 15px;
  }

  .room-info h3 {
    font-size: 1.1rem;
  }

  .room-info p {
    font-size: 0.9rem;
  }
}


/* Facilities grid mobile fixes */
@media (max-width: 375px) {
  .facility-grid {
    grid-template-columns: 1fr; /* single column layout */
    gap: 18px;
  }

  .facility-card {
    padding: 18px 15px;
  }

  .facility-card h4 {
    font-size: 1rem;
  }

  .facility-card .icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
}

/* Header & nav mobile fixes */
@media (max-width: 375px) {
  .header {
    padding: 10px 5%;
  }

  .header .logo {
    font-size: 1.1rem;
  }

  .header nav ul {
    gap: 10px;
  }

  .header nav ul li a {
    font-size: 0.8rem;
  }
}

/* Hamburger toggle button (hidden on desktop) */
.menu-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #fff;
}

/* Small screens */
@media (max-width: 768px) {
  .header nav ul {
    display: none;
    flex-direction: column;
    background: rgba(44,62,80,0.95);
    position: absolute;
    top: 60px;
    right: 8%;
    padding: 15px;
    border-radius: 8px;
  }

  .header nav ul.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* Shrink "View Gallery" buttons inside room cards */
.room-card .btn {
  padding: 6px 14px;   /* slimmer buttons */
  font-size: 0.85rem;  /* smaller text */
  border-radius: 20px; /* a bit less rounded */
}

/* Center align "View Gallery" buttons inside room cards */
.room-card .btn {
  display: block;
  margin: 12px auto 0; /* top spacing + center horizontally */
  padding: 6px 14px;
  font-size: 0.85rem;
  border-radius: 20px;
}

/* Map styling */
.map-container {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}




.hero-cta .btn {
  background: linear-gradient(135deg, var(--color-accent), #00acc1);
  color: #fff;
}

.hero-cta .btn:hover {
  background: linear-gradient(135deg, #00acc1, #0097a7);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn {
  background: linear-gradient(135deg, var(--color-accent), #00acc1);
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: linear-gradient(135deg, #00acc1, #0097a7);
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

.btn.secondary {
  background: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
}

.btn.secondary:hover {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}


section {
  background-color: var(--color-bg);
  color: var(--color-text);
}

section:nth-child(even) {
  background-color: var(--color-secondary-bg);
}


a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #0097a7;
  text-decoration: underline;
}


.contact-btn {
  background: var(--color-highlight);
  color: #fff;
  border-radius: 30px;
  padding: 12px 28px;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #e68a00;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


footer {
  background: rgba(44, 62, 80, 0.9);
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* Floating WhatsApp Button (Cyan Styled + Pulse) */
.whatsapp-float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #00bcd4, #00acc1, #0097a7);
  background-size: 300% 300%;
  animation: gradientShift 15s ease infinite, pulseGlow 3s ease-in-out infinite;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #fff;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
  filter: brightness(1.1);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* Reuse existing gradientShift animation */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Pulse glow animation */
@keyframes pulseGlow {
  0% { box-shadow: 0 6px 18px rgba(0,188,212,0.3); }
  50% { box-shadow: 0 8px 20px rgba(0,188,212,0.5); }
  100% { box-shadow: 0 6px 18px rgba(0,188,212,0.3); }
}


/* Calm Greys Theme - Soft, Modern, Elegant with Darker Header & Footer */

/* Global Background & Text */
body {
  background-color: #f8f9fa; /* Very light grey background */
  color: #333333; /* Soft dark grey for text */
}

/* Section Background */
section {
  background-color: #ffffff; /* White content blocks for clarity */
}

/* Headings */
h1, h2, h3, h4 {
  color: #4a4a4a; /* Slightly lighter dark grey for headings */
}

/* Highlight Text */
.highlight {
  color: #6c757d; /* Subtle mid-grey for highlights */
}

/* Buttons */
.btn {
  background: #ced4da; /* Light grey button */
  color: #333333;
  border: 1px solid #adb5bd;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn:hover {
  background: #adb5bd; /* Slightly darker grey on hover */
  transform: translateY(-2px);
}

/* Secondary Button */
.btn.secondary {
  background: transparent;
  border: 2px solid #6c757d;
  color: #6c757d;
}

.btn.secondary:hover {
  background: #6c757d;
  color: #ffffff;
}

/* Links */
a {
  color: #6c757d;
  text-decoration: none;
}

a:hover {
  color: #495057;
}

/* Header with Sunrise Orange */
.header {
  background: linear-gradient(135deg, #ffb347 0%, #ffcc33 100%);
  color: #333333;
}


/* Footer – Dark Gray close to Black */
footer {
  background: #1a1a1a; /* very dark gray, almost black */
  color: #ffffff; /* white text for contrast */
  text-align: center;
  padding: 20px;
}

/* Hero Section – Darker Gray Background */
.hero {
  background: linear-gradient(135deg, #d1d3d4 0%, #a9abae 100%); /* subtle dark gray gradient */
  color: #333333;
}

/* Forms */
.booking input,
.booking textarea {
  border: 1px solid #ced4da;
  background-color: #ffffff;
  color: #333333;
}

.booking input:focus,
.booking textarea:focus {
  border-color: #6c757d;
  outline: none;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  background: #ced4da; /* Soft grey background */
  border: 2px solid #adb5bd;
}

.whatsapp-float:hover {
  background: #adb5bd;
}

/* Additional Section Styling */
.highlights .card,
.room-card,
.facility-card {
  background: #ffffff;
  border: 1px solid #dee2e6;
}

.highlights .card:hover,
.room-card:hover,
.facility-card:hover {
  border-color: #adb5bd;
}

/* Smooth hover effects */
.btn,
.btn.secondary,
a,
.highlights .card,
.room-card,
.facility-card {
  transition: all 0.3s ease;
}

.room-price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #ff9933; /* Sunrise orange accent */
  margin: 10px 0;
  padding: 6px 12px;
  background: rgba(255, 153, 51, 0.1);
  border-left: 4px solid #ff9933;
  border-radius: 4px;
  display: inline-block;
  transition: background 0.3s ease, transform 0.3s ease;
}

.room-price:hover {
  background: rgba(255, 153, 51, 0.2);
  transform: scale(1.05);
}


/* Hero Section - Button */
.hero-cta .btn {
  background: #ff9933; /* Sunrise orange */
  color: #fff;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-cta .btn:hover {
  background: #e68a00; /* Slightly darker shade for hover effect */
  transform: scale(1.05);
}

/* Mobile menu background to match header */
.header nav ul.show {
  background: #ff9933; /* Same Sunrise Orange as header */
  color: #fff;
}

.header nav ul.show li a {
  color: #fff;
}
.header nav ul.show li a:hover {
  color: #2c1810; /* A darker shade for hover effect */
}



.header .logo {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.4rem;
}

.header .logo-img {
  width: 40px;      /* Adjust size as needed */
  height: 40px;     /* Make height same as width */
  border-radius: 50%;  /* Makes it a circle */
  object-fit: cover;   /* Ensures it fills the circle without distortion */
  margin-right: 8px;   /* Space between logo and text */
}


.header .logo span {
  font-family: 'Playfair Display', serif; /* Elegant serif font */
  font-weight: 700;
}


.header .logo span {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: #e57c00; /* Darker Sunrise orange for contrast */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4); /* Soft shadow for depth */
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.header .logo span:hover {
  transform: scale(1.05); /* Slight scale effect on hover */
  text-shadow: 2px 2px 8px rgba(255, 153, 51, 0.8); /* Glow effect in Sunrise color */
}


/* Final fix for foldable devices or screens where hero might overflow */
@media (max-width: 1024px) {
  html, body {
    overflow-y: auto !important;
    height: auto !important;
  }

  .hero {
    min-height: auto !important;
    height: auto !important;
    padding-top: 100px !important;
    padding-bottom: 20px !important;
  }
}

@media (max-width: 768px) {
  

  /* Navigation */
  .header nav ul {
    display: none;
    flex-direction: column;
    background: rgba(44,62,80,0.95);
    position: absolute;
    top: 60px;
    right: 8%;
    padding: 15px;
    border-radius: 8px;
  }
  .header nav ul.show {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }

  /* WhatsApp adjustments */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
  .whatsapp-float img {
    width: 26px;
    height: 26px;
  }

  /* Additional fixes can be added here */
}


@media (min-width: 1025px) {
  .hero {
    min-height: 100vh;
  }
}


/* Apply padding for safe area only on mobile devices */
@media (max-width: 768px) {
  .header {
    padding-top: env(safe-area-inset-top, 12px);
  }
}

/* Prevent horizontal overflow globally */
body {
  overflow-x: hidden;
}

/* Prevent image overflow in hero */
.hero {
  overflow: hidden;
}




/* Header Background */
.header {
  background: rgba(44, 62, 80, 0.9); /* Dark blue-grey */
}

/* Menu Dropdown */
.header nav ul {
  background: rgba(44, 62, 80, 0.95); /* Slightly opaque dark background */
  border-radius: 8px;
  padding: 10px 0;
}

/* Menu Links */
.header nav ul li a {
  color: #fff; /* White text */
  transition: color 0.3s ease;
}

.header nav ul li a:hover,
.header nav ul li a.active {
  color: #ff9933; /* Orange highlight on hover/active */
}

/* Book Now Button */
.hero-cta .btn {
  background-color: var(--color-accent); /* Keep cyan accent or adjust if needed */
}

.hero-cta .btn:hover {
  background-color: #00a5c0; /* Slightly darker cyan for hover effect */
}

/* Footer Background */
footer {
  background-color: #2c3e50; /* Dark near-black background */
}

/* General Button Style */
.btn {
  background-color: #00bcd4; /* Cyan background */
  color: #ffffff;            /* White text */
  border: none;              /* Remove any default border */
  border-radius: 30px;       /* Rounded edges */
  padding: 12px 28px;        /* Spacing inside the button */
  font-size: 1rem;           /* Button text size */
  font-weight: 600;          /* Slightly bold text */
  text-transform: uppercase; /* Capitalize letters */
  letter-spacing: 1px;       /* Space between letters */
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Hover Effect */
.btn:hover {
  background-color: #00a5c0; /* Slightly darker cyan on hover */
  transform: scale(1.05);    /* Subtle zoom effect */
}

/* Secondary Button */
.btn.secondary {
  background-color: #00bcd4; /* Same cyan for secondary buttons */
  color: #ffffff;
  border: none;
}

.btn.secondary:hover {
  background-color: #00a5c0; /* Hover effect same as primary */
}

/* Ensure the BOOK NOW button has the same cyan style */
.hero-cta .btn {
  background-color: #00bcd4 !important; /* Cyan background */
  color: #ffffff !important;            /* White text */
  border: none !important;              /* No border */
  border-radius: 30px !important;       /* Rounded corners */
  padding: 12px 28px !important;        /* Consistent padding */
  font-size: 1rem !important;           /* Text size */
  font-weight: 600 !important;          /* Bold text */
  text-transform: uppercase !important; /* Uppercase letters */
  letter-spacing: 1px !important;      /* Spacing between letters */
  cursor: pointer !important;           /* Pointer on hover */
  transition: background-color 0.3s ease, transform 0.3s ease !important;
}

/* Hover effect */
.hero-cta .btn:hover {
  background-color: #00a5c0 !important; /* Slightly darker cyan */
  transform: scale(1.05) !important;    /* Zoom on hover */
}

.header .logo {
  font-weight: 600;
  font-size: 1.4rem;
  text-transform: none;  /* Keeps original casing */
  letter-spacing: normal;
  color: #00bcd4;
}

.hero-text h1 span {
  color: #00bcd4;
}





/* Hero section highlighted text */
.hero-text h1 span {
  color: var(--primary-color);
}

/* Hamburger menu styles */
.mobile-menu {
  background-color: var(--menu-bg);
}

.mobile-menu ul li a {
  color: var(--menu-text);
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
  color: var(--menu-hover);
}

.header .logo span {
  color: #ffffff !important;
}
.menu-toggle {
  color: #fff !important;
}

/* Mobile menu background */
.header nav ul.show {
  background-color: #2c3e50 !important;
}

/* Mobile Menu Styling – Apply only on small screens */
@media (max-width: 768px) {
  .header nav ul {
    position: absolute;
    top: 60px;               /* Below header */
    right: 3.5%;
    width: 130px;            /* Adjust width to feel spacious but not too wide */
    background-color: #2c3e50; /* Your chosen dark color */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    display: none;           /* Hidden by default */
    flex-direction: column;
    gap: 15px;
  }

  .header nav ul.show {
    display: flex;
  }

  .header nav ul li a {
    color: #fff;
    font-size: 1.1rem;
    padding: 10px 15px;
    border-radius: 4px;
    transition: background 0.3s ease;
  }

  .header nav ul li a:hover {
    background-color: #00bcd4; /* Matching button hover effect */
  }
}


@media (max-width: 768px) {
  .header .logo-img {
    margin-right: 8px; /* Adds space between logo and text */
    padding: 4px;      /* Adds inner space to prevent touching the boundary */
    border-radius: 50%; /* Keeps the logo circular */
  }
}



/* For foldable or larger mobile screens */
@media (min-width: 800px) and (max-width: 1400px) {
  .header .logo-img {
    max-width: 60px !important; /* Reduce the size on foldable screens */
    max-height: 60px !important;
  }
}


@media (min-width: 800px) and (max-width: 1400px) {
  .header {
    padding: 12px 5%;
  }
  
  .header .logo {
    align-items: center;
    gap: 8px;
  }
}

/* =========================
   HERO (single consolidated block)
   Portrait-first layout + blurred background fill
   ========================= */

.hero { 
  /* keep page-level hero spacing intact but ensure text floats above images */
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 8% 60px;
  color: var(--color-text, #fff);
  position: relative;
  overflow: hidden;
}

/* ensure text/CTA sits above the hero images/background */
.hero .hero-text,
.hero .hero-cta {
  position: relative;
  z-index: 3;
}

/* hero container */
.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
}

/* PORTRAIT-FRIENDLY image box */
.hero-image {
  position: relative;
  width: 100%;
  max-width: 800px;         /* keep the container width you already liked */
  aspect-ratio: 3 / 4;      /* portrait ratio for your 960x1280 images */
  overflow: hidden;
  border-radius: 12px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;

  /* CSS variable used by JS to set blurred background */
  --hero-bg: none;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* blurred/backdrop layer copied from --hero-bg */
.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(20px) saturate(85%);
  transform: scale(1.06);
  z-index: 0;
}

/* subtle overlay so foreground image and text stay readable */
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.12); /* tweak opacity if needed */
  z-index: 1;
}

/* the real visible img sits above the blurred bg */
.hero-image img {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;      /* let portrait images use full height */
  height: 100%;     /* fills height of container while keeping aspect */
  object-fit: contain; /* ensures full image visible (no crop) */
  transition: opacity 0.8s ease, transform 0.8s ease;
  opacity: 0;
  pointer-events: none;
}

/* visible active image */
.hero-image img.active {
  opacity: 1;
  transform: translateY(0);
}

/* desktop tweaks (if you prefer a slightly wider hero on desktop) */
@media (min-width: 1025px) {
  .hero-image {
    max-width: 900px; /* optional: increase if you want more visual space on large screens */
  }
}

/* mobile: reduce height but keep portrait shape */
@media (max-width: 768px) {
  .hero {
    padding-top: 120px;
    padding-bottom: 20px;
    text-align: center;
  }

  .hero-container {
    flex-direction: column;
    gap: 18px;
  }

  .hero-image {
    aspect-ratio: 4 / 5; /* a slightly squarer box to fit phones nicely */
    max-width: 92%;
    height: auto;
  }

  .hero-image img {
    height: 100%;
    max-height: 250px; /* safe cap so hero isn't too tall on phones */
    width: auto;
  }
}





/* Hero section image container */
.hero-image {
  flex: 1 1 400px; /* Allows the container to grow/shrink relative to the text */
  text-align: center;
  animation: fadeInRight 1.2s ease;
  width: 100%;
  max-width: 450px; /* Controls the maximum width on desktop */
  height: auto;
  aspect-ratio: 1000 / 1280; /* Sets the correct portrait aspect ratio for your images */
}

/* Hero section image */
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* This is the key change: it scales the image to fit its container without cropping. */
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  transform: scale(1);
  transition: transform 0.4s ease;
}




@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    align-items: center; /* Ensures content is centered on mobile */
    gap: 20px; /* Adds space between text and image */
  }

  .hero-image {
    max-width: 80%; /* Limits the image width on smaller screens */
    height: auto; /* Allows the height to adjust based on the image's aspect ratio */
  }
}
