/* =============================================
   ESCORTED & HOSTED CRUISES PAGE
   assets/css/escorted.css
============================================= */

/* =============================================
   HERO
============================================= */
.escorted-hero {
  min-height: 52vh;
  background: linear-gradient(135deg, #071a39 0%, #0f2d5e 60%, #163a6e 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.escorted-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/images/hero-pattern.png') center/cover;
  opacity: 0.05;
  pointer-events: none;
}

.escorted-hero-overlay {
  width: 100%;
  padding: 70px 0 55px;
  position: relative;
  z-index: 1;
}

.escorted-hero-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.escorted-hero-sub {
  font-size: 1.1rem;
  opacity: 0.88;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}


/* =============================================
   NEXT SAILING STRIP
============================================= */
.next-sailing-strip {
  background: #0a1d44;
  padding: 28px 0;
  color: #fff;
}

.next-sailing-strip-label {
  margin-bottom: 14px;
}

.next-sailing-strip-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.nss-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  flex: 0 1 auto;
  margin-right: 8px;
}

.nss-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  flex: 1;
}

.nss-stat {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.nss-stat:first-child {
  padding-left: 0;
}

.nss-stat:last-child {
  border-right: none;
}

.nss-stat-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2px;
}

.nss-stat-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

.nss-stat--price .nss-stat-value {
  color: #c8a96b;
  font-size: 1.1rem;
}

.nss-stat--price .nss-stat-value small {
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(200, 169, 107, 0.75);
}

@media (max-width: 767px) {
  .next-sailing-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nss-stats {
    gap: 12px 0;
  }

  .nss-stat {
    flex: 1 1 45%;
    border-right: none;
    padding-left: 0;
  }

  .next-sailing-strip .btn {
    width: 100%;
  }
}


/* =============================================
   TYPE BADGES
============================================= */
.escorted-type-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.escorted-type-badge--escorted {
  background: #0a1d44;
  color: #c8a96b;
}

.escorted-type-badge--hosted {
  background: #c8a96b;
  color: #0a1d44;
}


/* =============================================
   TYPE EXPLANATION CARDS
============================================= */
.escorted-type-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border-top: 4px solid #c8a96b;
}

.escorted-type-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0a1d44;
  margin-bottom: 12px;
}

.escorted-type-card p {
  color: #444;
  line-height: 1.7;
  font-size: 0.97rem;
}


/* =============================================
   SECTION HEADER
============================================= */
.escorted-section-header {
  margin-bottom: 32px;
}

.escorted-section-header h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0a1d44;
  margin-bottom: 6px;
}

.escorted-section-header p {
  color: #666;
  font-size: 0.97rem;
}


/* =============================================
   OFFER GRID
============================================= */
.escorted-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}


/* =============================================
   OFFER CARD
============================================= */
.escorted-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.escorted-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}

.escorted-card-img-wrap {
  display: block;
  overflow: hidden;
  height: 200px;
}

.escorted-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}

.escorted-card:hover .escorted-card-img {
  transform: scale(1.04);
}

.escorted-card-body {
  padding: 22px 24px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.escorted-card-meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #888;
  margin-bottom: 8px;
}

.escorted-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}

.escorted-card-title a {
  color: #0a1d44;
  text-decoration: none;
}

.escorted-card-title a:hover {
  color: #c8a96b;
}

.escorted-card-details {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 0.84rem;
  color: #555;
  margin-bottom: 12px;
}

.escorted-card-details span::before {
  content: '📍 ';
  font-size: 0.75rem;
}

.escorted-card-details span + span::before {
  content: '📅 ';
}

.escorted-card-overview {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.escorted-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid #eef0f5;
}

.escorted-card-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0a1d44;
}

.escorted-card-price small {
  font-size: 0.85rem;
  font-weight: 400;
  color: #888;
}


/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 575px) {
  .escorted-hero-title {
    font-size: 1.7rem;
  }

  .escorted-grid {
    grid-template-columns: 1fr;
  }

  .escorted-type-card {
    padding: 24px 20px;
  }
}
