/* ===== Prague River Cruise — stylesheet ===== */

:root {
  --cream: #fbf3e7;
  --cream-alt: #f3e6d3;
  --brick: #c1694a;
  --brick-dark: #a24e36;
  --teal: #2f4f4a;
  --teal-dark: #223936;
  --gold: #d9a441;
  --text: #3a2e28;
  --text-light: #6b5a4e;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(58, 46, 40, 0.12);
  --container-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, .logo-title, .slogan {
  font-family: 'Playfair Display', serif;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { scroll-margin-top: 90px; }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--brick);
  color: var(--white);
}
.btn-primary:hover { background: var(--brick-dark); }

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--teal); }

.cta-band .btn-outline {
  border-color: var(--teal);
  color: var(--teal);
}
.cta-band .btn-outline:hover {
  background: var(--teal);
  color: var(--white);
}

.site-footer .btn-outline {
  border-color: var(--gold);
  color: var(--gold);
}
.site-footer .btn-outline:hover {
  background: var(--gold);
  color: var(--teal-dark);
}

/* ===== Header / nav ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  box-shadow: 0 2px 12px rgba(58, 46, 40, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark { width: 40px; height: 40px; flex-shrink: 0; }

.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-title { font-weight: 700; font-size: 1.15rem; color: var(--teal); }
.logo-tagline { font-size: 0.65rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--brick); }

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--brick); }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid var(--cream-alt);
}
.lang-switch a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  padding: 4px 6px;
  border-radius: 6px;
}
.lang-switch a:hover { color: var(--brick); }
.lang-switch a.active { color: var(--white); background: var(--teal); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--teal);
  border-radius: 3px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Hero ===== */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34, 57, 54, 0.55) 0%, rgba(34, 57, 54, 0.78) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 12px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin: 0 0 6px;
}

.slogan {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gold);
  margin: 0 0 20px;
}

.intro {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 32px;
  max-width: 620px;
}

/* ===== Highlights ===== */

.highlights, .history, .faq, .reviews, .more-activities { padding: 80px 0; }
.history, .reviews { background: var(--cream-alt); }
.history .section-desc { margin-bottom: 0; }

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--teal);
  margin: 0 0 16px;
  text-align: center;
}

.section-desc {
  max-width: 620px;
  margin: 0 auto 48px;
  text-align: center;
  color: var(--text-light);
}

.highlights h2 { margin-bottom: 48px; }

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 26px;
  text-align: center;
  box-shadow: var(--shadow);
}

.card-icon { font-size: 2.2rem; display: block; margin-bottom: 14px; }

.card h3 { margin: 0 0 10px; color: var(--teal); font-size: 1.15rem; }
.card p { margin: 0; color: var(--text-light); }

/* ===== Tours ===== */

.tour-block {
  padding: 80px 0;
  background: var(--teal);
  color: var(--white);
}
.tour-block.alt { background: var(--brick); }

.tour-split {
  display: flex;
  align-items: center;
  gap: 56px;
}
.tour-split.reverse { flex-direction: row-reverse; }

.tour-media { flex: 1 1 45%; }
.tour-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tour-content { flex: 1 1 55%; text-align: left; }

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.tour-badge { background: rgba(255, 255, 255, 0.18); color: var(--gold); }
.activity-badge { background: var(--teal); color: var(--white); }

.tour-block h2 { color: var(--white); margin-bottom: 8px; text-align: left; }
.tour-block p { margin: 0 0 32px; font-size: 1.05rem; color: rgba(255, 255, 255, 0.92); }

.tour-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 18px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gold);
}
.tour-rating .stars { letter-spacing: 1px; }
.tour-rating .count { color: rgba(255, 255, 255, 0.75); font-weight: 500; }

.tour-block .btn-primary { background: var(--gold); color: var(--teal-dark); }
.tour-block .btn-primary:hover { background: var(--white); }
.tour-block.alt .btn-primary { background: var(--teal); color: var(--white); }
.tour-block.alt .btn-primary:hover { background: var(--teal-dark); }

/* ===== More activities (secondary experiences) ===== */

.more-activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.activity-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.activity-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.activity-card-body { padding: 24px; }
.activity-card-body h3 { margin: 0 0 10px; color: var(--teal); font-size: 1.1rem; }
.activity-card-body p { margin: 0 0 16px; color: var(--text-light); font-size: 0.95rem; }

.activity-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brick);
}
.activity-rating .count { color: var(--text-light); font-weight: 500; }
.activity-rating.new { color: var(--teal); text-transform: uppercase; letter-spacing: 0.5px; font-size: 0.78rem; }

