:root {
  --bg: #fffaf5;
  --card: #ffffff;
  --muted: #f4ede6;
  --accent: #f9a826;
  --accent-strong: #ef6c00;
  --text: #2f1f1a;
  --subtle: #6a4b3a;
  --shadow: 0 20px 60px rgba(47, 31, 26, 0.12);
  --radius: 18px;
  --font-display: "Baloo 2", "Fredoka", system-ui, -apple-system, sans-serif;
  --font-body: "Fredoka", "Baloo 2", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

img {
  max-width: 100%;
  height: auto;
}

.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(249, 168, 38, 0.28), rgba(239, 108, 0, 0.3)),
    url("./cppmap.png") center/cover no-repeat;
  color: #1c120e;
  padding: 28px clamp(16px, 4vw, 48px) 88px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 250, 245, 0.2) 0%, rgba(255, 250, 245, 0.8) 75%);
  pointer-events: none;
}

.page-hero {
  position: relative;
  background: linear-gradient(135deg, rgba(249, 168, 38, 0.18), rgba(239, 108, 0, 0.2));
  color: #2f1f1a;
  padding: 48px clamp(16px, 4vw, 48px);
  overflow: hidden;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 46px);
  margin: 6px 0 12px;
}

.breadcrumbs {
  display: inline-flex;
  gap: 6px;
  font-size: 14px;
  color: #5b3e30;
}

.top-nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff3e0;
  font-size: 24px;
  box-shadow: var(--shadow);
}

.brand-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
}

.brand-sub {
  font-size: 12px;
  color: #54382c;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.76);
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.nav-links a:hover {
  background: rgba(249, 168, 38, 0.16);
}

.nav-links .pill {
  background: var(--accent);
  color: #24140f;
  box-shadow: 0 10px 30px rgba(239, 108, 0, 0.35);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
  margin-top: 64px;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  margin: 12px 0 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
  color: #6f4d3b;
  margin: 0;
}

.lede {
  font-size: 17px;
  color: #513529;
  margin: 0 0 16px;
}

.lede.narrow {
  max-width: 760px;
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 12px 0 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #1f130e;
  box-shadow: 0 12px 30px rgba(239, 108, 0, 0.4);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.85);
  color: #2f1f1a;
  border: 2px solid rgba(239, 108, 0, 0.25);
}

.btn.block {
  width: 100%;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(47, 31, 26, 0.18);
}

.badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.badge {
  background: rgba(255, 255, 255, 0.8);
  padding: 8px 12px;
  border-radius: 12px;
  font-weight: 700;
  color: #3f291e;
  box-shadow: var(--shadow);
}

.badge.soft {
  background: rgba(249, 168, 38, 0.18);
}

.hero-card {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mascot-bubble {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--accent);
  color: #2f1f1a;
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(239, 108, 0, 0.35);
}

.mascot-circle {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  background: url("./cppmap.png") center/cover no-repeat, #fde9c9;
  border: 2px solid rgba(239, 108, 0, 0.3);
  margin-bottom: 14px;
}

.card-copy {
  margin: 0 0 12px;
  color: #4d3328;
}

.card-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.fact-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
}

.fact-label {
  font-size: 12px;
  color: #6a4b3a;
}

.section {
  padding: 80px clamp(16px, 4vw, 48px);
}

.section.muted {
  background: var(--muted);
}

.section.highlight {
  background: linear-gradient(135deg, rgba(249, 168, 38, 0.25), rgba(239, 108, 0, 0.18));
}

.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  margin: 8px 0 12px;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.pill-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(239, 108, 0, 0.12);
}

.pill-card h3 {
  margin: 0 0 6px;
}

.attraction-group {
  margin-bottom: 28px;
}

.attraction-group h3 {
  font-size: 22px;
  margin: 0 0 12px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.attraction-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid rgba(239, 108, 0, 0.12);
  box-shadow: 0 12px 30px rgba(47, 31, 26, 0.1);
  transition: transform 0.12s ease;
  display: flex;
  flex-direction: column;
}

.attraction-card:hover {
  transform: translateY(-2px);
}

.attraction-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

.attraction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.attraction-card:hover .attraction-image img {
  transform: scale(1.05);
}

