@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap");
:root {
  --white: #fff;
  --black: #000;
  --brand-red: #E72027;
  --brand-green: #77AB09;
  --brand-blue: #22A4DE;
  --primary-50: #F0F9FF;
  --primary-100: #E0F2FE;
  --primary-700: #026BA2;
  --primary-500: #0C9FDD;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-600: #475569;
  --gray-700: #334155;
  --box-shadow-lg: 2px 4px 24px rgba(0, 0, 0, 0.08);
  --box-shadow-md: 1px 2px 16px rgba(0, 0, 0, 0.08);
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  background: var(--gray-50);
  color: var(--gray-700);
}

main {
  margin: 0 auto;
  padding: 24px;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

header {
  width: 100%;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
}
header h1 {
  font-size: 1.8rem;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 900px) {
  header {
    flex-direction: column;
    justify-content: center;
  }
  header h1 {
    text-align: center;
    font-size: 1.4rem;
  }
}

.hero {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media (min-width: 900px) {
  .hero {
    border-radius: 24px 24px 80px 24px;
    padding: 24px 24px 24px 24px;
    box-shadow: var(--box-shadow-lg);
    background: var(--white);
  }
}
.hero .hero-img-wrapper {
  position: relative;
}
.hero .hero-img {
  flex: 1 1 350px;
  border-radius: 12px;
  box-shadow: var(--box-shadow-md);
  background: var(--primary-100);
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 320px;
  border-radius: 24px 0 24px 0;
}
.hero .hero-content {
  position: relative;
  flex: 2 1 400px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero .hero-desc {
  font-size: 1rem;
  color: var(--gray-700);
  margin: 0;
  line-height: 1.6;
}
.hero .hero-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero .hero-bottom {
    flex-direction: row;
    align-items: flex-end;
  }
  .hero .hero-bottom > div:first-child {
    flex: 1;
  }
}
.hero .hero-title {
  font-size: 2rem;
  margin: 0;
  line-height: 1.4;
}
@media (min-width: 900px) {
  .hero .hero-title {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    padding: 0 0 16px 0;
    line-height: 1.4;
    text-align: center;
  }
}
.hero .feature-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  position: absolute;
  bottom: 24px;
  left: 24px;
}
.hero .feature-badges .badge {
  display: inline-block;
  background: var(--brand-blue);
  color: var(--white);
  font-weight: 700;
  border-radius: 999px;
  padding: 6px 18px;
  border: 1px solid #fff;
  font-size: 1rem;
}
.hero .feature-badges .badge-red {
  background: var(--brand-red);
}
.hero .feature-badges .badge-blue {
  background: var(--brand-blue);
}
.hero .feature-badges h1.badge {
  margin: 0 !important;
  font-size: 1.2rem;
  background: #fff;
  color: var(--brand-blue);
  padding: 12px 24px;
}
.hero .cta-btn {
  text-decoration: none;
  background: #0090d0;
  color: var(--white);
  font-weight: 700;
  border: none;
  border-radius: 100px 0 100px 0;
  padding: 24px 48px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}
.hero .cta-btn:hover {
  background: #003083;
}

.features-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.features-section .feature-card {
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--box-shadow-md);
  flex: 1 1 300px;
  min-width: 260px;
  max-width: 340px;
  padding: 32px 24px;
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.features-section .feature-card h3 {
  color: var(--primary-700);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}
.features-section .feature-card p {
  color: var(--gray-600);
  font-size: 1rem;
  margin: 0;
}
.features-section .feature-card .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
}
.features-section .feature-card .feature-icon img {
  max-height: 120px;
}

.reservation-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 600;
  gap: 16px;
}
.reservation-bar .rez-btn {
  background: #0090d0;
  border: 2px solid #fff;
  color: var(--white);
  font-size: 1rem;
  padding: 12px 16px;
  border-radius: 8px;
  margin: 0;
  display: flex;
  gap: 12px;
  align-items: center;
}
.reservation-bar .rez-btn:hover {
  background: #003083;
}

