/* =========================================
   LIFE IS WHAT YOU MAKE IT
   Core Styles
========================================= */

:root {
  --navy-dark: #071a39;
  --navy: #0b3a66;
  --navy-light: #0e4f7a;
  --gold: #d4af37;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  color: #ffffff;
  background: var(--navy);
  line-height: 1.6;
}

/* =========================================
   HEADER
========================================= */

.liwymi-header {
  background: var(--navy-dark);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-dark .navbar-nav .nav-link {
  color: #f5dca3;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 991px) {
  .navbar-nav {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .navbar-nav .btn {
    width: 100%;
    margin-top: 0.75rem;
  }
}

.liwymi-header .logo img {
  height: 44px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.main-nav .btn {
  background: #0a3c7a;
  border-radius: 999px;
  padding: 10px 26px;
  color: #ffffff;
  font-weight: 600;
}

/* =========================================
   HERO
========================================= */

.liwymi-hero {
  position: relative;
  height: 65vh; /* adjust if needed */
  min-height: 420px;
  background-image: url('/assets/images/LIWYMI_banner.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
}

/* Overlay to control darkness */
.liwymi-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.35)
  );
  z-index: 1;
}

.hero {
  width: 100%;
  height: 50vh;              /* 👈 controls depth */
  min-height: 280px;
  max-height: 420px;

  background-image: url('/assets/images/LIWYMI_banner.jpg');
  background-size: cover;    /* prevents stretching */
  background-position: center center;
  background-repeat: no-repeat;

  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Ensure content is above overlay */
.liwymi-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  text-shadow: 0 3px 10px rgba(0,0,0,0.35);
}

.hero-overlay {
  min-height: 520px;
  background: linear-gradient(
    to right,
    rgba(7, 26, 57, 0.85),
    rgba(7, 26, 57, 0.35)
  );
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.hero-overlay h1 {
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  max-width: 700px;
}

/* =========================================
   INTRO TEXT
========================================= */

.liwymi-intro {
  background: var(--navy);
  padding: 60px 0;
  text-align: center;
}

.liwymi-intro p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

/* =========================================
   WHAT'S INCLUDED
========================================= */

.liwymi-included {
  background: var(--navy);
  padding: 80px 0;
}

.liwymi-included h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  text-decoration: underline;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.included-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0,0,0,0.45);
}

.included-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.included-caption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 6px rgba(0,0,0,0.8);
}

/* =========================================
   SHIP INFO
========================================= */

.liwymi-ship {
  background: linear-gradient(
    to bottom,
    var(--navy),
    var(--navy-dark)
  );
  padding: 80px 0;
}

.liwymi-ship h2 {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 12px;
}

.liwymi-ship h3 {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 30px;
}

.liwymi-ship p {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
}

/* =========================================
   CTA
========================================= */

.liwymi-cta {
  background: var(--navy-light);
  padding: 90px 20px;
  text-align: center;
}

.liwymi-cta h2 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.liwymi-cta p {
  font-size: 1.2rem;
  margin-bottom: 36px;
}

.liwymi-cta .btn {
  background: var(--gold);
  color: #000;
  border-radius: 999px;
  padding: 14px 42px;
  font-size: 1.05rem;
  font-weight: 600;
}

/* =========================================
   FOOTER
========================================= */

.liwymi-footer {
  background: #03162c;
  text-align: center;
  padding: 30px 10px;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {
  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-overlay h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .included-grid {
    grid-template-columns: 1fr;
  }

  .hero-overlay {
    padding: 0 6%;
  }

  .hero-overlay h1 {
    font-size: 2.3rem;
  }
}

.main-nav a.disabled {
  opacity: 0.6;
  pointer-events: none;
}

/* ===============================
   LIWYMI CARDS
================================ */

.liwymi-card {
  border-radius: 16px;
  overflow: hidden;
}

.liwymi-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

/* Itinerary */
.itinerary-list li {
  font-size: 0.95rem;
}

/* Cabin grid */
.cabin-option {
  text-align: center;
  font-size: 0.85rem;
}

.cabin-option img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 6px;
}

/* Video safety */
video {
  object-fit: cover;
}

