/* Local Fonts Setup */
@font-face {
  font-family: 'Lato';
  src: url('../fonts/lato/Lato-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/lato/Lato-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/lato/Lato-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/lato/Lato-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'Poiret One';
  src: url('../fonts/poiret-one/PoiretOne-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

:root {
  --color-marina: #262E82;
  --color-navy: #262E82;
  --color-electric: #DAFF96;
  --color-lime: #DAFF96;
  --color-sand: #F2E4C9;
  --color-white: #ffffff;
  --color-text-dark: #262E82;
  --color-text-light: #ffffff;

  --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Poiret One', Georgia, serif;
}

/* Ultra-Bold Typography Stroke & Weight for Poiret One Headings & Labels */
section h2,
.section-title-wrap h2,
.founder-text h2,
.day-title,
.price-label,
.price-tag,
.pricing-col-title,
.feature-card h3,
.gallery-overlay h4 {
  font-family: var(--font-display);
  font-weight: 700;
  -webkit-text-stroke: 1.3px currentColor;
  text-stroke: 1.3px currentColor;
  letter-spacing: 0.03em;
}

section h2,
.section-title-wrap h2,
.founder-text h2 {
  -webkit-text-stroke: 2.2px currentColor;
  text-stroke: 2.2px currentColor;
}

.hero-content p.subtitle {
  font-family: var(--font-display);
  font-weight: 700;
  -webkit-text-stroke: 1.8px currentColor;
  text-stroke: 1.8px currentColor;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-weight: 700;
  -webkit-text-stroke: 1.4px currentColor;
  text-stroke: 1.4px currentColor;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--color-marina);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-marina);
  background: var(--color-marina);
  line-height: 1.6;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2.5rem;
  background: linear-gradient(to bottom, rgba(38,46,130,0.95), rgba(38,46,130,0));
  backdrop-filter: blur(8px);
}

.logo-link {
  display: inline-block;
}

.logo-navbar {
  height: 28px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  color: var(--color-white);
  text-decoration: none;
  margin-left: 1.5rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  transition: all 0.3s ease;
}
.nav-links a:hover { color: var(--color-electric); }

.nav-links .nav-cta {
  background: var(--color-electric);
  color: var(--color-marina) !important;
  padding: 0.45rem 1.2rem;
  border-radius: 20px;
  font-weight: 900 !important;
}
.nav-links .nav-cta:hover {
  background: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(218, 255, 150, 0.4);
}

.mobile-toggle {
  display: none;
}

/* Hero Section — Full Screen Full Bleed Live Slideshow */
.parallax-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-marina);
}

/* Dark gradient overlay for text contrast over yacht photo */
.parallax-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 16, 38, 0.8) 0%,
    rgba(11, 16, 38, 0.45) 55%,
    rgba(11, 16, 38, 0.88) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.8s ease-in-out, transform 8s linear;
  will-change: opacity, transform;
}

.hero-bg-slide.active {
  opacity: 0.75 !important;
  transform: scale(1.08);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--color-white);
  padding: 5.5rem 1.5rem 2.5rem;
  max-width: 920px;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.4rem;
  background: rgba(218, 255, 150, 0.15);
  border: 1px solid rgba(218, 255, 150, 0.5);
  color: var(--color-electric);
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(0.75rem, 1.2vw, 0.88rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-logo-img {
  width: 100%;
  max-width: clamp(280px, 52vw, 640px);
  height: auto;
  margin: 0.5rem 0 1.5rem;
  display: block;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.4));
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5.5vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: 0.04em;
  color: var(--color-electric);
  font-family: var(--font-display);
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.subtitle {
  font-family: var(--font-display);
  color: var(--color-electric);
  font-size: clamp(1.2rem, 2.4vw, 1.75rem);
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.hero-content p:not(.subtitle) {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.65;
  max-width: 740px;
  margin-bottom: 2rem;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* Pill CTA Buttons with SVG Arrow Icon */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 2.8rem;
  background: var(--color-electric);
  color: var(--color-marina);
  text-decoration: none;
  border-radius: 999px; /* Pill shape */
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
  font-weight: 900;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  border: none;
  box-shadow: 0 8px 25px rgba(218, 255, 150, 0.35);
}

.btn .btn-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(218, 255, 150, 0.5);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-electric);
  border: 2px solid var(--color-electric);
  box-shadow: none;
}
.btn-secondary:hover {
  background: var(--color-electric);
  color: var(--color-marina);
}

