:root {
  --primary-color: #dfba60;
  --primary-hover: #fae08c;
  --nav-accent: #e88adf;
  --gold-gradient: linear-gradient(135deg, #dfba60 0%, #fae08c 50%, #b89138 100%);
  --gold-border: rgba(223, 186, 96, 0.4);
  --gold-border-light: rgba(223, 186, 96, 0.2);
  --bg-dark: #0a0b0d;
  --bg-card: rgba(18, 19, 24, 0.88);
  --bg-card-solid: #15161c;
  --text-main: #f0f0f5;
  --text-muted: #b0b3c6;
  --font-heading: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
  --transition: all 0.3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body,
button,
input,
textarea,
select {
  font-family: 'DejaVu Sans', sans-serif;
}

body {
  background-image: url('images/bg-50.jpg');
  background-repeat: repeat;
  background-attachment: fixed;
  color: #111111;
  line-height: 1.65;
  overflow-x: hidden;
}

/* =========================================================
   HERO / TOP BANNER
   ========================================================= */
.hero-banner {
  position: relative;
  width: 100%;
  height: min(56.25vw, 100vh);
  line-height: 0;
  background-color: #000;
  overflow: hidden;
}

.hero-banner .top-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Odkazy přes obrázek - vycentrované doprostřed dolů */
.hero-nav {
  position: absolute;
  bottom: 0rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  width: 90%;
  max-width: 760px;
}

.hero-nav-links {
  display: flex;
  gap: clamp(1.4rem, 5vw, 4.5rem);
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-nav-link {
  color: #201b55;
  text-decoration: none;
  font-family: 'Airstream', 'Brush Script MT', cursive;
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  letter-spacing: 0;
  padding: 0;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
  line-height: 1.2;
}

.hero-nav-link:hover,
.hero-nav-link:focus {
  background: transparent;
  color: #e88adf;
  transform: translateY(-2px);
}

/* =========================================================
   STICKY BAR PŘI SCROLLOVÁNÍ
   ========================================================= */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(10, 11, 15, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-border-light);
  padding: 0.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.sticky-header.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sticky-logo {
  font-family: var(--font-heading);
  color: var(--nav-accent);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: var(--transition);
}

.sticky-logo:hover {
  color: #f6b4ef;
}

.sticky-nav {
  display: flex;
  gap: 1.8rem;
}

.sticky-nav a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
}

.sticky-nav a:hover {
  color: var(--nav-accent);
}

/* =========================================================
   CONTAINERS & SECTION BASICS
   ========================================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5.5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: #fff;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 0.9rem auto 0;
  border-radius: 2px;
}

.section-subtitle {
  color: var(--primary-color);
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* =========================================================
   SEKCE 1: O NÁS
   ========================================================= */
#o-nas {
  background: transparent;
}

.about-text {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: #111111;
  font-family: 'DejaVu Sans', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.45;
}

.about-text p {
  margin: 0;
}

.about-philosophy {
  margin-top: 0.45rem !important;
  font-size: 1.25em;
}

.intro-box {
  max-width: 1000px;
  margin: 0 auto 4.5rem;
}

.intro-quote {
  text-align: center;
  margin-bottom: 2.2rem;
  padding: 2rem 2.5rem;
  background: rgba(18, 19, 24, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--gold-border);
  border-left: 5px solid var(--primary-color);
  border-right: 5px solid var(--primary-color);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.intro-quote .highlight-p {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: #ffffff;
  font-style: italic;
  line-height: 1.7;
}

.intro-paragraphs {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--gold-border-light);
  border-radius: 14px;
  padding: 2.5rem 2.8rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

.intro-paragraphs p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #e4e6f2;
  margin-bottom: 1.2rem;
}

.intro-paragraphs strong {
  color: var(--primary-color);
  font-weight: 600;
}

.intro-conclusion {
  margin-top: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gold-border-light);
}

.intro-conclusion p {
  margin-bottom: 0.6rem;
}

.philosophy-highlight {
  font-size: 1.25rem !important;
  font-weight: 700;
  color: var(--primary-color) !important;
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
}

.team-heading-wrapper {
  text-align: center;
  margin-bottom: 3.5rem;
}

.team-section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}

.title-divider {
  width: 70px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 0 auto;
  border-radius: 2px;
}

/* Team Detailed Cards */
.team-detail-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.member-detail-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid var(--gold-border-light);
  display: grid;
  grid-template-columns: 320px 1fr;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.member-detail-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(223, 186, 96, 0.2);
  transform: translateY(-3px);
}

.member-img-col {
  background-color: #0b0c0f;
  position: relative;
  min-height: 350px;
}

