/* ===========================
   Marionette & Co — style.css
   =========================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #8B1A1A;
  --dark: #1a0a2e;
  --gold: #F0A500;
  --text: #1a1a1a;
  --text-secondary: #555;
  --text-hint: #888;
  --bg: #f5f4f1;
  --surface: #ffffff;
  --border: rgba(0,0,0,0.1);
  --border-strong: rgba(0,0,0,0.18);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 15px;
  line-height: 1.6;
}

/* ---- TOP BAR ---- */
.topbar {
  background: var(--dark);
  color: #C9A0FF;
  padding: 9px 24px;
  display: flex;
  justify-content: end;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 6px;
}

.topbar i { 
    font-size: 13px; 
    vertical-align: -1px; 
    margin-right: 3px; 
}

.topbar p,
.topbar a {
  color: #FFD700;
  margin-left: 16px;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
}

.topbar a:hover { text-decoration: underline; }

/* ---- NAVBAR ---- */
.navbar {
  background: var(--surface);
  border-bottom: 0.5px solid var(--border);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-brand {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.3px;
}

.nav-links { display: flex; gap: 2px; }

.nav-link {
  padding: 7px 14px;
  font-size: 14px;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  background: transparent;
  transition: background 0.15s, color 0.15s;
  font-family: inherit;
  text-decoration: none;
}

.nav-link:hover { background: var(--bg); color: var(--text); }
.nav-link.active { background: var(--bg); color: var(--text); font-weight: 500; }

/* ---- HERO ---- */
.hero {
  background: var(--dark);
  color: #fff;
  padding: 64px 24px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-curtain-l,
.hero-curtain-r {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 88px;
  background: #7A1515;
}

.hero-curtain-l { left: 0; border-radius: 0 0 80% 0; }
.hero-curtain-r { right: 0; border-radius: 0 0 0 80%; }

.hero-inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }

.hero-tag {
  display: inline-block;
  background: rgba(255,215,0,0.12);
  border: 1px solid rgba(255,215,0,0.35);
  color: #FFD700;
  font-size: 12px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.hero h1 em {
  color: #FFD700;
  font-style: normal;
}

.hero > .hero-inner > p {
  font-size: 16px;
  color: #C9A0FF;
  margin-bottom: 30px;
  line-height: 1.65;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.15s;
  font-family: inherit;
}

.btn-primary:hover { opacity: 0.85; }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s;
  font-family: inherit;
}

.btn-outline:hover { background: rgba(255,255,255,0.08); }

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--surface);
  border-bottom: 0.5px solid var(--border);
  display: flex;
  justify-content: center;
}

.stat-item {
  padding: 22px 80px;
  text-align: center;
  border-right: 0.5px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-size: 26px;
  font-weight: 600;
  color: var(--dark);
  display: block;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-hint);
  margin-top: 3px;
  display: block;
}