.product-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid rgba(239, 108, 0, 0.14);
  box-shadow: 0 12px 30px rgba(47, 31, 26, 0.1);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price-tag {
  font-weight: 700;
  color: var(--accent-strong);
}

.option-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  color: #5d3f32;
}

.pill-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(249, 168, 38, 0.16);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(239, 108, 0, 0.26);
  font-weight: 700;
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.ticket-list {
  padding-left: 18px;
  color: #412b21;
}

.ticket-list li {
  margin-bottom: 8px;
}

.ticket-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(239, 108, 0, 0.14);
  position: relative;
}

.ticket-card .tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #2f1f1a;
  color: #fff8ec;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticket-card h3 {
  margin: 0 0 6px;
}

.price {
  font-size: 34px;
  margin: 0 0 4px;
  font-family: var(--font-display);
}

.price span {
  font-size: 14px;
  color: #6a4b3a;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.checklist li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent-strong);
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.contact-form,
.contact-cta {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(239, 108, 0, 0.12);
}

.contact-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  color: #3d291f;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(47, 31, 26, 0.15);
  background: #fffdf9;
  font-family: var(--font-body);
  font-size: 15px;
}

.contact-form textarea {
  resize: vertical;
}

.fine-print {
  font-size: 12px;
  color: #6a4b3a;
}

.mini-map {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  background: url("./cppmap.png") center/cover no-repeat, #fde9c9;
  border: 2px solid rgba(239, 108, 0, 0.3);
  margin-bottom: 12px;
}

.callout {
  background: rgba(249, 168, 38, 0.18);
  border-radius: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(239, 108, 0, 0.3);
  margin-top: 10px;
}

.footer {
  background: #2f1f1a;
  color: #fff8ec;
  padding: 28px clamp(16px, 4vw, 48px);
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #ffe6c9;
}

.fake-social {
  display: flex;
  gap: 8px;
}

.form-status,
.status-message {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  color: #2f1f1a;
  background: rgba(249, 168, 38, 0.15);
  border: 2px solid rgba(249, 168, 38, 0.3);
  display: block;
}

.form-status.error,
.status-message.error {
  color: #b71c1c;
  background: rgba(183, 28, 28, 0.15);
  border-color: rgba(183, 28, 28, 0.4);
}

.form-status.success,
.status-message.success {
  color: #1b5e20;
  background: rgba(27, 94, 32, 0.15);
  border-color: rgba(27, 94, 32, 0.4);
  font-size: 16px;
}

/* CPP-TV Video Player Styles */
.tv-container {
  max-width: 1200px;
  margin: 0 auto;
}

.tv-screen {
  margin-bottom: 36px;
}

.tv-frame {
  position: relative;
  background: #1a1a1a;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 0 40px rgba(0, 0, 0, 0.3);
  border: 8px solid #2a2a2a;
}

.main-video {
  width: 100%;
  border-radius: 12px;
  background: #000;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.tv-overlay {
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 1;
}

.tv-label {
  background: var(--accent);
  color: #1f130e;
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(239, 108, 0, 0.5);
}

.tv-status {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.video-thumbnail {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(239, 108, 0, 0.12);
  box-shadow: 0 12px 30px rgba(47, 31, 26, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.video-thumbnail:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(47, 31, 26, 0.15);
  border-color: rgba(239, 108, 0, 0.3);
}

.video-thumbnail.active {
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(239, 108, 0, 0.3);
}

.thumbnail-preview {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.thumbnail-preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.video-thumbnail:hover .thumbnail-preview video {
  opacity: 1;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(249, 168, 38, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #1f130e;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, background 0.2s ease;
  pointer-events: none;
}

.video-thumbnail:hover .play-overlay {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--accent);
}

.thumbnail-info {
  padding: 16px;
}

.thumbnail-info h4 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text);
}

.thumbnail-info p {
  margin: 0;
  font-size: 14px;
  color: var(--subtle);
  line-height: 1.5;
}

@media (max-width: 720px) {
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .tv-frame {
    padding: 12px;
    border-width: 4px;
  }

  .tv-overlay {
    top: 16px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

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

