* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hero-header {
  position: relative;
  height: 100vh;
  width: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  color: white;
  overflow: hidden;
  font-family: Helvetica, Arial, sans-serif;
}

/* Background Video Setup */
.video-wrap {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15); /* Softens video for text readability */
}

.active {
  color: #1a3d63;
}
/* Nav Bar */
.top-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1.5rem 4rem;
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.3s ease;
}

/* Hamburger button — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: background 0.3s;
}
.top-nav.scrolled .nav-toggle span {
  background: #1a3d63;
}

/* X close button inside the mobile menu */
.nav-close {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  align-self: flex-end;
  padding: 4px 8px;
  margin-bottom: 8px;
}

.hero-header .top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}


.top-nav.scrolled {
  background: rgba(255, 255, 255, 1);
}


.top-nav.scrolled a {
  color: #1a3d63;
}

.top-nav a.active {
  font-weight: 700;
  border-bottom: 2px solid white;
  padding-bottom: 2px;
}

.top-nav.scrolled a.active {
  border-bottom-color: #1a3d63;
}

.top-nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

/* nav-links is the ul on mobile, keep flex on desktop */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.top-nav a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-family: Helvetica, Arial, sans-serif;
}

.page-indicator {
  color: white;
  font-size: 14px;
  opacity: 0.7;
  font-family: Helvetica, Arial, sans-serif;
}

/* Hero Content Wrapper */
.hero-content-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 60px 40px;
  gap: 20px;
}

/* Centered Content */
.hero-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  max-width: 600px;
}

.hero-text h1 {
  font-family: Helvetica, Arial, sans-serif;
   font-size: clamp(44px, 10vw, 64px);
  font-weight: 600;
  margin-bottom: .5rem;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 0 5px rgba(51, 51, 51, 0.4), 0 5px 8px rgba(51, 51, 51, 0.4), 0 0 10px rgba(51, 51, 51, 0.4), 1px 1px .5px rgba(51, 51, 51, 0.4);
}

