/* Cruise Vacation — US landing page */

:root {
  --color-ocean: #0a3d6b;
  --color-ocean-deep: #062847;
  --color-sky: #1a7fc4;
  --color-cyan: #00c2e0;
  --color-pink: #e91e8c;
  --color-pink-light: #ff4da6;
  --color-gold: #f5c842;
  --color-white: #ffffff;
  --color-cream: #f8fafc;
  --color-text: #1e293b;
  --color-text-muted: #64748b;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(10, 61, 107, 0.12);
  --shadow-lg: 0 12px 48px rgba(10, 61, 107, 0.2);
  --transition: 0.2s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-cream);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(6, 40, 71, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.15rem;
}

.logo__icon {
  font-size: 1.35rem;
}

.logo__accent {
  color: var(--color-cyan);
}

.nav {
  display: none;
  gap: 1.75rem;
}

.nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav a:hover {
  color: var(--color-cyan);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  border-radius: 1px;
  transition: var(--transition);
}

.header__cta {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-pink) 100%);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(233, 30, 140, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 8px 28px rgba(233, 30, 140, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
}

.btn--small {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn--full {
  width: 100%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Hero */
.hero {
  padding-top: 4rem;
  background: var(--color-ocean-deep);
}

.hero__image-wrap {
  width: 100%;
  line-height: 0;
  background: var(--color-ocean-deep);
}

.hero__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center top;
}

.hero__bar {
  padding: 1.75rem 1.25rem 2.5rem;
  max-width: 720px;
}

.hero__badge {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.hero__stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.hero__stats strong {
  display: block;
  color: var(--color-cyan);
  font-size: 1.35rem;
  font-weight: 700;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section__header {
  margin-bottom: 2.5rem;
  max-width: 560px;
}

.section__header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 600px;
}

.section__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-sky);
  margin-bottom: 0.5rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  color: var(--color-ocean-deep);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.section__desc {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

/* Cards */
.destinations {
  background: var(--color-white);
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.card {
  padding: 1.75rem;
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(10, 61, 107, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.card h3 {
  font-size: 1.2rem;
  color: var(--color-ocean-deep);
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.card__price {
  font-weight: 700;
  color: var(--color-pink);
  font-size: 0.95rem;
}

/* Why us */
.why {
  background: linear-gradient(180deg, var(--color-cream) 0%, #e8f4fc 100%);
}

.why__grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.features li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.features__icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-cyan), var(--color-sky));
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
}

.features strong {
  display: block;
  color: var(--color-ocean-deep);
  margin-bottom: 0.2rem;
}

.features p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.why__highlight blockquote {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--color-pink);
}

.why__highlight p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-ocean-deep);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.why__highlight cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.stars {
  color: var(--color-gold);
  font-size: 1rem;
  margin-top: 0.5rem;
  letter-spacing: 2px;
}

/* Deals */
.deals__banner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem 2rem;
  background: linear-gradient(135deg, var(--color-ocean) 0%, var(--color-ocean-deep) 100%);
  border-radius: var(--radius-lg);
  color: var(--color-white);
}

.deals__banner h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.deals__banner p {
  opacity: 0.9;
  font-size: 0.95rem;
}

/* FAQ */
.faq__list {
  max-width: 720px;
  margin: 0 auto;
}

.faq__item {
  padding: 1.25rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.faq__item dt {
  font-weight: 600;
  color: var(--color-ocean-deep);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.faq__item dd {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Footer */
.footer {
  background: var(--color-ocean-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 2.5rem 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.footer__brand .logo__text {
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: 700;
}

.footer__brand p {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.footer__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer__nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__nav a,
.footer__contact-list a {
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__nav a:hover,
.footer__contact-list a:hover {
  color: var(--color-cyan);
}

.footer__contact {
  text-align: center;
}

.footer__contact-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.footer__contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer__contact-list address {
  font-style: normal;
}

.footer__copy {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Legal pages */
.legal-main {
  padding-top: 6rem;
  padding-bottom: 3rem;
}

.legal-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 61, 107, 0.08);
  padding: 2rem;
}

.legal-card h1 {
  font-family: var(--font-display);
  color: var(--color-ocean-deep);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.legal-card .effective-date {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.legal-card h2 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-ocean-deep);
  font-size: 1.2rem;
}

.legal-card p,
.legal-card li {
  color: var(--color-text);
}

.legal-card ul {
  margin: 0.5rem 0 0.75rem 1.25rem;
}

.legal-card .legal-highlight {
  background: #e8f4fc;
  border-left: 4px solid var(--color-sky);
  border-radius: 10px;
  padding: 1rem;
  margin: 1rem 0;
}

/* Mobile nav open */
body.nav-open {
  overflow: hidden;
}

body.nav-open .nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 4rem;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-ocean-deep);
  padding: 2rem;
  gap: 1.5rem;
  z-index: 99;
}

body.nav-open .nav a {
  font-size: 1.15rem;
}

body.nav-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive */
@media (min-width: 640px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .deals__banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 3rem;
  }
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }

  .header__cta {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .why__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
  }

  .footer__meta {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
  }

  .footer__nav {
    justify-content: flex-start;
  }

  .footer__contact {
    text-align: left;
  }

  .footer__copy {
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
  }
}

@media (min-width: 1024px) {
  .cards {
    grid-template-columns: repeat(4, 1fr);
  }
}