/* ===== FAQ ===== */

.accordion {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.accordion-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--teal);
  text-align: left;
  cursor: pointer;
}

.accordion-trigger .icon {
  flex-shrink: 0;
  font-size: 1.3rem;
  color: var(--brick);
  transition: transform 0.25s ease;
}

.accordion-trigger[aria-expanded="true"] .icon { transform: rotate(45deg); }

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-panel p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--text-light);
}

.accordion-panel a { color: var(--brick); font-weight: 600; text-decoration: underline; }

/* ===== CTA band ===== */

.cta-band {
  padding: 64px 0;
  background: var(--gold);
  text-align: center;
}
.cta-band h2 { color: var(--teal-dark); margin-bottom: 28px; }
.cta-inner .cta-buttons { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ===== Reviews ===== */

.reviews h2 { margin-bottom: 16px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  text-align: left;
}

.review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-name { margin: 0 0 6px; font-weight: 600; color: var(--teal); }
.review-text { margin: 0; color: var(--text-light); font-size: 0.95rem; }

/* ===== Other destinations ===== */

.other-destinations {
  padding: 64px 0;
  background: var(--teal-dark);
}

.other-destinations h2 { color: var(--cream); margin-bottom: 8px; }
.other-destinations .section-desc { color: rgba(251, 243, 231, 0.65); margin-bottom: 40px; }

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

.destination-card {
  background: rgba(251, 243, 231, 0.06);
  border: 1px solid rgba(251, 243, 231, 0.15);
  border-radius: var(--radius);
  padding: 28px;
  text-align: left;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.destination-card:hover { background: rgba(251, 243, 231, 0.1); border-color: rgba(251, 243, 231, 0.3); }

.destination-card h3 { margin: 0 0 8px; color: var(--gold); font-size: 1.05rem; font-family: 'Playfair Display', serif; }
.destination-card p { margin: 0 0 14px; color: rgba(251, 243, 231, 0.75); font-size: 0.9rem; }
.destination-card .destination-link { color: var(--cream); font-weight: 600; font-size: 0.88rem; text-decoration: underline; }

@media (max-width: 600px) {
  .destinations-grid { grid-template-columns: 1fr; }
}

/* ===== Footer ===== */

.site-footer {
  background: var(--teal-dark);
  color: var(--cream);
  padding: 64px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-brand .logo-mark { width: 44px; height: 44px; margin-bottom: 10px; }
.footer-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin: 0 0 4px; }
.footer-tagline { font-size: 0.85rem; color: rgba(251, 243, 231, 0.7); margin: 0; }

.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: rgba(251, 243, 231, 0.85); font-size: 0.95rem; }
.footer-nav a:hover { color: var(--gold); }

.footer-contact { font-style: normal; display: flex; flex-direction: column; gap: 8px; font-size: 0.95rem; }
.footer-contact a { color: var(--gold); }

.footer-cta {
  grid-column: 1 / -1;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 36px 0 16px;
  border-top: 1px solid rgba(251, 243, 231, 0.15);
  margin-top: 20px;
}

.copyright {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(251, 243, 231, 0.55);
  margin: 0;
}

/* ===== Mobile ===== */

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 99;
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 40px 0;
  }
  .main-nav li { width: 100%; text-align: center; }
  .main-nav a {
    display: block;
    padding: 18px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--cream-alt);
  }
  .lang-switch {
    margin: 10px 0 0;
    padding: 20px 0 0;
    border-left: none;
    border-top: 1px solid var(--cream-alt);
    justify-content: center;
    width: 100%;
  }
  .hamburger { display: flex; }

  .cards-3, .reviews-grid, .more-activities-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-nav, .footer-contact { align-items: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }

  /* Center all text content on mobile */
  .hero-content { text-align: center; margin: 0 auto; }
  .intro { margin-left: auto; margin-right: auto; }
  .card, .review-card { text-align: center; }
  .review-card { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 320px; text-align: center; }
  .cta-buttons, .footer-cta { flex-direction: column; align-items: center; }

  .tour-split, .tour-split.reverse { flex-direction: column; gap: 32px; }
  .tour-content { text-align: center; }
  .tour-block h2 { text-align: center; }
  .tour-media img { height: 220px; }
}

@media (max-width: 600px) {
  .hero { min-height: 100vh; }
  .highlights, .tour-block, .history, .faq, .reviews, .cta-band, .more-activities { padding: 56px 0; }
}