/* INFO CARDS */
.info-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.info-video {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.info-body {
  padding: 24px;
}

.highlight-card {
  background: linear-gradient(180deg, #0c2a44, #071a39);
  color: #fff;
}

.itinerary-list,
.drink-list {
  padding-left: 1rem;
}

.itinerary-list li,
.drink-list li {
  margin-bottom: 8px;
}

/* CABIN CARDS */
.cabin-card {
  background: #f5f7fa;
  background-color: #f5f7fa;
  color: #1f2a37; /* main text */
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.cabin-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}

.cabin-card h3,
.cabin-card h4 {
  color: #0a2540; /* strong headline */
}

.cabin-card p {
  color: #4b5563; /* softer body text */
}

.cabin-card .price {
  color: #0a2540;
  font-weight: 700;
}

.cabin-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.cabin-body {
  padding: 16px;
}

.cabin-body h4 {
  margin-bottom: 6px;
}

.cabin-body .price {
  font-weight: 700;
  color: #b98b2c;
}

/* VIDEO Wrapper */
.video-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.event-video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.video-sound-toggle {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.65);
  color: #fff;
  border: none;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.video-sound-toggle:hover {
  background: rgba(0,0,0,0.85);
  transform: scale(1.05);
}

/* Parties CSS Section */
.party-hero img {
  max-height: 500px;
  width: 100%;
  object-fit: cover;
}

/* ==============================
   LIWYMI HIGHLIGHT STRIP
============================== */

.liwymi-highlight {
  background: linear-gradient(90deg, #071a39, #0c2a44);
  color: #fff;
  padding: 30px 0;
}

.highlight-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.highlight-main h2 {
  margin: 0 0 6px;
  font-size: 1.8rem;
  font-weight: 700;
}

.highlight-main p {
  margin: 0;
  font-size: 1.05rem;
  opacity: 0.95;
}

.highlight-new {
  background: #d4af37;
  color: #071a39;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .highlight-inner {
    flex-direction: column;
    text-align: center;
  }

  .highlight-new {
    margin-top: 12px;
  }
}

/* ==============================
   HIGHLIGHT BADGES
============================== */

.highlight-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.highlight-earlybird {
  background: #28a745; /* confident but friendly green */
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.highlight-earlybird span {
  font-weight: 500;
  font-size: 0.85rem;
  opacity: 0.95;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .highlight-badges {
    flex-direction: column;
  }
}

/* ==============================
   SOLO PRICING BANNER
============================== */

.solo-pricing-banner {
  background: linear-gradient(135deg, #0f2a44, #071a39);
  color: #ffffff;
  padding: 18px 0;
  margin-top: 30px;
  text-align: center;
}

.solo-pricing-banner p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.solo-pricing-banner strong {
  color: #f5dca3; /* LIWYMI gold tone */
}

/* Mobile */
@media (max-width: 768px) {
  .solo-pricing-banner p {
    font-size: 0.95rem;
    line-height: 1.4;
  }
}

.cabin-price {
  margin-top: 0.5rem;
  font-size: 1.1rem;
}

.old-price {
  color: #888;
  text-decoration: line-through;
  margin-right: 0.5rem;
}

.new-price {
  color: #c62828;
  font-weight: 700;
  font-size: 1.2rem;
}

.normal-price {
  font-weight: 600;
}

.early-bird-tag {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.75rem;
  background: #ffeb3b;
  color: #000;
  padding: 2px 6px;
  border-radius: 4px;
}

/* =========================
   Cabin Detail Page only
========================= */

.cabin-page .cabin-card img {
    border-radius: 6px;
}

.cabin-page .cabin-card {
    margin-bottom: 3rem;
}

.cabin-hero {
    background: linear-gradient(rgba(15,42,68,.65), rgba(15,42,68,.65)),
                url('/assets/images/hero.jpg') center / cover no-repeat;
    color: #ffffff;
    padding: 60px 0;
}

.badge-soft {
    background: #eef4fa;
    color: #0f2a44;
}

iframe {
  max-width: 100%;
}

#restrictedViewCabins {
  scroll-margin-top: 120px;
}

.collapse {
  display: block;
}

iframe {
  display: block;
  height: auto;
}

.cabin-card .carousel img {
  border-radius: 6px;
  object-fit: cover;
}

.cabin-card .carousel {
  max-height: 420px;
  overflow: hidden;
}

.admin-corner-link {
  position: fixed;
  bottom: 6px;
  right: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  z-index: 9999;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.admin-corner-link:hover {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
}

/* ===============================
   Footer
=============================== */
.liwymi-footer {
  background: #0f2a44;
  color: #cfd8e3;
  padding: 20px 15px;
  font-size: 0.85rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.6;
}

.footer-links {
  margin-top: 8px;
}

.footer-links a {
  color: #cfd8e3;
  text-decoration: none;
  margin: 0 8px;
  font-weight: 400;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Mobile spacing */
@media (max-width: 576px) {
  .footer-links a {
    display: inline-block;
    margin: 4px 6px;
  }
}

.pricing-table th,
.pricing-table td {
  vertical-align: middle;
}

.pricing-table th {
  background-color: #f4f6f8;
  font-weight: 600;
}

.pricing-table td strong {
  color: #0f2a44;
}

.pricing-table td {
  background: #fff;
}

@media (max-width: 768px) {
  .pricing-table th small {
    display: block;
  }
}