/* Founder's Letter Section */
.founder-section {
  padding: 6.5rem 1.5rem;
  background: var(--color-electric);
  color: var(--color-marina);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.founder-text h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  line-height: 1.15;
}

.founder-text p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.founder-quote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-marina);
  border-left: 4px solid var(--color-marina);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.4;
}

.founder-author {
  margin-top: 2rem;
}

.founder-author .name {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.founder-author .title {
  font-size: 0.95rem;
  opacity: 0.8;
}

.founder-photo-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(38, 46, 130, 0.2);
  height: 520px;
  background: var(--color-white);
  border: 4px solid var(--color-white);
}

.founder-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%; /* Focus tightly on face, smile and upper body */
  filter: contrast(104%) brightness(102%);
  transition: transform 0.5s ease;
}

.founder-photo-wrap:hover img {
  transform: scale(1.03);
}

/* Checklist Section ("Ця подорож для тебе, якщо...") */
.checklist-section {
  padding: 6rem 1.5rem;
  background: var(--color-marina);
  color: var(--color-white);
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  padding: 1.6rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(218, 255, 150, 0.15);
  transition: transform 0.3s ease;
}

.checklist-item:hover {
  transform: translateY(-4px);
}

.checklist-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--color-electric);
  color: var(--color-marina);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.95rem;
  margin-right: 1.2rem;
  margin-top: 2px;
}

.checklist-item p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
}

/* Content Sections Base */
.content-section {
  position: relative;
  padding: 6.5rem 1.5rem;
  overflow: hidden;
}

.content-section.light,
.content-section:not(.dark) { 
  background: var(--color-electric); 
  color: var(--color-marina); 
}
.content-section.light h2,
.content-section.light p,
.content-section.light h3,
.content-section:not(.dark) h2,
.content-section:not(.dark) p,
.content-section:not(.dark) h3 { 
  color: var(--color-marina); 
}

.content-section.dark { 
  background: var(--color-marina); 
  color: var(--color-white); 
}
.content-section.dark h2,
.content-section.dark p,
.content-section.dark h3 { 
  color: var(--color-electric); 
}

.section-inner {
  position: relative;
  z-index: 2;
  max-width: 1150px;
  margin: 0 auto;
}

.section-title-wrap {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 3.5rem;
}

.section-inner h2 {
  font-family: var(--font-display);
  font-size: 3.2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: 0.04em;
}

.section-inner p.lead {
  font-size: 1.25rem;
  line-height: 1.6;
  font-family: var(--font-body);
  font-weight: 300;
}

/* Layout Grids & Feature Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 5;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 5;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(218, 255, 150, 0.2);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-electric);
  box-shadow: 0 20px 40px rgba(218, 255, 150, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-electric);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  letter-spacing: 0.02em;
}

.feature-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-card ul li {
  position: relative;
  padding-left: 1.8rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
}

.feature-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-electric);
  font-weight: 900;
  font-size: 1.1rem;
}

.content-section:not(.dark) .feature-card {
  background: rgba(38, 46, 130, 0.04);
  border-color: rgba(38, 46, 130, 0.15);
  color: var(--color-navy);
}

.content-section:not(.dark) .feature-card h3 {
  color: var(--color-navy);
}

.content-section:not(.dark) .feature-card ul li {
  color: var(--color-navy);
}

.content-section:not(.dark) .feature-card ul li::before {
  color: var(--color-navy);
}

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

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

/* Booking & Final Pricing Cards Styling */
.price-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 3rem 2.4rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.price-box.featured {
  border: 1px solid rgba(218, 255, 150, 0.45);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.price-box:hover {
  transform: translateY(-6px);
  border-color: var(--color-electric);
  box-shadow: 0 25px 50px rgba(218, 255, 150, 0.15);
}

.price-label {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-electric);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.price-tag {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--color-electric);
  line-height: 1;
  margin: 1rem 0 1.2rem;
  letter-spacing: 0.02em;
}

