@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=JetBrains+Mono:wght@400;500&display=swap");
/* ═══ Grenada Holiday ═══ */
/* Google Fonts loaded via Stylesheets head instance */
:root {
  --ocean-deep: #0B1D3A;
  --ocean-mid: #14325A;
  --ocean-light: #1B4F72;
  --teal: #0E8B7D;
  --teal-light: #14B8A6;
  --sand: #F5E6C8;
  --sand-light: #FFF8ED;
  --sand-warm: #E8D5B0;
  --sunset-gold: #E8A838;
  --sunset-orange: #E07B3C;
  --coral: #E85D5D;
  --palm-green: #2D6A4F;
  --palm-light: #52B788;
  --white: #FFFFFF;
  --text-dark: #1A1A2E;
  --text-mid: #4A4A5A;
  --text-light: #7A7A8A;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-strong: rgba(255, 255, 255, 0.15);
  --shadow-soft: 0 4px 24px rgba(11, 29, 58, 0.08);
  --shadow-mid: 0 8px 40px rgba(11, 29, 58, 0.12);
  --shadow-strong: 0 16px 64px rgba(11, 29, 58, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text-dark);
  background: var(--sand-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(165deg, var(--ocean-deep) 0%, var(--ocean-mid) 40%, var(--teal) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(ellipse 80% 50% at 20% 80%, rgba(14, 139, 125, 0.4) 0%, transparent 70%), radial-gradient(ellipse 60% 40% at 80% 20%, rgba(232, 168, 56, 0.15) 0%, transparent 60%), radial-gradient(ellipse 50% 50% at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
}

.hero-waves {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
  animation: fadeUp 1.2s ease-out;
}

.hero-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.hero-destination {
  font-family: "Playfair Display", serif;
  font-size: 6.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-destination em {
  font-style: italic;
  font-weight: 400;
  color: var(--sunset-gold);
}

.hero-subtitle {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-names {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.hero-dates {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-scroll {
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: pulse 2.5s ease-in-out infinite;
  cursor: pointer;
  text-decoration: none;
}

.hero-scroll span {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
}

/* ═══ NAV ═══ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 237, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s;
}

.nav.scrolled {
  box-shadow: var(--shadow-soft);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  height: 56px;
  gap: 0.25rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-inner::-webkit-scrollbar {
  display: none;
}

.nav-link {
  flex-shrink: 0;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.25s;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--ocean-light);
  background: rgba(27, 79, 114, 0.08);
}

.nav-link.active {
  color: var(--white);
  background: var(--ocean-light);
}

/* ═══ MAIN LAYOUT ═══ */
.main-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 4rem 0 2rem;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--ocean-deep);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

/* ═══ QUICK REF CARDS ═══ */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.ref-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}

.ref-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-mid);
}

.ref-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.ref-card h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.ref-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.4rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
  gap: 1rem;
}

.ref-item:last-child {
  border-bottom: none;
}

.ref-item .label {
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 500;
}

.ref-item .value {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ocean-deep);
  text-align: right;
}

/* ═══ TIMELINE / DAY CARDS ═══ */
.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal), var(--sunset-gold), var(--coral), var(--palm-green), var(--ocean-light));
  border-radius: 2px;
}

.day-card {
  position: relative;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.day-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.day-dot {
  position: absolute;
  left: -3rem;
  top: 1.5rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--teal), var(--shadow-soft);
  z-index: 2;
}

.day-inner {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s;
}

.day-card:hover .day-inner {
  box-shadow: var(--shadow-mid);
}

.day-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.day-number {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  min-width: 56px;
}

.day-header-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ocean-deep);
  margin-bottom: 0.15rem;
}