.hero-text p {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 19px;
  padding-top: 20px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.btn-offers {
  font-family: Helvetica, Arial, sans-serif;
  background: white;
  color: #1a3a5f;
  margin-top: 15px;
  padding: 8px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 13px;
  align-self: flex-start;
}

/* Chat Button */
.chat-anchor {
  display: none;
  font-family: Helvetica, Arial, sans-serif;
  background: #1a3d63;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.3s ease;
  z-index: 10;
  align-self: flex-start;
}

.chat-anchor:hover {
  background: #1a3d63;
  transform: translateY(-2px);
}

/* WHAT WE OFFERS SECTION */
.offers-section {
  padding: 80px 0;
  background: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 31.4px;
  font-weight: 400;
  color: #1a3d63;
  margin-bottom: 20px;
  letter-spacing: .5px;
}

.section-header p {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #1a3d63;
  max-width: 600px;
  margin: 0 auto;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.offer-panel {
  background: white;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  height: 400px;
}

.offer-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.offer-content {
  font-family: Helvetica, Arial, sans-serif;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
  color: white;
}

.offer-content h3 {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.offer-content p {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: white;
  margin-bottom: 12px;
}

.offer-content ul {
  list-style: none;
  padding: 0;
  padding-left: 20px;
}

.offer-content li {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: white;
  margin-bottom: 6px;
  padding-left: 15px;
  position: relative;
}

.offer-content li:before {
  content: "•";
  color: white;
  position: absolute;
  left: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .offers-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .offers-section {
    padding: 10px 0;
  }
}

/* BOOK YOUR DREAM VACATION SECTION */
.booking-section {
  padding: 80px 0;
  background: #eef3f8 url('bg.jpg') center/cover no-repeat;
  background-blend-mode: lighten;
  background-color: rgba(220, 232, 245, 0.92);
}

.booking-section .section-header h2 {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 34px;
  font-weight: 400;
  color: #1a3d63;
  margin-bottom: 16px;
  text-align: center;
  line-height: 1.2;
}

.booking-section .section-header p {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #1a3d63;
  max-width: 560px;
  margin: 0 auto 50px;
  text-align: center;
  line-height: 1.6;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
}

.room-card {
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.room-image {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-info {
  padding: 16px 0 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-info h3 {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 17.3px;
  font-weight: 600;
  color: #1a3d63;
  margin-bottom: 10px;
}

.room-info p {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #1a3d63;
  line-height: 1.6;
  margin-bottom: 16px;
  overflow: hidden;
  flex: 1;
}

.btn-book {
  display: inline-block;
  width: 40%;
  text-align: center;
  font-family: Helvetica, Arial, sans-serif;
  background: #1a3d63;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 13px;
  text-transform: uppercase;
  transition: background 0.3s ease;
  letter-spacing: 0.5px;
}

.btn-book:hover {
  background: #14304f;
}

@media (max-width: 768px) {
  .rooms-grid {
    grid-template-columns: 1fr;
  }
}

/* FOOTER */
.site-footer {
  background: #1a3d63;
  color: white;
  font-family: Helvetica, Arial, sans-serif;
}

.footer-main {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 40px 60px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  font-size: 13px;
  color: #cce0f5;
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #cce0f5;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: white;
}

.footer-socials {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-socials a img {
  width: 24px;
  height: 24px;
  filter: invert(1);
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-socials a:hover img {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  padding: 14px 20px;
  font-size: 12px;
  color: #aac4de;
}

.footer-bottom a {
  color: #aac4de;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: white;
}

@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    gap: 30px;
    padding: 30px;
  }
}

/* MODAL STYLES */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: white;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: #333;
}

.modal-box h2 {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #1a3d63;
  margin: 30px 40px 10px;
}

.modal-date {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #666;
  margin: 0 40px 30px;
  font-style: italic;
}

.modal-body {
  font-family: Helvetica, Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  padding: 0 40px 40px;
}

.modal-body p {
  margin-bottom: 16px;
}

.modal-body h3 {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1a3d63;
  margin: 24px 0 12px;
}

.modal-body ul {
  margin: 12px 0 16px 20px;
  padding: 0;
}

.modal-body li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.modal-body strong {
  color: #1a3d63;
  font-weight: 600;
}

.modal-note {
  background: #f8f9fa;
  padding: 12px;
  border-radius: 4px;
  border-left: 4px solid #1a3d63;
  margin-top: 20px;
  font-size: 14px;
}

/* Modal Responsive Design */
@media (max-width: 768px) {
  .modal-box {
    width: 95%;
    max-height: 95vh;
  }
  
  .modal-box h2 {
    font-size: 24px;
    margin: 20px 20px 10px;
  }
  
  .modal-date {
    margin: 0 20px 20px;
  }
  
  .modal-body {
    padding: 0 20px 20px;
  }
  
  .modal-close {
    top: 10px;
    right: 15px;
  }
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: white;
  border-radius: 12px;
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  font-family: Helvetica, Arial, sans-serif;
}

.modal-box h2 {
  font-size: 20px;
  font-weight: 700;
  color: #1a3d63;
  padding: 24px 24px 0;
  margin: 0;
}

.modal-date {
  font-size: 12px;
  color: #888;
  padding: 4px 24px 12px;
  border-bottom: 1px solid #e5e5e5;
  margin: 0;
}

.modal-body {
  overflow-y: auto;
  padding: 20px 24px 28px;
  color: #333;
  font-size: 14px;
  line-height: 1.7;
}

.modal-body h3 {
  font-size: 14px;
  font-weight: 700;
  color: #1a3d63;
  margin: 18px 0 6px;
}

.modal-body p {
  margin: 0 0 10px;
}

.modal-body ul {
  padding-left: 20px;
  margin: 0 0 10px;
}

.modal-body ul li {
  margin-bottom: 5px;
}

.modal-note {
  background: #eef3f8;
  border-left: 3px solid #1a3d63;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 13px;
  color: #444;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 24px;
  color: #888;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.modal-close:hover {
  color: #1a3d63;
}


/* =====================
   MOBILE RESPONSIVE
   ===================== */
@media (max-width: 768px) {

  .top-nav {
    justify-content: flex-end;
    padding: 0.85rem 1.2rem;
    position: relative;
  }

  .nav-toggle { display: flex; }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    z-index: 1000;
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transition: max-height 0.3s ease;
  }

  .nav-links.open { max-height: 300px; }

  .nav-links li { margin: 0; padding: 0; }

  .nav-links li a {
    display: block;
    padding: 12px 20px;
    color: #1a3d63 !important;
    font-size: 14px;
    font-weight: 600;
    border-left: 3px solid transparent;
    transition: background 0.15s, border-color 0.15s;
  }

  .nav-links li a:hover {
    background: #eef3f8;
    border-left-color: #1a3d63;
  }

  .nav-links li a.active {
    background: #eef3f8;
    border-left-color: #1a3d63;
  }

  .nav-toggle span { transition: transform 0.25s, opacity 0.25s; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero-content-wrapper { padding: 80px 24px 40px; }
  .hero-text { max-width: 100%; }
  .hero-text h1 { font-size: clamp(32px, 9vw, 48px); }
  .hero-text p  { font-size: 15px; }
  .chat-anchor  { font-size: 13px; padding: 10px 18px; }
  .booking-section .section-header h2 { font-size: 26px; }
  .btn-book   { width: 60%; }
  .room-image { height: 200px; }
}

@media (max-width: 480px) {
  .hero-text h1      { font-size: clamp(28px, 8vw, 38px); }
  .hero-text p       { font-size: 14px; }
  .section-header h2 { font-size: 22px; }
  .btn-book          { width: 80%; }
  .offer-panel       { height: 320px; }
}