.member-detail-card .member-img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.member-detail-card .member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.member-detail-card:hover .member-img {
  transform: scale(1.03);
}

.member-content-col {
  padding: 2.4rem 2.8rem;
  display: flex;
  flex-direction: column;
}

.member-name {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  color: #fff;
  margin-bottom: 0.3rem;
  letter-spacing: 0.03em;
}

.member-role {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.member-lead {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.9rem;
  line-height: 1.65;
}

.member-content-col p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.75;
  margin-bottom: 0.9rem;
}

.member-content-col p:last-child {
  margin-bottom: 0;
}

.member-highlight {
  color: var(--primary-hover) !important;
  font-weight: 500;
}

/* =========================================================
   SEKCE 2: NABÍDKA
   ========================================================= */
#nabidka {
  background: transparent;
  border-top: 1px solid var(--gold-border-light);
  border-bottom: 1px solid var(--gold-border-light);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 2.2rem;
  margin-bottom: 3.5rem;
}

.offer-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2.8rem 2.2rem;
  border-radius: 16px;
  border: 1px solid var(--gold-border-light);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.offer-card.featured {
  border-color: var(--primary-color);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(223, 186, 96, 0.2);
}

.offer-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--gold-gradient);
  color: #0b0c0f;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.offer-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(223, 186, 96, 0.25);
}

.offer-icon {
  font-size: 2.4rem;
  color: var(--primary-color);
  margin-bottom: 1.3rem;
}

.offer-title {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.offer-subtitle {
  color: var(--primary-color);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.3rem;
  letter-spacing: 0.02em;
}

.offer-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.offer-list {
  list-style: none;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 1.2rem;
}

.offer-list li {
  color: #e0e0ea;
  font-size: 0.92rem;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
}

.offer-list li::before {
  content: '✦';
  color: var(--primary-color);
  font-size: 0.85rem;
  margin-top: 1px;
}

/* Event types banner */
.event-types-box {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--gold-border-light);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.event-types-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  margin-bottom: 1.6rem;
  color: var(--primary-color);
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

.event-tag {
  background: rgba(18, 19, 24, 0.8);
  border: 1px solid var(--gold-border-light);
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #e6e8f4;
  transition: var(--transition);
}

.event-tag:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* =========================================================
   SEKCE 3: KONTAKT
   ========================================================= */
#kontakt {
  background: transparent;
}

.contact-layout {
  display: block;
  max-width: 620px;
  margin: 0 auto;
}

.contact-info-card {
  background: transparent;
  padding: 0;
  border: 0;
  box-shadow: none;
  text-align: center;
  font-family: 'DejaVu Sans', sans-serif;
  color: #723058;
}

.contact-info-title {
  font-family: 'DejaVu Sans', sans-serif;
  font-size: 1.2rem;
  color: #723058;
  margin-bottom: 1.8rem;
}

.contact-info-desc {
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-info-desc strong {
  color: var(--primary-color);
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item-icon {
  font-size: 1.3rem;
  color: var(--primary-color);
  background: rgba(223, 186, 96, 0.12);
  border: 1px solid var(--gold-border-light);
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: 0.85rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}

.contact-item-text h3 {
  color: #723058;
  font-family: 'DejaVu Sans', sans-serif;
  font-size: 1.75rem;
  margin-bottom: 1.3rem;
}

.contact-item-text p,
.contact-item-text a {
  color: #723058;
  font-family: 'DejaVu Sans', sans-serif;
  font-size: 1.35rem;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
}

.contact-item-text a:hover {
  color: #e88adf;
}

/* Contact Form */
.contact-form-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2.8rem 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--gold-border);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 1.6rem;
}

.form-group {
  margin-bottom: 1.3rem;
}
  color: #723058;
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #d1d3e2;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: rgba(10, 11, 15, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 12px rgba(223, 186, 96, 0.35);
  background: rgba(10, 11, 15, 1);
}

.btn-submit {
  width: 100%;
  padding: 1.05rem;
  background: var(--gold-gradient);
  border: none;
  border-radius: 8px;
  color: #0b0c0f;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 0.6rem;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(223, 186, 96, 0.5);
  background: linear-gradient(135deg, #fae08c, #ffffff);
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: #08090b;
  border-top: 1px solid var(--gold-border-light);
  padding: 3.5rem 0 2.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2.2rem;
  margin-bottom: 1.6rem;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--primary-color);
}

