@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --primary-dark: #020b1f;
  /* Deep Navy Background */
  --primary-blue: #0a1930;
  /* Slightly lighter navy for sections */
  --accent-blue: #1e3a5f;
  /* Card Backgrounds */
  --glow-cyan: #00e5ff;
  /* Text Glow */
  --text-white: #ffffff;
  --text-gray: #d1d5db;
  --overlay-blue: rgba(10, 25, 48, 0.7);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--primary-dark);
  color: var(--text-white);
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
}

.glow-text {
  text-shadow: 0 0 10px var(--glow-cyan), 0 0 20px rgba(0, 229, 255, 0.5);
}

/* Header / Logos */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: linear-gradient(to bottom, rgba(2, 11, 31, 1), rgba(2, 11, 31, 0));
  position: absolute;
  width: 100%;
  z-index: 1000;
  top: 0;
  width: 100%;
  z-index: 1000;
  top: 0;
}

.brand-group {
  display: flex;
  gap: 30px;
  align-items: center;
}

.main-nav {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-link,
.dropdown-trigger {
  color: var(--text-white);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  cursor: pointer;
  position: relative;
}

.nav-link:hover,
.dropdown-trigger:hover {
  color: var(--glow-cyan);
  text-shadow: 0 0 10px var(--glow-cyan);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  padding-bottom: 10px;
  /* Bridge gap for hover */
  margin-bottom: -10px;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 25, 48, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 15px;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 1001;
}

.dropdown:hover .dropdown-content {
  display: block;
  animation: fadeIn 0.3s ease;
}

.dropdown-item {
  display: block;
  color: var(--text-gray);
  text-decoration: none;
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  text-align: left;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  color: var(--glow-cyan);
  padding-left: 5px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.logo-text {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-white);
  font-family: 'Roboto', sans-serif;
}

/* Banner / Hero Section */
.banner_bg {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* Background image will be set inline or via specific class */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.banner_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(2, 11, 31, 0.4), rgba(0, 50, 100, 0.3));
}

.banner_content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.banner_content h1 {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--text-white);
}

.banner_content p {
  font-size: 1.5rem;
  letter-spacing: 5px;
  margin-bottom: 30px;
  font-weight: 300;
  text-transform: uppercase;
  border-top: 1px solid var(--text-white);
  border-bottom: 1px solid var(--text-white);
  display: inline-block;
  padding: 10px 20px;
}

.reservation-box {
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 15px 25px;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  display: inline-block;
}

.reservation-box p {
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 5px;
  border: none;
  padding: 0;
  display: block;
}

.reservation-box a {
  color: var(--glow-cyan);
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.reservation-box a:hover {
  text-shadow: 0 0 10px var(--glow-cyan);
  color: var(--text-white);
}

.event-location {
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: var(--text-gray);
  margin-top: 20px;
}

/* Hotel Sections */
.hotel-section {
  padding: 80px 20px;
  border-top: 1px solid var(--glass-border);
}

.hotel-section:nth-of-type(even) {
  background: linear-gradient(to bottom, var(--primary-blue), var(--primary-dark));
}

.hotel-tagline {
  font-size: 1.5rem;
  color: var(--glow-cyan);
  font-family: 'Playfair Display', serif;
  margin-bottom: 5px;
}

.hotel-desc {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto;
}

.pax-info {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

/* Packages Section */
.package-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, var(--primary-dark), var(--primary-blue));
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: var(--text-white);
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-gray);
  font-weight: 300;
}

/* Package Grid */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.package-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 229, 255, 0.2);
}

/* Hotel Main Images */
.hotel-main-img {
  width: 100%;
  height: auto;
  /* Removed fixed height */
  aspect-ratio: 16 / 9;
  /* Standard widescreen ratio */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--glass-border);
}

.package-image {
  height: auto;
  /* Removed fixed height */
  aspect-ratio: 16 / 9;
  /* Standard widescreen ratio matching banners */
  width: 100%;
  object-fit: cover;
}

.package-content {
  padding: 25px;
  text-align: left;
}

.package-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--text-white);
  letter-spacing: 1px;
}

.package-content ul {
  list-style: none;
  margin-bottom: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.package-content ul li {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.package-content ul li::before {
  content: "•";
  color: var(--glow-cyan);
  font-size: 1.5rem;
  line-height: 0;
  margin-right: 10px;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--glow-cyan);
  margin-bottom: 5px;
  font-family: 'Playfair Display', serif;
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-gray);
  font-family: 'Roboto', sans-serif;
}

.extra-pax {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 1px;
}

.brand-group img {
    width: 100%;
    max-width: 123px;
}

img.cray {
    height: 100%;
    max-height: 53px;
    object-fit: cover;
}

.btn {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  border: 1px solid var(--glow-cyan);
  color: var(--glow-cyan);
  padding: 12px 0;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 0;
  /* Sharp edges for premium feel */
  transition: all 0.3s ease;
  margin-top: 20px;
}

box-shadow: 0 0 15px var(--glow-cyan);
}

/* Event Details Section */
.event-details-section {
  padding: 80px 20px;
  background: linear-gradient(to top, var(--primary-dark), var(--primary-blue));
  border-top: 1px solid var(--glass-border);
}

