/* =============================================
   CRUISE LINE OF THE MONTH
   assets/css/clom.css
============================================= */


/* =============================================
   HERO
============================================= */
.clom-hero {
  background: linear-gradient(135deg, #071a39 0%, #0f2d5e 60%, #163a6e 100%);
  padding: 80px 0 65px;
  color: #fff;
}

.clom-hero-kicker {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #c8a96b;
  font-weight: 600;
  margin-bottom: 12px;
}

.clom-hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.clom-hero-logo {
  display: block;
  max-width: 260px;
  width: 100%;
  margin: 0 auto 24px;
}

.clom-hero-sub {
  font-size: 1.1rem;
  opacity: 0.88;
  max-width: 620px;
  line-height: 1.65;
  margin: 0 auto;
}

.clom-hero-badge {
  display: inline-block;
  background: rgba(200,169,107,0.18);
  border: 1px solid rgba(200,169,107,0.5);
  color: #c8a96b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}


/* =============================================
   SECTION STYLES
============================================= */
.clom-section {
  padding: 60px 0;
}

.clom-section + .clom-section {
  border-top: 1px solid #e8ebf2;
}

.clom-section-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #c8a96b;
  font-weight: 700;
  margin-bottom: 10px;
}

.clom-section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0a1d44;
  margin-bottom: 16px;
}

.clom-section-intro {
  font-size: 1rem;
  color: #555;
  line-height: 1.75;
  max-width: 820px;
}


/* =============================================
   IMAGE GALLERY PLACEHOLDERS
============================================= */
.clom-img-placeholder {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #e8ebf2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aab;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.clom-img-placeholder--tall {
  height: 340px;
}

.clom-img-placeholder--short {
  height: 160px;
}

.clom-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.clom-img-note {
  font-size: 0.8rem;
  color: #999;
  text-align: center;
  margin-top: 8px;
}


/* =============================================
   SHIP CLASS CARDS
============================================= */
.clom-ship-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 26px;
  box-shadow: 0 3px 16px rgba(0,0,0,0.07);
  height: 100%;
  border-top: 4px solid #0a1d44;
  transition: transform 0.2s, box-shadow 0.2s;
}

.clom-ship-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.clom-ship-card-class {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c8a96b;
  margin-bottom: 6px;
}

.clom-ship-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a1d44;
  margin-bottom: 6px;
}

.clom-ship-card-ships {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 14px;
  font-style: italic;
}

.clom-ship-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 14px;
}

.clom-ship-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.clom-ship-card ul li {
  padding: 5px 0 5px 22px;
  position: relative;
  font-size: 0.87rem;
  color: #444;
  border-bottom: 1px solid #eef0f5;
  line-height: 1.4;
}

.clom-ship-card ul li:last-child {
  border-bottom: none;
}

.clom-ship-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 5px;
  color: #c8a96b;
  font-weight: 700;
  font-size: 0.85rem;
}


/* =============================================
   EXPERIENCE STRIPS (service levels / onboard)
============================================= */
.clom-experience-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  height: 100%;
  border-left: 4px solid #c8a96b;
}

.clom-experience-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #0a1d44;
  margin-bottom: 10px;
}

.clom-experience-card p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.clom-included-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.clom-included-list li {
  background: #f0f3fa;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0a1d44;
}

.clom-included-list li::before {
  content: '✓  ';
  color: #c8a96b;
}

.clom-bg-light-blue {
  background: #f5f7fc;
}


/* =============================================
   FEATURED OFFER CARDS
============================================= */
.clom-offers-section {
  background: #0a1d44;
  padding: 64px 0;
}

.clom-offer-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}

.clom-offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.18);
}

.clom-offer-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.clom-offer-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.clom-offer-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #888;
  margin-bottom: 6px;
}

.clom-offer-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0a1d44;
  margin-bottom: 6px;
  line-height: 1.3;
}

.clom-offer-detail {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 14px;
  flex: 1;
  line-height: 1.6;
}

.clom-offer-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0a1d44;
  margin-bottom: 16px;
}

.clom-offer-price small {
  font-size: 0.82rem;
  font-weight: 400;
  color: #888;
  margin-left: 3px;
}

.btn-gold {
  background: #c8a96b;
  border-color: #c8a96b;
  color: #111;
  font-weight: 600;
}

.btn-gold:hover {
  background: #b69556;
  border-color: #b69556;
  color: #111;
}

.btn-gold-outline {
  border: 2px solid #c8a96b;
  color: #c8a96b;
  background: transparent;
  font-weight: 600;
}

.btn-gold-outline:hover {
  background: #c8a96b;
  color: #111;
}


/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 767px) {
  .clom-hero {
    padding: 60px 0 50px;
  }

  .clom-section {
    padding: 44px 0;
  }

  .clom-ship-card {
    padding: 22px 18px;
  }

  .clom-offer-img {
    height: 170px;
  }
}