.day-header-text .day-date {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

.day-header .toggle-icon {
  margin-left: auto;
  font-size: 1.2rem;
  transition: transform 0.3s;
  color: var(--text-light);
}

.day-card.open .toggle-icon {
  transform: rotate(180deg);
}

.day-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.day-card.open .day-body {
  max-height: 3000px;
}

.day-body-inner {
  padding: 0 1.5rem 1.5rem;
}

/* Segment */
.segment {
  margin-bottom: 1.25rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.segment-header {
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.85rem;
}

.segment-header .seg-icon {
  font-size: 1rem;
}

.segment-body {
  padding: 0.75rem 1rem;
  background: var(--white);
}

.seg-flight .segment-header {
  background: linear-gradient(135deg, #E8F4FD, #D6EAF8);
  color: var(--ocean-light);
}

.seg-hotel .segment-header {
  background: linear-gradient(135deg, #FEF3E2, #FDEBD0);
  color: #B7791F;
}

.seg-transport .segment-header {
  background: linear-gradient(135deg, #E8F8F5, #D5F5E3);
  color: var(--palm-green);
}

.seg-activity .segment-header {
  background: linear-gradient(135deg, #F4ECF7, #E8DAEF);
  color: #7D3C98;
}

.detail-row {
  display: flex;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  gap: 0.75rem;
  font-size: 0.88rem;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  flex: 0 0 110px;
  font-weight: 600;
  color: var(--text-mid);
  font-size: 0.82rem;
}

.detail-value {
  color: var(--text-dark);
}

/* Alert & Tip */
.alert, .tip {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-xs);
  font-size: 0.85rem;
  margin-top: 0.75rem;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  line-height: 1.5;
}

.alert {
  background: #FFF0F0;
  border-left: 3px solid var(--coral);
  color: #922B21;
  font-weight: 600;
}

.tip {
  background: #EAFAF1;
  border-left: 3px solid var(--palm-light);
  color: #1E6B45;
}

.alert .icon, .tip .icon {
  flex-shrink: 0;
  font-size: 1rem;
}

.day-note {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

/* ═══ CHECKLIST ═══ */
.checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 0.75rem;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.25s;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.check-item:hover {
  box-shadow: var(--shadow-mid);
}

.check-item.checked {
  background: #F0FAF4;
  border-color: var(--palm-light);
}

.check-item.checked .check-text {
  text-decoration: line-through;
  color: var(--text-light);
}

.check-box {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid #CCC;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: all 0.25s;
  margin-top: 1px;
}

.check-item.checked .check-box {
  background: var(--palm-light);
  border-color: var(--palm-light);
  color: white;
}

.check-text {
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-dark);
}

/* ═══ BAGGAGE TABLE ═══ */
.baggage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.baggage-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-align: center;
}

.baggage-card .airline-logo {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.baggage-card h4 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--ocean-deep);
}

.baggage-card .bag-detail {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 0.3rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
}

.baggage-card .bag-detail:last-child {
  border-bottom: none;
}

/* ═══ CONTACTS GRID ═══ */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  gap: 1rem;
  align-items: center;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ocean-deep);
  margin-bottom: 0.15rem;
}

.contact-card a {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-card .contact-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.15rem;
}

/* ═══ INFO BOXES ═══ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.info-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.info-box h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ocean-deep);
  margin-bottom: 0.5rem;
}

.info-box p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ═══ FOOTER ═══ */
.footer {
  background: var(--ocean-deep);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 3rem 2rem;
  margin-top: 4rem;
  font-size: 0.85rem;
}

.footer .footer-main {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

/* ═══ CONTENT PAGES ═══ */
.page-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 2rem;
  line-height: 1.7;
}

.page-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: var(--ocean-deep);
  margin-bottom: 1rem;
}

.page-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: var(--ocean-deep);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.page-content p {
  margin-bottom: 1rem;
  color: var(--text-mid);
}

.page-content a {
  color: var(--teal);
}

/* ═══ ANIMATIONS ═══ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ PRINT ═══ */
@media print {
  .hero {
    min-height: auto;
    padding: 2rem;
    page-break-after: always;
  }
  .nav {
    display: none;
  }
  .day-body {
    max-height: none !important;
  }
  .day-card {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-scroll {
    display: none;
  }
  body {
    background: white;
  }
  .day-card {
    break-inside: avoid;
  }
}
/* ═══ RESPONSIVE ═══ */
@media all and (max-width: 768px) {
  .main-inner {
    padding: 0 1rem;
  }
  .timeline {
    padding-left: 2rem;
  }
  .timeline::before {
    left: 7px;
  }
  .day-dot {
    left: -2rem;
    width: 18px;
    height: 18px;
  }
  .day-number {
    font-size: 1.5rem;
    min-width: 40px;
  }
  .ref-grid {
    grid-template-columns: 1fr;
  }
  .checklist {
    grid-template-columns: 1fr;
  }
  section {
    padding: 3rem 0 1.5rem;
  }
  .hero-destination {
    font-size: 3rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-names {
    font-size: 1.2rem;
  }
  .section-title {
    font-size: 2rem;
  }
}