/* ---- SECTIONS ---- */
.section,
.video,
.gallery {
  padding: 52px 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.video video {
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  margin-bottom: 20px;
}

.sec-label {
  font-size: 11px;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.sec-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
  letter-spacing: -0.3px;
}

.sec-sub {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.65;
}

.section-divider {
  height: 1px;
  background: var(--border);
}

/* ---- SHOW CARDS ---- */
.shows-grid { display: flex; flex-direction: column; gap: 16px; }

.show-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 120px 1fr;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.show-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.show-poster {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 12px;
  text-align: center;
  gap: 10px;
}

.show-poster-icon { font-size: 40px; line-height: 1; }

.show-poster-age {
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.show-body { padding: 18px 22px; }

.show-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.show-title-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}

.show-badge {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.badge-new { background: #EAF3DE; color: #3B6D11; }
.badge-popular { background: #FAEEDA; color: #854F0B; }
.badge-seasonal { background: #EEEDFE; color: #3C3489; }

.show-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 12px;
}

.show-meta {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--text-hint);
  flex-wrap: wrap;
}

.show-meta span { display: flex; align-items: center; gap: 5px; }
.show-meta i { font-size: 14px; }

.show-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 0.5px solid var(--border);
}

.show-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.show-price span {
  font-size: 12px;
  color: var(--text-hint);
  font-weight: 400;
}

.btn-book {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.15s;
  font-family: inherit;
}

.list {
  columns: 300px;
  margin: 0 auto;
  text-align: center;
}

.list img {
  width: 300px;
  border-radius: 5px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform .3s ease;
  margin-top: 10px;
  margin-bottom: 10px;
}

.list img:hover {
  transform: scale(1.02);
}

.btn-book:hover { opacity: 0.85; }

/* ---- PILLARS ---- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.pillar-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
}

.pillar-card > i {
  font-size: 22px;
  color: var(--red);
  display: block;
  margin-bottom: 12px;
}

.pillar-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.pillar-card > p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ---- TALES ---- */
.tales-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.container {
  height: 300px;
  width: 250px;
  position: relative;
  cursor: pointer;
  perspective: 1000px;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.inner {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: border-color 0.15s, box-shadow 0.15s;
  transition: .5s;
  height: 100%;
  width: 100%;
  backface-visibility: hidden;
  transform-style: preserve-3d;
    user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.inner:hover {
  border-color: var(--border-strong);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.front,
.back {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--surface);
  top: 0;
  left: 0;
  display: block;
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  font-family: sans-serif;
    user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.back {
  transform: rotateY(180deg);
  backface-visibility: hidden;
}

.rotated {
  transform: rotateY(180deg);
}

.tale-icon {
  font-size: 38px;
  display: block;
  user-select: none;
  height: 25%;
}

.tale-name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
  height: 15%;
}

.tale-origin {
  font-size: 11px;
  color: var(--text-hint);
  line-height: 1.4;
  height: 8%;
}

.tale-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1px;
  margin-top: 40%;
  bottom: 10px;
  vertical-align: bottom;
}

/* ---- VISIT ---- */
.visit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.visit-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.visit-icon {
  font-size: 22px;
  color: var(--red);
  display: block;
  margin-bottom: 10px;
}

.visit-label {
  font-size: 11px;
  color: var(--text-hint);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 6px;
}

.visit-value {
  font-size: 13px;
  color: var(--text);
  line-height: 1.7;
}

/* ---- PRICING ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}

.price-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
}

.price-card.featured { border: 2px solid #185FA5; }

.price-badge {
  font-size: 11px;
  background: #E6F1FB;
  color: #185FA5;
  padding: 3px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 600;
}

.price-type {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}

.price-amount {
  font-size: 32px;
  font-weight: 700;
  margin: 10px 0 6px;
  color: var(--dark);
  letter-spacing: -1px;
}

.price-desc {
  font-size: 13px;
  color: var(--text-hint);
  margin-bottom: 16px;
  line-height: 1.5;
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 20px;
}

.price-features li {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-features i {
  font-size: 15px;
  color: #3B6D11;
}

.btn-price {
  width: 100%;
  padding: 11px;
  border-radius: var(--radius-md);
  font-size: 14px;
  cursor: pointer;
  border: 0.5px solid var(--border-strong);
  background: transparent;
  color: var(--text);
  transition: background 0.15s;
  font-family: inherit;
  font-weight: 500;
}

.btn-price:hover { background: var(--bg); }

.btn-price.primary {
  background: var(--red);
  color: #fff;
  border: none;
}

.btn-price.primary:hover { opacity: 0.87; background: var(--red); }

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-top: 0.5px solid var(--border);
}

.faq-item:last-child { border-bottom: 0.5px solid var(--border); }

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 16px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: inherit;
}

.faq-q i {
  font-size: 18px;
  color: var(--text-hint);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-q.open i { transform: rotate(180deg); }

.faq-a {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-bottom: 16px;
  display: none;
}

.faq-a.open { display: block; }

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}

.contact-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
}

.contact-label {
  font-size: 11px;
  color: var(--text-hint);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-val {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.contact-val a {
  color: #185FA5;
  text-decoration: none;
}

.contact-val a:hover { text-decoration: underline; }

/* ---- REVIEWS ---- */
.rating-overview {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  margin-bottom: 32px;
  align-items: center;
}

.big-rating {
  text-align: center;
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  border: 0.5px solid var(--border);
}

.big-num {
  font-size: 52px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -2px;
}

.big-stars {
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 2px;
  margin: 8px 0;
}

.big-count {
  font-size: 13px;
  color: var(--text-hint);
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
}

.rating-label {
  font-size: 13px;
  color: var(--text-secondary);
  width: 40px;
  text-align: right;
  flex-shrink: 0;
}

.rating-bar-bg {
  flex: 1;
  height: 8px;
  background: #e5e5e5;
  border-radius: 4px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 4px;
}

.rating-pct {
  font-size: 12px;
  color: var(--text-hint);
  width: 36px;
  flex-shrink: 0;
}

.reviews-grid { display: flex; flex-direction: column; gap: 14px; }

.review-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #2D0A5A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: #DDA0FF;
  flex-shrink: 0;
}

.reviewer-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.reviewer-date {
  font-size: 12px;
  color: var(--text-hint);
}

.review-stars {
  color: var(--gold);
  font-size: 13px;
  margin-left: auto;
  letter-spacing: 1px;
}

.review-show {
  font-size: 12px;
  color: var(--text-hint);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.review-show i { font-size: 14px; }

.review-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--dark);
  color: #C9A0FF;
  padding: 48px 24px 28px;
}

.footer-inner { max-width: 900px; margin: 0 auto; }

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-brand {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.65;
  color: #C9A0FF;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: #C9A0FF;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.15s;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 0.5px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(201,160,255,0.6);
  flex-wrap: wrap;
  gap: 8px;
}

/* ---- RESPONSIVE ---- */

@media screen and (max-width: 994px) {
  .gallery {
    width: 630px;
    padding-left: 0px;
  }
  .list {
    width: 630px;
  }
}



@media screen and (max-width: 768px) {
  .topbar { flex-direction: column; gap: 4px; text-align: center; }
  .navbar { flex-direction: column; height: auto; padding: 0px; gap: 8px; }
  .nav-links { flex-wrap: wrap; justify-content: center; }
  .nav-link {padding-top: 0;}
  .hero h1 { font-size: 28px; }
  .stats-bar { flex-direction: column; }
  .stat-item:nth-child(2) { border-right: none; }
  .show-card { grid-template-columns: 90px 1fr; }
  .show-poster-icon { font-size: 30px; }
  .gallery {width: 300px;}
  .list {width: 300px;}
  .rating-overview { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .video {padding: 0;}
  .video video{border-radius: 0;}
}
