/* ===================== Reset & base ===================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0B1F3A;
  --gold: #C49529;
  --teal: #2598A8;
  --grey-text: #4A4A4A;
  --border-grey: #B5B5B5;
  --font-body: 'Crimson Text', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: #1A1A1A;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 5px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-gold {
  background-color: var(--gold);
  color: #fff;
}

/* ===================== Section labels ===================== */
.section-label {
  margin-bottom: 28px;
}

.section-label span {
  display: inline-block;
  color: var(--teal);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--gold);
}

/* ===================== Header ===================== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 28px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.logo-text {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

/* ===================== Hero ===================== */
.hero {
  position: relative;
  background-color: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 62%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 62%;
  height: 100%;
  background: linear-gradient(90deg, var(--navy) 0%, rgba(11, 31, 58, 0.7) 12%, rgba(11, 31, 58, 0.25) 25%, transparent 40%);
}

.hero-content {
  position: relative;
  padding: 170px 0 90px;
  max-width: 620px;
  margin: 0;
}

.hero-content h1 {
  color: #fff;
  font-weight: 400;
  font-size: 56px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-subtitle {
  color: #fff;
  font-size: 24px;
  margin-bottom: 32px;
  max-width: 480px;
}

/* Info bar */
.info-bar {
  position: relative;
  background-color: var(--navy);
  padding: 32px 0;
}

.info-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 200px;
}

.info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.info-text {
  display: flex;
  flex-direction: column;
  color: #fff;
  font-size: 18px;
}

.info-text strong {
  font-weight: 700;
  font-size: 19px;
}

/* ===================== About ===================== */
.about {
  padding: 90px 0;
  background-color: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.about-text h2 {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.35;
  margin-bottom: 24px;
}

.about-text p {
  font-size: 21px;
  color: var(--grey-text);
  margin-bottom: 18px;
}

.about-images {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-img-main,
.about-img-secondary {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}



/* ===================== Itinerary ===================== */
.itinerary {
  padding: 90px 0;
  background-color: #fff;
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 48px 1.2fr;
  align-items: stretch;
  column-gap: 32px;
}

.timeline-photo {
  width: 100%;
  aspect-ratio: 4 / 2;
  object-fit: cover;
  border-radius: 4px;
  align-self: start;
}

.timeline-line-col {
  position: relative;
  display: flex;
  justify-content: center;
}

.timeline-dot {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.timeline-item:not(.timeline-item-last) .timeline-line-col::after {
  content: "";
  position: absolute;
  top: 48px;
  bottom: -48px;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background-color: var(--border-grey);
}

.day-label {
  display: block;
  color: var(--teal);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.timeline-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 19px;
  color: var(--grey-text);
  margin-bottom: 10px;
}

.day-more {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.day-more.open {
  grid-template-rows: 1fr;
}

.day-more-inner {
  overflow: hidden;
  min-height: 0;
}

.day-more-inner p {
  font-size: 19px;
  color: var(--grey-text);
  padding-top: 2px;
  padding-bottom: 12px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  text-decoration: underline;
  font-size: 17px;
  font-family: var(--font-body);
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
}

.read-more .chevron {
  transition: transform 0.3s ease;
  width: 10px;
  height: 10px;
}

.read-more.is-open .chevron {
  transform: rotate(180deg);
}

/* ===================== Inclusions ===================== */
.inclusions {
  padding: 90px 0;
  background-color: #fff;
}

.inclusions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.inclusion-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--border-grey);
  border-radius: 12px;
  padding: 56px 40px 40px;
  background: #fff;
}

.inclusion-icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inclusion-icon img { width: 100%; height: 100%; object-fit: contain; }

.inclusion-card h3 {
  width: fit-content;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--gold);
}

.inclusion-card ul {
  align-self: stretch;
  text-align: left;
}

.inclusion-card li {
  position: relative;
  font-size: 19px;
  color: var(--grey-text);
  padding-left: 20px;
  margin-bottom: 12px;
}

.inclusion-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ===================== Gallery ===================== */
.gallery {
  padding: 90px 0 100px;
  background-color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
}

/* ===================== CTA ===================== */
.cta {
  position: relative;
  background-color: var(--navy);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, rgba(11,31,58,0.75) 55%, rgba(11,31,58,0.55) 100%);
}

.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 70px 0;
}

.cta-inner h2 {
  color: #fff;
  font-weight: 400;
  font-size: 34px;
}

/* ===================== Footer ===================== */
.site-footer {
  background-color: #fff;
  padding: 60px 0;
  border-top: 1px solid #eee;
}

.whatsapp-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.footer-col:not(:last-child) {
  border-right: 1px solid var(--border-grey);
  padding-right: 40px;
}

.footer-brand {
  display: flex;
  gap: 16px;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  margin-top: 14px;
}

.footer-col h4:first-child { margin-top: 0; }

.footer-col p {
  font-size: 14px;
  color: var(--grey-text);
  margin-bottom: 4px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
}

.footer-contact a {
  text-decoration: none;
}

/* ===================== Gallery page ===================== */
.site-header-static {
  position: relative;
  background-color: var(--navy);
  padding: 24px 0;
}

.logo-link { text-decoration: none; }

.logo-text-dark { color: #fff; }

.gallery-page {
  padding: 60px 0 100px;
  background-color: #fff;
}

.back-link {
  display: inline-block;
  margin-bottom: 32px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
  color: var(--navy);
}

.gallery-page h1 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 12px;
}

.gallery-intro {
  font-size: 17px;
  color: var(--grey-text);
  max-width: 640px;
  margin-bottom: 40px;
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-page-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.gallery-page-grid img.span-tall {
  grid-row: span 2;
}

@media (max-width: 900px) {
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
}

@media (max-width: 500px) {
  .gallery-page-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-page-grid img.span-tall { grid-row: span 1; }
}

/* ===================== Responsive ===================== */
@media (max-width: 900px) {
  .hero-content h1 { font-size: 40px; }
  .hero-subtitle { font-size: 19px; }
  .about-grid { grid-template-columns: 1fr; }
  .inclusions-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-col:not(:last-child) { border-right: none; padding-right: 0; border-bottom: 1px solid var(--border-grey); padding-bottom: 20px; }
}

@media (max-width: 780px) {
  .hero-bg,
  .hero-overlay {
    width: 100%;
  }
  .hero-overlay {
    background: linear-gradient(180deg, var(--navy) 30%, rgba(11, 31, 58, 0.55) 65%, rgba(11, 31, 58, 0.25) 100%);
  }
  .hero-content { max-width: 100%; }
}

@media (max-width: 700px) {
  .timeline-item {
    grid-template-columns: 48px 1fr;
  }
  .timeline-photo { display: none; }
  .info-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 24px;
    column-gap: 16px;
  }
}