.footer-philosophy {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */
@media (max-width: 900px) {
  .member-detail-card {
    grid-template-columns: 1fr;
  }

  .member-img-col {
    min-height: 380px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .hero-banner {
    height: auto;
  }

  .hero-banner .top-img {
    height: auto;
    object-fit: initial;
  }

  .sticky-header {
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.55rem 0.75rem;
  }

  .sticky-logo {
    font-size: 1rem;
    letter-spacing: 0.06em;
  }

  .sticky-nav {
    gap: 1rem;
    justify-content: center;
    width: 100%;
  }

  .sticky-nav a {
    font-size: 0.72rem;
    letter-spacing: 0.03em;
  }

  .section-title {
    font-size: 2rem;
  }

  .artists-lead,
  .artists-support {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .artists-lead {
    margin-bottom: 1.5rem;
  }

  .bio-modal {
    padding: 0.75rem;
  }

  .bio-modal-panel {
    max-height: 94vh;
    padding: 2.4rem 1.2rem 1.5rem;
  }

  .bio-modal-image {
    width: 150px;
    max-width: 45%;
    margin-right: 1rem;
  }

  .bio-modal-text p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .hero-nav {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: 0rem;
    width: 100%;
    max-width: none;
    transform: translateX(-50%);
  }

  .hero-nav-links {
    padding: 0;
    gap: 0.3rem;
    align-items: flex-end;
  }

  .hero-nav-link {
    font-size: clamp(1.15rem, 5vw, 2.1rem);
    font-weight: 700;
    line-height: 1;
    padding: 0.08rem 0.22rem;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.45);
    display: inline-flex;
    align-items: flex-end;
    font-family: 'Airstream', 'Brush Script MT', cursive;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .intro-paragraphs,
  .member-content-col,
  .contact-info-card,
  .contact-form-card {
    padding: 1.6rem;
  }
}
  color: var(--primary-color);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.sticky-nav {
  display: flex;
  gap: 1.5rem;
}

.sticky-nav a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.sticky-nav a:hover {
  color: var(--primary-color);
}

/* =========================================================
   CONTAINERS & SECTION BASICS
   ========================================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5.5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  margin: 0.8rem auto 0;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* =========================================================
   SEKCE 1: O NÁS
   ========================================================= */
#o-nas {
  background: transparent;
}

.intro-box {
  max-width: 960px;
  margin: 0 auto 4.5rem;
}

.intro-quote {
  text-align: center;
  margin-bottom: 2.2rem;
  padding: 1.6rem 2.2rem;
  background: rgba(212, 175, 55, 0.08);
  border-left: 4px solid var(--primary-color);
  border-right: 4px solid var(--primary-color);
  border-radius: 8px;
}

.intro-quote .highlight-p {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: #fff;
  font-style: italic;
  line-height: 1.6;
}

.intro-paragraphs {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 2.2rem 2.5rem;
}

.intro-paragraphs p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #e2e4f0;
  margin-bottom: 1.2rem;
}

.intro-conclusion {
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.intro-conclusion p {
  margin-bottom: 0.5rem;
}

.philosophy-highlight {
  font-size: 1.25rem !important;
  font-weight: 700;
  color: var(--primary-color) !important;
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
}

.team-heading-wrapper {
  text-align: center;
  margin-bottom: 3.5rem;
}

.team-section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.6rem;
}

.title-divider {
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  margin: 0 auto;
}

/* Team Detailed Cards */
.team-detail-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.member-detail-card {
  background: var(--bg-card);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 320px 1fr;
  overflow: hidden;
  transition: var(--transition);
}

.member-detail-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

.member-img-col {
  background-color: #0b0c0f;
  position: relative;
  min-height: 340px;
}

.member-detail-card .member-img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.member-detail-card .member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.member-detail-card:hover .member-img {
  transform: scale(1.03);
}

.member-content-col {
  padding: 2.2rem 2.5rem;
  display: flex;
  flex-direction: column;
}

.member-name {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 0.3rem;
}

.member-role {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.member-lead {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.member-content-col p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 0.9rem;
}

.member-content-col p:last-child {
  margin-bottom: 0;
}

.member-highlight {
  color: #f7d070 !important;
  font-weight: 500;
}

/* =========================================================
   SEKCE 2: NABÍDKA
   ========================================================= */
#nabidka {
  background: transparent;
}

.artists-gallery {
  max-width: 900px;
  margin: 0 auto;
}

.artists-lead,
.artists-support {
  display: grid;
  gap: 1.5rem;
}

.artists-lead {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 620px;
  margin: 0 auto 1.5rem;
}

.artists-support {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.artist-card {
  margin: 0;
  text-align: center;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.artist-card:hover,
.artist-card:focus-visible {
  transform: translateY(-3px);
}

.artist-card:focus-visible {
  outline: 2px solid #e88adf;
  outline-offset: 5px;
}

.artist-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
}

.artist-card figcaption {
  padding-top: 0.45rem;
  color: #723058;
  font-family: 'DejaVu Sans', sans-serif;
  font-size: clamp(1rem, 2vw, 1.8rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.15;
}

.modal-open {
  overflow: hidden;
}

.bio-modal[hidden] {
  display: none;
}

.bio-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(17, 17, 17, 0.58);
  animation: bio-modal-fade 0.2s ease-out;
}

.bio-modal-panel {
  position: relative;
  width: min(1040px, 100%);
  max-height: min(780px, 90vh);
  overflow-y: auto;
  padding: 2.5rem clamp(1.5rem, 4vw, 3.5rem);
  background: rgba(247, 244, 255, 0.97);
  border: 2px solid #e88adf;
  box-shadow: 0 20px 70px rgba(32, 27, 85, 0.45);
  color: #111111;
  font-family: 'DejaVu Sans', sans-serif;
}

.bio-modal-image {
  float: left;
  width: 250px;
  max-width: 38%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
  margin: 0 2rem 1rem 0;
  border: 2px solid #e88adf;
}

.bio-modal-panel h2 {
  margin: 0 2.5rem 1.5rem 0;
  color: #723058;
  font-family: 'DejaVu Sans', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.2;
}

.bio-modal-text p {
  margin: 0 0 1rem;
  color: #111111;
  font-size: 1rem;
  line-height: 1.65;
}

.bio-modal-close {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  background: transparent;
  color: #723058;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.bio-modal-close:hover,
.bio-modal-close:focus-visible {
  color: #e88adf;
}

.bio-modal-panel::after {
  display: block;
  clear: both;
  content: '';
}

@keyframes bio-modal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.offer-card {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.offer-card.featured {
  border-color: var(--primary-color);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.15);
}

.offer-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, var(--primary-color), #f7d070);
  color: #121316;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.8rem;
  border-radius: 20px;
}

.offer-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.offer-icon {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 1.25rem;
}

.offer-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.offer-subtitle {
  color: var(--primary-color);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.offer-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.offer-list {
  list-style: none;
  margin-top: auto;
}

.offer-list li {
  color: #e0e0ea;
  font-size: 0.92rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.offer-list li::before {
  content: '✦';
  color: var(--primary-color);
  font-size: 0.85rem;
}

/* Event types banner */
.event-types-box {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
}

.event-types-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.event-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #e0e0ea;
}

/* =========================================================
   SEKCE 3: KONTAKT
   ========================================================= */
#kontakt {
  background: transparent;
}

.contact-layout {
  display: block;
  max-width: 620px;
  margin: 0 auto;
}

.contact-info-card {
  background: transparent;
  padding: 0;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  text-align: center;
  font-family: 'DejaVu Sans', sans-serif;
  color: #723058;
}

.contact-info-title {
  font-family: 'DejaVu Sans', sans-serif;
  font-size: 1.2rem;
  color: #723058;
  margin-bottom: 1.8rem;
}

.contact-info-desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item-icon {
  font-size: 1.3rem;
  color: var(--primary-color);
  background: rgba(212, 175, 55, 0.1);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}

.contact-item-text h3 {
  color: #723058;
  font-family: 'DejaVu Sans', sans-serif;
  font-size: 1.75rem;
  margin-bottom: 1.3rem;
}

.contact-item-text p,
.contact-item-text a {
  color: #723058;
  font-family: 'DejaVu Sans', sans-serif;
  font-size: 1.35rem;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
}

.contact-item-text a:hover {
  color: #e88adf;
}

/* Contact Form */
.contact-form-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #c5c7d5;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(18, 19, 22, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  background: rgba(18, 19, 22, 1);
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary-color), #f7d070);
  border: none;
  border-radius: 8px;
  color: #121316;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 0.5rem;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #f3cf55, #fff);
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: #0b0c0e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem 0 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--primary-color);
}

.footer-philosophy {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */
@media (max-width: 900px) {
  .member-detail-card {
    grid-template-columns: 1fr;
  }

  .member-img-col {
    min-height: 380px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .section-title {
    font-size: 2rem;
  }

  .hero-nav {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: 0.05rem;
    width: 100%;
    max-width: none;
    transform: translateX(-50%);
  }

  .hero-nav-link {
    font-size: clamp(1.15rem, 5vw, 2.1rem);
    line-height: 1;
    padding: 0.08rem 0.22rem;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.45);
    display: inline-flex;
    align-items: flex-end;
  }

  .intro-paragraphs {
    padding: 1.5rem 1.2rem;
  }

  .intro-quote {
    padding: 1.2rem;
  }

  .intro-quote .highlight-p {
    font-size: 1.15rem;
  }

  .member-content-col {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
