/* ============================================================
   zamekversailles.cz — style.css?v=1
   Fonts: Playfair Display + Source Sans 3
   Palette: burgundy #6B2740 / antique gold #B8935A / cream #FAF6EE
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;600;700&display=swap');

:root {
  --burgundy:    #6B2740;
  --burgundy-dk: #451626;
  --burgundy-lt: #8C3654;
  --gold:        #B8935A;
  --gold-lt:     #D2B378;
  --cream:       #FAF6EE;
  --cream-2:     #F1E7D6;
  --sand:        #DCCFB8;
  --ink:         #201212;
  --ink-2:       #40302A;
  --white:       #FFFFFF;
  --shadow:      rgba(107,39,64,.14);
  --radius:      5px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem; line-height: 1.85;
  color: var(--ink); background: var(--cream);
}
a { color: var(--burgundy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--burgundy-lt); text-decoration: underline; }

/* ── HEADER ── */
.site-header {
  background: var(--burgundy);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 14px rgba(0,0,0,.32);
}
.header-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center;
  justify-content: space-between; height: 64px;
}
.header-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--cream); letter-spacing: .02em;
  text-decoration: none; line-height: 1;
}
.header-logo .logo-accent { color: var(--gold-lt); }
.header-logo:hover { text-decoration: none; color: var(--cream); }

.site-nav { display: flex; align-items: center; gap: 1.6rem; }
.site-nav a {
  font-size: .79rem; font-weight: 600;
  color: rgba(255,255,255,.72);
  letter-spacing: .04em; text-decoration: none; transition: color .2s;
}
.site-nav a:hover { color: var(--gold-lt); text-decoration: none; }
.site-nav .btn-nav-ticket {
  background: var(--gold) !important; color: var(--burgundy-dk) !important;
  padding: .4rem 1.1rem !important; border-radius: var(--radius) !important;
  font-weight: 700 !important; font-size: .76rem !important;
  letter-spacing: .05em !important; transition: background .2s !important;
  text-decoration: none !important;
}
.site-nav .btn-nav-ticket:hover { background: var(--gold-lt) !important; text-decoration: none !important; }
.menu-toggle {
  display: none; background: none; border: none;
  cursor: pointer; flex-direction: column; gap: 5px; padding: 5px;
}
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--cream); border-radius: 2px; }

/* ── HOME HERO ── */
.hero-home {
  position: relative; width: 100%;
  height: 72vh; min-height: 430px;
  overflow: hidden; display: flex; align-items: flex-end;
}
.hero-home img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(69,22,38,.92) 0%, rgba(69,22,38,.22) 55%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1120px;
  margin: 0 auto; padding: 0 1.5rem 3.2rem;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 5vw, 3.6rem);
  font-weight: 700; color: var(--white);
  line-height: 1.15; margin-bottom: .5rem;
  text-shadow: 0 2px 18px rgba(0,0,0,.55);
}
.hero-subtitle {
  font-size: .98rem; font-weight: 300;
  color: rgba(255,255,255,.85); max-width: 560px;
  margin-bottom: 1.8rem;
}

/* ── INNER-PAGE HERO ── */
.hero-inner {
  position: relative; width: 100%;
  height: 52vh; min-height: 360px;
  overflow: hidden; display: flex; align-items: flex-end;
}
.hero-inner img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
}
.hero-inner .hero-veil {
  background: linear-gradient(to top,
    rgba(69,22,38,.92) 0%, rgba(69,22,38,.25) 55%, rgba(69,22,38,.05) 100%);
}
.hero-inner .page-box { position: relative; z-index: 2; padding-bottom: 2.8rem; }
.hero-inner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--white); margin-bottom: .7rem; font-weight: 700;
}
.hero-inner p { color: rgba(255,255,255,.85); }
.hero-inner .btn-gold { margin-top: 1.2rem; }
.hero-inner .breadcrumb { color: rgba(255,255,255,.72); }
.hero-inner .breadcrumb a { color: var(--gold-lt); }
.hero-inner .breadcrumb a:hover { color: var(--white); text-decoration: none; }
.hero-inner .breadcrumb .sep { color: rgba(255,255,255,.45); }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-block;
  background: var(--gold); color: var(--burgundy-dk) !important;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700; font-size: .87rem; letter-spacing: .07em;
  padding: .9rem 2.2rem; border-radius: var(--radius);
  transition: background .2s, transform .15s;
  text-decoration: none !important; cursor: pointer;
}
.btn-gold:hover {
  background: var(--gold-lt); transform: translateY(-1px);
  color: var(--burgundy-dk) !important; text-decoration: none !important;
}
.btn-outline {
  display: inline-block;
  background: transparent; border: 2px solid var(--gold);
  color: var(--gold) !important;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700; font-size: .87rem; letter-spacing: .07em;
  padding: .85rem 2rem; border-radius: var(--radius);
  transition: background .2s, color .2s, transform .15s;
  text-decoration: none !important; cursor: pointer;
}
.btn-outline:hover {
  background: var(--gold); color: var(--burgundy-dk) !important;
  transform: translateY(-1px); text-decoration: none !important;
}