.price-box p {
  font-size: 1.05rem;
  opacity: 0.9;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.price-deposit {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-electric);
  padding: 0.6rem 1.6rem;
  background: rgba(218, 255, 150, 0.1);
  border-radius: 50px;
  display: inline-block;
  border: 1px solid rgba(218, 255, 150, 0.3);
  letter-spacing: 0.03em;
}

/* Day-by-Day Itinerary Section (#route) */
.itinerary-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 3rem;
}

.day-card {
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(38, 46, 130, 0.15);
}
.content-section.dark .day-card {
  border-bottom-color: rgba(218, 255, 150, 0.15);
}

.day-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.day-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.day-badge {
  display: inline-block;
  padding: 0.45rem 1.3rem;
  border-radius: 30px;
  background: var(--color-marina);
  color: var(--color-electric);
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  flex-shrink: 0;
}

.content-section.dark .day-badge {
  background: var(--color-electric);
  color: var(--color-marina);
}

.day-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  text-transform: uppercase;
  line-height: 1.2;
}

/* Photo Trio Grid for Itinerary Days with Touch Swipe & Click-to-Open */
.day-photo-trio {
  display: flex;
  gap: 0.85rem;
  margin: 1.5rem 0;
  border-radius: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
}

.day-photo-trio::-webkit-scrollbar {
  height: 4px;
}

.day-photo-trio::-webkit-scrollbar-track {
  background: rgba(38, 46, 130, 0.1);
  border-radius: 4px;
}

.day-photo-trio::-webkit-scrollbar-thumb {
  background: var(--color-electric);
  border-radius: 4px;
}

.day-photo-trio a {
  flex: 1 1 32%;
  min-width: 240px;
  height: 250px;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  position: relative;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.day-photo-trio a:first-child {
  flex: 1.4 1 38%;
}

.day-photo-trio a:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 30px rgba(218, 255, 150, 0.3);
}

.day-photo-trio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.6s ease;
}

.day-photo-trio a:hover img {
  transform: scale(1.06);
}

.day-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.day-action-highlight {
  font-weight: 900;
  font-size: 1.1rem;
  color: inherit;
  display: block;
}

/* 3-Column Pricing & Package Table (Green / Teal / Red UX) */
.pricing-table-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.pricing-column {
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}

/* Green Column: Included */
.pricing-column.included {
  border-color: var(--color-electric);
  box-shadow: 0 10px 30px rgba(218, 255, 150, 0.15);
}

/* Teal Column: Equipped Info */
.pricing-column.equipped {
  border-color: #3ca8b1;
}

/* Red Column: Paid Separately */
.pricing-column.additional {
  border-color: #ff6b6b;
}