/* SHIP CARDS FOOTER STYLES - SCREENSHOT DESIGN */
.ship-cards__footer {
  background: linear-gradient(90deg, #0090d0 0%, #0046a0 100%);
  border-radius: 20px;
  padding: 36px 36px;
  margin: 48px auto 0 auto;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Inter", sans-serif;
}

.ship-cards__footer-items {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1600px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.ship-cards__footer-item {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  min-width: 0;
  flex: 1 1 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  color: #fff;
}

.ship-cards__footer-ic {
  background: none;
  border-radius: 0;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.ship-cards__footer-ic img {
  width: 64px;
  height: 64px;
  filter: brightness(0) invert(1);
}

.ship-cards__footer-text {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-left: 12px;
}

.ship-cards__footer-text p:first-child {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.ship-cards__footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.ship-cards__footer-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 1rem;
  color: #fff;
  font-weight: 400;
}

.ship-cards__footer-list li:last-child {
  border-bottom: none;
}

.ship-cards__footer-list strong {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.ship-cards__footer-list strong, .ship-cards__footer-text p:first-child, .ship-cards__footer-list li strong {
  font-weight: 700;
}

.ship-cards__footer-list li strong {
  font-size: 1rem;
}

/* VIP Crown Icon (SVG) styling */
.ship-cards__footer-ic.vip {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ship-cards__footer-ic.vip svg {
  width: 56px;
  height: 56px;
  display: block;
}

.ship-cards__footer-ic.vip span {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-top: 8px;
  letter-spacing: 1px;
}

@media (max-width: 1200px) {
  .ship-cards__footer-items {
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }
  .ship-cards__footer-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
@media (max-width: 700px) {
  .ship-cards__footer {
    padding: 18px;
  }
  .ship-cards__footer-items {
    gap: 32px;
  }
  .ship-cards__footer-text p:first-child {
    font-size: 1rem;
  }
}
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 18px 8px;
  }
  .hero .hero-img {
    height: 220px;
  }
  .features-section {
    flex-direction: column;
    gap: 18px;
  }
  .reservation-bar {
    flex-direction: column;
    gap: 18px;
    padding: 18px 10px;
  }
}
/* CRUISE TOURS LIST STYLES */
.cruise-tours-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cruise-tour {
  text-decoration: none;
  display: flex;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(34, 164, 222, 0.08);
  overflow: hidden;
  align-items: stretch;
  gap: 0;
}

.cruise-tour-img {
  min-width: 320px;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
}

.cruise-tour-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px 0 0 12px;
  min-height: 180px;
  max-height: 360px;
}

.cruise-tour-content {
  flex: 1 1 0;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.cruise-tour-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cruise-tour-badge {
  display: inline-block;
  font-weight: 700;
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 2px;
  color: #000;
}

.cruise-tour-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-500);
  margin: 0;
  letter-spacing: 0.5px;
}

.cruise-tour-price-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 8px 0 0 0;
}

.cruise-tour-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
}

.cruise-tour-price .per-person {
  font-size: 1rem;
  font-weight: 400;
  color: #444;
}

.cruise-tour-btn {
  background: #fff;
  color: var(--primary-500);
  border: 2px solid var(--primary-500);
  border-radius: 8px;
  padding: 6px 18px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.cruise-tour-btn:hover {
  background: var(--primary-500);
  color: #fff;
}

.cruise-tour-route {
  background: var(--primary-500);
  color: #fff;
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 0.95rem;
  margin: 8px 0 0 0;
  display: inline-block;
}

.cruise-tour-dates {
  color: #222;
  font-size: 0.98rem;
  margin-top: 4px;
}
.cruise-tour-dates > strong {
  display: block;
}
.cruise-tour-dates > span {
  display: inline-block;
  margin-top: 4px;
  margin-right: 4px;
  background: var(--primary-100);
  color: var(--primary-500);
  padding: 4px 6px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.75rem;
}

@media (max-width: 900px) {
  .cruise-tour {
    flex-direction: column;
    align-items: stretch;
  }
  .cruise-tour-img img {
    border-radius: 12px 12px 0 0;
    min-height: 120px;
    max-height: 180px;
  }
  .cruise-tour-content {
    padding: 18px 12px;
  }
}/*# sourceMappingURL=style.css.map */