/* ── LAYOUT ── */
.page-box { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }

/* ── CONTENT BLOCKS ── */
.content-block { padding: 3rem 0; border-bottom: 1px solid var(--sand); }
.content-block:last-child { border-bottom: none; }
.content-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  font-weight: 700; color: var(--burgundy);
  margin-bottom: 1.2rem; padding-bottom: .5rem;
  border-bottom: 2px solid var(--gold); display: inline-block;
}
.content-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; color: var(--gold-lt);
  margin: 1.4rem 0 .7rem;
}
.content-block p { margin-bottom: 1rem; color: var(--ink-2); }
.content-block p:last-child { margin-bottom: 0; }
.content-block strong { color: var(--ink); font-weight: 700; }

.content-photo {
  width: 100%; height: 270px;
  object-fit: cover; border-radius: var(--radius);
  margin: 1.4rem 0; box-shadow: 0 4px 18px var(--shadow); display: block;
}
.widget-zone { margin: 1.6rem 0; }

/* ── LISTS ── */
.bullet-list { list-style: none; margin: 1rem 0 1.2rem; padding: 0; }
.bullet-list li { padding: .35rem 0 .35rem 1.8rem; position: relative; color: var(--ink-2); }
.bullet-list li::before {
  content: '▶'; position: absolute; left: 0;
  color: var(--gold); font-size: .72rem; line-height: 2;
}

.number-list { list-style: none; counter-reset: nl; margin: 1rem 0 1.2rem; padding: 0; }
.number-list li { counter-increment: nl; padding: .45rem 0 .45rem 2.6rem; position: relative; color: var(--ink-2); }
.number-list li::before {
  content: counter(nl);
  position: absolute; left: 0; top: .6rem;
  background: var(--burgundy); color: var(--cream);
  width: 1.7rem; height: 1.7rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700;
}

/* ── TABLES ── */
.table-wrap { overflow-x: auto; margin: 1rem 0 1.2rem; }
.fact-table { width: 100%; border-collapse: collapse; font-size: .93rem; }
.fact-table th {
  background: var(--burgundy); color: var(--cream);
  padding: .75rem 1rem; text-align: left;
  font-weight: 700; font-size: .79rem; letter-spacing: .05em;
}
.fact-table td {
  padding: .65rem 1rem; border-bottom: 1px solid var(--sand);
  color: var(--ink-2); vertical-align: top;
}
.fact-table tr:last-child td { border-bottom: none; }
.fact-table tr:nth-child(even) td { background: var(--cream-2); }
.price-cell { font-weight: 700; color: var(--burgundy); white-space: nowrap; }

@media (max-width: 600px) {
  .fact-table thead { display: none; }
  .fact-table tr {
    display: block; background: var(--cream-2);
    border: 1px solid var(--sand);
    border-radius: var(--radius); margin-bottom: .7rem; padding: .8rem;
  }
  .fact-table td { display: block; border: none; padding: .2rem 0; }
  .fact-table td::before {
    content: attr(data-label) ': ';
    font-weight: 700; color: var(--ink); font-size: .76rem;
  }
}

/* ── PARTNER BOXES ── */
.partner-box {
  background: var(--cream-2); border: 1px solid var(--sand);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius); padding: 1.5rem 1.8rem; margin: 1.5rem 0;
}
.partner-box h3 { margin: 0 0 .8rem; font-size: 1.1rem; color: var(--burgundy); }
.partner-box ul { list-style: none; padding: 0; margin: .7rem 0 1.2rem; }
.partner-box ul li { padding: .3rem 0 .3rem 1.6rem; position: relative; color: var(--ink-2); font-size: .94rem; }
.partner-box ul li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.tiqets-box {
  background: var(--white); border: 2px solid var(--gold);
  border-radius: var(--radius); padding: 1.5rem 1.8rem; margin: 1.5rem 0;
}
.tiqets-box h3 { margin: 0 0 .8rem; font-size: 1.1rem; color: var(--burgundy); }
.tiqets-box ul { list-style: none; padding: 0; margin: .7rem 0 1.2rem; }
.tiqets-box ul li { padding: .3rem 0 .3rem 1.6rem; position: relative; color: var(--ink-2); font-size: .94rem; }
.tiqets-box ul li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ── INFO BOX ── */
.info-box {
  background: var(--white); border: 1px solid var(--sand);
  border-radius: var(--radius); padding: 1.4rem; margin: 1rem 0;
  box-shadow: 0 2px 8px var(--shadow);
}
.info-box h4 {
  font-family: 'Playfair Display', serif; color: var(--burgundy);
  font-size: .9rem; letter-spacing: .04em; margin-bottom: .7rem;
}
.info-box dl { display: grid; grid-template-columns: auto 1fr; gap: .3rem 1rem; }
.info-box dt { font-weight: 700; color: var(--ink); font-size: .88rem; }
.info-box dd { color: var(--ink-2); font-size: .88rem; }