.pricing-col-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.pricing-column.included .pricing-col-title { color: var(--color-electric); }
.pricing-column.equipped .pricing-col-title { color: #3ca8b1; }
.pricing-column.additional .pricing-col-title { color: #ff6b6b; }

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.pricing-list li {
  position: relative;
  padding-left: 1.8rem;
  font-size: 1.05rem;
  line-height: 1.5;
}

.pricing-list li .icon {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1.5;
}

.pricing-column.included .icon { color: var(--color-electric); }
.pricing-column.equipped .icon { color: #3ca8b1; }
.pricing-column.additional .icon { color: #ff6b6b; }

/* Brand Mark Watermarks & Inline Icons */
img.brand-mark-bg {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  width: 450px;
  max-width: 45vw;
  height: auto;
  opacity: 0.08;
  z-index: 1;
  pointer-events: none;
}

.brand-mark-inline {
  display: inline-block;
  height: 38px;
  width: auto;
  vertical-align: middle;
  margin-bottom: 6px;
  margin-right: 10px;
}

/* Gallery Filters & Grid */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 5;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  border: 2px solid var(--color-marina);
  background: transparent;
  color: var(--color-marina);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--color-marina);
  color: var(--color-electric);
  box-shadow: 0 4px 15px rgba(38, 46, 130, 0.25);
}

.content-section.dark .filter-btn {
  border-color: var(--color-electric);
  color: var(--color-electric);
}

.content-section.dark .filter-btn:hover, .content-section.dark .filter-btn.active {
  background: var(--color-electric);
  color: var(--color-marina);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 5;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 260px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s ease;
  will-change: transform;
}

.gallery-item.hidden,
.gallery-item.gallery-item-collapsed {
  display: none !important;
  opacity: 0;
}

.gallery-expand-wrap {
  text-align: center;
  margin-top: 3rem;
}

.gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(38, 46, 130, 0.92), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 0.3rem 0.8rem;
  background: var(--color-electric);
  color: var(--color-marina);
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.gallery-overlay h4 {
  font-family: var(--font-display);
  color: var(--color-white);
  font-size: 1.2rem;
  letter-spacing: 0.03em;
}

.faq-item {
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.content-section.light .faq-item,
.content-section:not(.dark) .faq-item {
  background: rgba(38, 46, 130, 0.06);
  border: 1px solid rgba(38, 46, 130, 0.15);
}

.content-section.light .faq-item:hover,
.content-section:not(.dark) .faq-item:hover {
  background: rgba(38, 46, 130, 0.12);
}

.content-section.dark .faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(218, 255, 150, 0.15);
}

.content-section.dark .faq-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  padding: 1.4rem 1.8rem;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  -webkit-text-stroke: 1.3px currentColor;
  text-stroke: 1.3px currentColor;
  text-align: left;
  cursor: pointer;
  color: inherit;
  letter-spacing: 0.03em;
  outline: none;
  transition: color 0.3s ease;
}

.content-section.light .faq-question:hover,
.content-section:not(.dark) .faq-question:hover {
  color: #111648;
}

.content-section.dark .faq-question:hover {
  color: var(--color-lime);
}

.faq-icon {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
  margin-left: 1rem;
  display: inline-block;
}

.content-section:nth-of-type(odd) .faq-icon {
  color: var(--color-marina);
}

.content-section:nth-of-type(even) .faq-icon,
.content-section.dark .faq-icon {
  color: var(--color-lime);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.3s ease;
  opacity: 0;
  padding: 0 1.8rem;
}

.faq-item.active .faq-answer {
  opacity: 1;
  padding: 0 1.8rem 1.5rem;
}

.faq-answer p {
  font-size: 1.05rem;
  line-height: 1.65;
  opacity: 0.9;
  margin: 0;
}

/* 360 Virtual Tour Section Styling */
.pano-scene-selector {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 2rem 0 2.5rem;
  z-index: 10;
  position: relative;
}

.pano-btn {
  background: rgba(38, 46, 130, 0.6);
  border: 1px solid rgba(218, 255, 150, 0.4);
  color: var(--color-white);
  padding: 0.75rem 1.4rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.pano-btn:hover {
  background: rgba(218, 255, 150, 0.2);
  border-color: var(--color-lime);
  color: var(--color-lime);
  transform: translateY(-2px);
}

.pano-btn.active {
  background: var(--color-lime);
  color: var(--color-navy);
  border-color: var(--color-lime);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(218, 255, 150, 0.4);
}

.panorama-3d-wrap {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  height: 560px;
  min-height: 440px;
  background: #0b1026;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(218, 255, 150, 0.3);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

#panorama-3d-container {
  width: 100%;
  height: 100%;
  cursor: grab;
}

#panorama-3d-container:active {
  cursor: grabbing;
}

/* Full-Width Seamless YouTube 360 Video Embed */
.youtube-360-fullwidth-wrap {
  width: 100%;
  max-width: 1100px;
  margin: 2rem auto 0;
}

.youtube-360-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(38, 46, 130, 0.35);
  border: 2px solid rgba(218, 255, 150, 0.4);
}