.event-img {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: contain;
  /* Ensure charts are readable */
  border-radius: 10px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.05);
  /* Slight bg for transparent images */
}


/* Footer style */
footer {
  text-align: center;
  padding: 40px;
  background: var(--primary-dark);
  border-top: 1px solid var(--glass-border);
  color: var(--text-gray);
}

/* Mobile Menu Button (Hidden on Desktop) */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Responsive */
/* Tablet Responsive (1024px and down) */
@media (max-width: 1024px) {
  .banner_content h1 {
    font-size: 3rem;
  }

  .banner_content p {
    font-size: 1.2rem;
  }

  .hotel-section,
  .package-section,
  .event-details-section {
    padding: 60px 20px;
  }

  .video-popup {
    width: 220px;
    right: 5%;
  }
  
  .reservation-box {
    margin-top: 13px;
}
.event-location {
    margin-top: -11px;
}
  .banner_content h1 {
    font-size: 2rem;
}
  
  
  
}

/* Mobile Responsive (768px and down) */
@media (max-width: 768px) {
  .banner_bg {
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    /* Allow growing */
    height: auto;
    /* Reset fixed height */
    padding-top: 100px;
    /* More space for header */
    padding-bottom: 50px;
    /* Space at bottom */
  }

  .banner_content h1 {
    font-size: 2rem;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .banner_content p {
    font-size: 0.9rem;
    letter-spacing: 2px;
    padding: 5px 10px;
    margin-bottom: 15px;
  }

  .package-grid {
    grid-template-columns: 1fr;
    /* Stack cards on mobile */
    gap: 20px;
  }

  header {
    flex-direction: row;
    /* Keep row for brand + hamburger */
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* Allow nav to wrap to next line */
    gap: 5px;
    padding: 10px 20px;
    background: linear-gradient(to bottom, rgba(2, 11, 31, 1), rgba(2, 11, 31, 0.95));
    /* Better gradient than solid block */
    position: absolute;
    /* Keep absolute to overlay banner */
    width: 100%;
  }

  .mobile-menu-btn {
    display: block;
    /* Show hamburger on mobile */
  }

  .brand-group {
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
    /* Align logo text left */
  }

  .main-nav {
    display: none;
    /* Hidden by default */
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(2, 11, 31, 0.95);
    /* Solid backing for menu */
  }

  .main-nav.active {
    display: flex;
    /* Show when active */
  }

  .nav-link,
  .dropdown-trigger {
    width: 100%;
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .dropdown {
    padding-bottom: 0;
    margin-bottom: 0;
    width: 100%;
    text-align: center;
  }

  .dropdown-content {
    position: static;
    transform: none;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    box-shadow: none;
    padding: 0;
    min-width: auto;
    display: none;
    /* Keep hidden until hover/click logic via CSS or simple block */
  }

  /* Force display dropdown content on mobile for now, or allow hover if device supports it */
  .dropdown:hover .dropdown-content {
    display: block;
  }

  .dropdown-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  }

  .logo-text {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .logo-text:nth-child(2) {
    font-size: 1rem !important;
    /* Slightly larger for Namas'cray */
  }

  .header-btn,
  .btn {
    font-size: 0.8rem;
    padding: 10px 0;
  }

  /* Video Popup Mobile Fix: Move to flow (no overlap) */
  .video-popup {
    position: relative !important;
    /* Not absolute anymore */
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    top: auto !important;
    width: 250px;
    /* Good size */
    margin: 30px auto 0 auto;
    /* Center it */
    box-shadow: 0 5px 20px rgba(0, 229, 255, 0.4);
    pointer-events: auto;
    /* Ensure clickable */
    transform: none !important;
    /* Disable conflicting transforms if any */
  }
}

/* Header Download Button */
.header-btn {
  border: 1px solid var(--glow-cyan);
  color: var(--glow-cyan);
  padding: 10px 20px;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.header-btn:hover {
  background: var(--glow-cyan);
  color: var(--primary-dark);
  box-shadow: 0 0 15px var(--glow-cyan);
}

/* Side Popup Video - STRICT FLOATING */
.video-popup {
  position: absolute;
  /* changed from fixed */
  bottom: 50px;
  /* Adjusted for inside banner */
  right: 10%;
  /* Positioned to the side */
  width: 250px;
  /* Slightly smaller for blend */
  border-radius: 20px;
  /* Softer corners */
  overflow: hidden;
  z-index: 10;
  /* Lower z-index than modal but above background */
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.6), 0 0 60px rgba(0, 229, 255, 0.2);
  /* Glowing effect */
  border: none;
  /* Remove border */
  animation: float 6s ease-in-out infinite;
  /* Subtle floating animation */
  background: transparent;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.video-popup video {
  width: 100%;
  display: block;
}

.video-controls {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 20;
  display: flex;
  gap: 10px;
}

.control-btn {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-white);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
}

.control-btn:hover {
  background: var(--glow-cyan);
  color: var(--primary-dark);
  box-shadow: 0 0 10px var(--glow-cyan);
  border-color: var(--glow-cyan);
}

@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}