/* ── TESTIMONIALS ── */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem; margin: 1.4rem 0;
}
.testimonial {
  background: var(--white); border: 1px solid var(--sand);
  border-radius: var(--radius); padding: 1.3rem 1.5rem;
  box-shadow: 0 2px 8px var(--shadow);
}
.testimonial-stars { color: var(--gold); font-size: .85rem; letter-spacing: .15em; margin-bottom: .5rem; }
.testimonial p { color: var(--ink-2); font-size: .93rem; margin-bottom: .7rem; }
.testimonial-author { font-size: .8rem; color: var(--ink); font-weight: 700; }
.testimonial-source { font-size: .78rem; color: var(--ink-2); font-weight: 400; }
@media (max-width: 700px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ── FAQ ACCORDION ── */
.faq-list { margin: 1.5rem 0; }
.faq-item {
  background: var(--white); border: 1px solid var(--sand);
  border-radius: 6px; margin-bottom: .9rem; overflow: hidden;
  transition: box-shadow .22s, border-color .22s;
}
.faq-item:hover { box-shadow: 0 2px 10px var(--shadow); }
.faq-item.open { border-color: var(--gold); box-shadow: 0 3px 14px rgba(107,39,64,.14); }
.faq-toggle {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 1.2rem;
  padding: 1.1rem 1.4rem; cursor: pointer; user-select: none; transition: background .18s;
}
.faq-toggle:hover { background: var(--cream-2); }
.faq-item.open .faq-toggle { background: var(--cream-2); }
h2.faq-question {
  font-family: 'Source Sans 3', sans-serif;
  font-size: .98rem; font-weight: 700;
  color: var(--ink); margin: 0;
  border: none !important; padding: 0 !important;
  display: inline !important; line-height: 1.6;
}
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--cream-2); border: 1.5px solid var(--sand);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 300; color: var(--gold); line-height: 1;
  transition: transform .25s, background .2s, border-color .2s;
  margin-top: .05rem;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); border-color: var(--gold); color: var(--white); }
.faq-answer { display: none; padding: 0 1.4rem 1.4rem; border-top: 1px solid var(--sand); }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { margin-top: 1rem; color: var(--ink-2); font-size: .96rem; line-height: 1.8; }

/* ── INNER PAGE HEADER BAND (about/legal) ── */
.page-intro {
  background: var(--cream-2); padding: 2.4rem 0 2rem;
  border-bottom: 1px solid var(--sand);
}
.page-intro h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  color: var(--burgundy); margin-bottom: .6rem; font-weight: 700;
}
.page-intro p { color: var(--ink-2); max-width: 660px; }

/* BREADCRUMB */
.breadcrumb { font-size: .8rem; color: var(--ink-2); padding: .7rem 0; margin-bottom: .5rem; }
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--burgundy); text-decoration: none; }
.breadcrumb .sep { margin: 0 .4rem; color: var(--sand); }

/* ── LEGAL PAGES ── */
.legal-content h2 {
  font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--burgundy);
  margin: 2rem 0 .75rem; padding-bottom: .4rem; border-bottom: 1px solid var(--sand);
}
.legal-content h3 { font-size: 1.05rem; font-weight: 700; color: var(--gold-lt); margin: 1.4rem 0 .5rem; }
.legal-content p { color: var(--ink-2); margin-bottom: 1rem; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { color: var(--ink-2); margin-bottom: .35rem; }

/* ── FOOTER ── */
.site-footer { background: var(--burgundy-dk); color: rgba(255,255,255,.68); padding: 3rem 0 2rem; margin-top: 4rem; }
.footer-grid {
  max-width: 1120px; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem;
}
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--gold); margin-bottom: .8rem; }
.site-footer p { font-size: .86rem; line-height: 1.65; margin-bottom: .5rem; }
.site-footer a { color: rgba(255,255,255,.5); font-size: .86rem; transition: color .2s; }
.site-footer a:hover { color: var(--gold); text-decoration: none; }
.site-footer h4 { color: var(--white); font-size: .78rem; letter-spacing: .07em; margin-bottom: .75rem; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: .4rem; }
.site-footer ul a { color: rgba(255,255,255,.55); font-size: .86rem; }
.site-footer ul a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1120px; margin: 1.8rem auto 0; padding: 1.4rem 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .78rem; color: rgba(255,255,255,.38); font-style: italic;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .site-nav { display: none; flex-direction: column; gap: 0; }
  .site-nav.nav-open {
    display: flex; position: absolute; top: 64px; left: 0; right: 0;
    background: var(--burgundy); padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.15);
    box-shadow: 0 6px 16px rgba(0,0,0,.3); z-index: 99;
  }
  .site-nav.nav-open a { padding: .65rem 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: .9rem; color: rgba(255,255,255,.82); }
  .site-nav.nav-open .btn-nav-ticket { margin-top: .5rem; display: inline-block; }
  .menu-toggle { display: flex; }
  .site-header { position: relative; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-home { height: 60vw; min-height: 300px; }
  .hero-inner { height: 55vw; min-height: 320px; }
  .content-block { padding: 2.2rem 0; }
  .content-photo { height: 200px; }
}
@media (max-width: 480px) {
  .header-inner, .page-box { padding: 0 1rem; }
  .hero-content { padding: 0 1rem 2rem; }
}