.youtube-360-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.panorama-hint {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--color-marina);
  font-weight: 700;
  opacity: 0.85;
}

/* Footer */
footer {
  text-align: center;
  padding: 4.5rem 2rem;
  background: #1c236b;
  color: var(--color-white);
  font-family: var(--font-body);
}
footer p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
}
footer .footer-logo {
  height: 70px;
  width: auto;
  margin-bottom: 1.5rem;
}
.footer-legal-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.8rem;
  margin: 1.2rem 0 1.5rem;
}
.footer-legal-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.footer-legal-links a:hover {
  color: var(--color-electric);
  text-decoration: underline;
}
footer .brand-slogan {
  font-family: var(--font-display);
  font-weight: 700;
  -webkit-text-stroke: 1.5px currentColor;
  text-stroke: 1.5px currentColor;
  color: var(--color-electric);
  font-size: 1.8rem;
  margin-top: 1rem;
  letter-spacing: 0.08em;
}

/* Scroll To Top Button with Brand Sign */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(38, 46, 130, 0.85);
  border: 1.5px solid var(--color-electric);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  text-decoration: none;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
  background: var(--color-electric);
  border-color: var(--color-electric);
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 35px rgba(218, 255, 150, 0.5);
}

.scroll-to-top-icon {
  height: 18px;
  width: auto;
  transition: filter 0.3s ease;
}

.scroll-to-top-arrow {
  color: var(--color-electric);
  font-size: 0.85rem;
  font-weight: 900;
  line-height: 1;
  transition: color 0.3s ease, transform 0.3s ease;
}

.scroll-to-top:hover .scroll-to-top-icon {
  filter: brightness(0) saturate(100%) invert(18%) sepia(50%) saturate(2200%) hue-rotate(220deg) brightness(90%) contrast(90%);
}

.scroll-to-top:hover .scroll-to-top-arrow {
  color: var(--color-marina);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 1.5rem;
    right: 1.2rem;
    width: 48px;
    height: 48px;
  }
}

/* Easter Egg Secret VIP Modal & Celebration */
.easter-egg-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(11, 16, 38, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.easter-egg-modal.show {
  opacity: 1;
  visibility: visible;
}

.easter-egg-content {
  background: linear-gradient(135deg, #1c236b 0%, #0f1438 100%);
  border: 2px solid var(--color-electric);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(218, 255, 150, 0.35);
  transform: scale(0.85);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.easter-egg-modal.show .easter-egg-content {
  transform: scale(1);
}

.easter-egg-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.easter-egg-close:hover {
  color: var(--color-electric);
}

.easter-egg-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(218, 255, 150, 0.2);
  border: 1px solid var(--color-electric);
  color: var(--color-electric);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}

.easter-egg-content h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--color-white);
  margin-bottom: 0.8rem;
  -webkit-text-stroke: 1.5px currentColor;
  text-stroke: 1.5px currentColor;
}

.easter-egg-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.easter-egg-gift {
  background: rgba(218, 255, 150, 0.12);
  border: 1px dashed var(--color-electric);
  border-radius: 14px;
  padding: 1.2rem;
  color: var(--color-electric);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
}

