/* BASE */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #ffffff;
  color: #111;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

.muted { color: #555; }

/* HERO */
.hero {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 34px;
}
.hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.75));
}
.hero-text {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  color: #fff;
}
.hero-text h1 { font-size: 2.4rem; margin-bottom: 6px; }
.hero-text p { font-size: 1.05rem; opacity: 0.95; }

/* INTRO */
.intro-block { margin: 10px 0 22px; }
.intro-block h2 { font-size: 1.75rem; margin-bottom: 8px; }
.intro-block p { font-size: 1.02rem; }

/* START HERE – PANELS */
.start-wrap {
  display: grid;
  gap: 16px;
  margin: 18px 0 42px;
}

.start-panel {
  background: #f6f7f8;
  border: 1px solid #e6e7ea;
  border-radius: 16px;
  padding: 18px;
}

.start-panel h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.start-panel p { margin-bottom: 10px; }

.start-callout {
  margin-top: 6px;
  font-weight: 700;
}

.start-list {
  padding-left: 18px;
  margin: 10px 0;
}

.start-list li { margin-bottom: 8px; }

/* QUICK PICKS HEADER */
.quick-header {
  text-align: center;
  margin: 0 0 18px;
}
.quick-header h2 {
  font-size: 1.75rem;
  margin-bottom: 6px;
}

/* GRID SETTINGS */
.sections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}

@media (min-width: 1024px) {
  .sections-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.section {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  height: 100%;
  min-height: 550px;
}

/* IMAGE HEIGHTS & POSITIONING */
.image-wrapper {
  width: 100%;
  height: 200px;
  background: #ffffff;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .image-wrapper {
    height: 240px;
  }
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* SHORE EX ZOOM FIX */
.image-wrapper.shore-excursion {
  background: #ffffff;
}

.image-wrapper.shore-excursion img {
  object-fit: contain;
  object-position: top center;
}

/* CONTENT SPACING */
.section-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 16px;
  text-align: left;
}

.one-line-heading {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}

.intro-text {
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
}

/* HIGHLIGHTS BOX */
.highlights-box {
  background: #f9f9f9;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 10px;
  border-left: 4px solid #111;
  min-height: 105px;
}

.fixed-height-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fixed-height-list li {
  font-size: 12px;
  margin-bottom: 3px;
  line-height: 1.3;
}

/* PRO TIP LINE */
.button-area {
  margin-top: auto;
}

.pro-tip-text {
  font-size: 11px;
  color: #111;
  margin-bottom: 12px;
  line-height: 1.3;
  min-height: 30px;
}

/* BUTTONS */
.btn {
  display: block;
  padding: 14px 20px;
  background: #111;
  color: white;
  text-align: center;
  font-weight: 700;
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.2s ease-in-out;
}

.btn:hover {
  background: #333;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

@media (max-width: 480px) {
  .btn {
    font-size: 14px;
    padding: 12px 10px;
  }

  /* 🔹 MOBILE POLISH: reduce header weight in Start panels */
  .start-panel h3 {
    font-size: 1.15rem;
  }

  .start-panel {
    padding: 16px;
  }
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 30px 20px;
  border-top: 1px solid #eee;
  margin-top: 30px;
}

.social-link {
  color: #111;
  font-weight: 700;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}

.copyright {
  font-size: 11px;
  color: #666;
  margin-bottom: 4px;
}

.disclosure {
  font-size: 11px;
  color: #111;
  font-weight: 700;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto;
}