@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; }
  .day-photo-trio { grid-template-columns: 1fr; height: auto; }
  .day-photo-trio img { height: 200px; }
  
  .navbar { padding: 1rem 1.2rem; }
  
  .mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 120;
    padding: 0;
    position: relative;
  }
  
  .mobile-toggle span {
    width: 100%;
    height: 2px;
    background: var(--color-electric);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(15, 20, 56, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s ease, visibility 0.4s ease;
    z-index: 110;
    padding: 2rem;
  }

  .nav-links.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .nav-links a {
    margin-left: 0;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    font-family: var(--font-display);
    font-weight: 700;
  }

  .nav-links .nav-cta {
    margin-top: 0.5rem;
    font-size: 1.3rem;
    padding: 0;
    background: transparent;
    color: var(--color-electric) !important;
    box-shadow: none;
    border-radius: 0;
  }
}

@media (max-width: 768px) {
  .hero-title-area h1 { font-size: 2.2rem; }
  .section-inner h2 { font-size: 2.2rem; }
  .hero-card-frame { height: 380px; }

  .day-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }
  .day-badge {
    font-size: 0.78rem;
    padding: 0.35rem 1rem;
    white-space: nowrap;
    max-width: 100%;
  }
  .day-title {
    font-size: 1.65rem;
  }
}

/* Luxury GLightbox Viewer UI Enhancements */
.goverlay {
  background: rgba(11, 16, 38, 0.93) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.gslide-image img {
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

.gclose, .gnext, .gprev {
  background: rgba(38, 46, 130, 0.85) !important;
  border: 1px solid rgba(218, 255, 150, 0.5) !important;
  border-radius: 50% !important;
  width: 52px !important;
  height: 52px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4) !important;
}

.gclose {
  top: 25px !important;
  right: 25px !important;
}

.gclose:hover, .gnext:hover, .gprev:hover {
  background: var(--color-electric) !important;
  border-color: var(--color-electric) !important;
  transform: scale(1.12) !important;
}

.gclose svg path, .gnext svg path, .gprev svg path {
  fill: var(--color-white) !important;
}

.gclose:hover svg path, .gnext:hover svg path, .gprev:hover svg path {
  fill: var(--color-marina) !important;
}

.gslide-description {
  background: rgba(38, 46, 130, 0.9) !important;
  border-top: 1px solid rgba(218, 255, 150, 0.3) !important;
  backdrop-filter: blur(10px);
}

.gslide-title {
  font-family: var(--font-display) !important;
  color: var(--color-electric) !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
}

/* Special Guest / Artist Showcase Section */
.artist-section {
  background: linear-gradient(135deg, #181d54 0%, #0d1238 100%);
  position: relative;
}

.artist-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
}

.artist-photo-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(218, 255, 150, 0.3);
  max-height: 560px;
}

.artist-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.artist-photo-frame:hover img {
  transform: scale(1.04);
}

.artist-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(38, 46, 130, 0.9);
  border: 1px solid var(--color-electric);
  color: var(--color-electric);
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
}

.artist-subtag {
  display: inline-block;
  color: var(--color-electric);
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.artist-title {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--color-electric);
  line-height: 1.15;
  margin-bottom: 0.5rem;
  -webkit-text-stroke: 1.3px currentColor;
}

.artist-role {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  -webkit-text-stroke: 0.6px currentColor;
}

.artist-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2rem;
}

.artist-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.artist-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(218, 255, 150, 0.15);
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
}

.artist-highlight-item .artist-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.artist-highlight-item h4,
.artist-highlight-item span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-electric);
  margin-bottom: 0.3rem;
  display: block;
}

.artist-highlight-item p {
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

@media (max-width: 900px) {
  .artist-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .artist-title {
    font-size: 2.1rem;
  }
}

/* Disable Vercel Toolbar & Feedback Widget Overlay */
#vercel-toolbar,
[id*="vercel-toolbar"],
[class*="vercel-toolbar"],
iframe[src*="vercel.com"],
vercel-live-feedback {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
