/* ================= RESET & CORE ================= */

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

html,body{
  margin:0;
  padding:0;
  width:100%;
  overflow-x:hidden;
}

:root{
  --bg:#faf7f2;
  --text:#1c1c1c;
  --muted:#6f6f6f;
  --accent:#c9a24d;
  --line:#e2dccf;
  --teal:#4fa8a3;
}

body{
  font-family:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.75;
}

/* ================= LAYOUT ================= */

.wrapper{
  max-width:960px;
  margin:0 auto;
  padding:40px 24px 120px;
}

section{
  margin-bottom:120px;
}

/* ================= HEADER ================= */

.header{
  display:grid;
  grid-template-columns:160px 1fr;
  gap:48px;
  align-items:center;
  margin-bottom:120px;
}

.hero{
  font-size:2.8rem;
  font-weight:500;
}

.hero span{
  display:block;
  color:var(--muted);
  font-size:1.3rem;
  margin-top:12px;
}

.wave{
  width:120px;
  height:3px;
  background:linear-gradient(90deg,var(--teal),var(--accent));
  border-radius:2px;
  margin:40px 0;
}

.header-actions{
  display:flex;
  align-items:center;
  gap:28px;
  flex-wrap:wrap;
}

.cta{
  padding:14px 28px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--teal),var(--accent));
  color:#fff;
  text-decoration:none;
  font-weight:500;
  box-shadow:0 10px 30px rgba(0,0,0,.15);
  transition:.25s;
}

.cta:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 40px rgba(0,0,0,.2);
}

/* ================= SOCIALS ================= */

.socials{
  display:flex;
  gap:18px;
}

.social-link{
  position:relative;
  display:inline-flex;
  align-items:center;
  color:#111;
  transition:color .2s ease, transform .2s ease;
}

.social-link svg{
  width:24px;
  height:24px;
  fill:currentColor;
}

.social-link:hover{
  color:var(--accent);
  transform:translateY(-1px);
}

/* Tooltip */
.tooltip{
  position:absolute;
  bottom:140%;
  left:50%;
  transform:translateX(-50%) translateY(6px);
  background:#111;
  color:#fff;
  padding:8px 12px;
  border-radius:6px;
  font-size:13px;
  line-height:1.4;
  white-space:nowrap;
  opacity:0;
  pointer-events:none;
  transition:.2s;
  z-index:10;
}

.tooltip::after{
  content:"";
  position:absolute;
  top:100%;
  left:50%;
  transform:translateX(-50%);
  border:6px solid transparent;
  border-top-color:#111;
}

.social-link:hover .tooltip{
  opacity:1;
  transform:translateX(-50%) translateY(0);
}

/* ================= TEXT ================= */

p{
  max-width:720px;
  font-size:1.15rem;
}

.soft{
  color:var(--muted);
}

/* ================= PLACES ================= */

.places{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:24px;
  max-width:720px;
}

.place{
  padding:26px;
  background:#fff;
  border-radius:22px;
  box-shadow:0 20px 40px rgba(0,0,0,.04);
}

/* ================= VENUES ================= */

.venues-section h2{
  font-size:2rem;
  font-weight:500;
  margin-bottom:50px;
}

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

@media(max-width:980px){
  .venues-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

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

.venue-card{
  display:block;
  background:#fff;
  border-radius:28px;
  overflow:hidden;
  text-decoration:none;
  color:var(--text);
  box-shadow:0 28px 60px rgba(0,0,0,.08);
  transition:transform .35s ease, box-shadow .35s ease;
}

.venue-card:hover{
  transform:translateY(-6px);
  box-shadow:0 38px 80px rgba(0,0,0,.12);
}

.venue-image{
  height:200px;
  overflow:hidden;
}

.venue-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.venue-content{
  padding:28px 26px 32px;
}

.venue-badge{
  font-size:.7rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:14px;
}

.venue-title{
  font-size:1.35rem;
  font-weight:500;
  margin-bottom:4px;
}

.venue-place{
  font-size:.95rem;
  color:var(--muted);
}

/* ================= CONTACT ================= */

.contact{
  border-top:1px solid var(--line);
  padding-top:80px;
}

.contact-title{
  font-size:2rem;
  font-weight:500;
  margin-bottom:24px;
  display:block;
}

.contact-form{
  max-width:640px;
}

/* kritický mobilní fix (date input) */
input,
textarea{
  width:100%;
  max-width:100%;
  min-width:0;
  padding:16px;
  border-radius:14px;
  border:1px solid var(--line);
  font-size:1rem;
  margin-bottom:12px;
  appearance:none;
  -webkit-appearance:none;
}

label{
  display:block;
  font-size:.75rem;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--muted);
  margin:24px 0 8px;
}

button{
  margin-top:32px;
  padding:14px 36px;
  border-radius:999px;
  border:none;
  background:linear-gradient(90deg,var(--teal),var(--accent));
  color:#fff;
  font-size:1rem;
  cursor:pointer;
  box-shadow:0 14px 40px rgba(0,0,0,.15);
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .wrapper{
    padding:32px 16px 80px;
  }

  .header{
    grid-template-columns:1fr;
    gap:32px;
  }

  .hero{
    font-size:2rem;
  }

  .hero span{
    font-size:1.1rem;
  }

  section{
    margin-bottom:90px;
  }
}

/* ===== EXPERIENCE SECTION ===== */

.experience-section{
  max-width:720px;
}

.section-soft-title{
  font-size:1.4rem;
  font-weight:500;
  margin-bottom:36px;
  color:var(--text);
}

.experience-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:36px;
  margin-bottom:32px;
}

.experience-item{
  background:#fff;
  border-radius:22px;
  padding:28px 26px;
  box-shadow:0 20px 40px rgba(0,0,0,.04);
}

.experience-number{
  display:block;
  font-size:2rem;
  font-weight:500;
  margin-bottom:6px;
}

.experience-label{
  font-size:.95rem;
  color:var(--muted);
}

.experience-note{
  margin-top:24px;
  font-size:1.05rem;
  max-width:640px;
}

/* Mobil */
@media(max-width:620px){
  .experience-grid{
    grid-template-columns:1fr;
    gap:20px;
  }
}

.site-footer{
  margin-top:140px;
  font-size:.9rem;
  color:var(--muted);
}

.footer-credit{
  display:block;
  margin-top:12px;
  font-size:13px;
  opacity:.45;
}

.footer-credit a{
  color:var(--text);
  text-decoration:underline;
}

.footer-credit a:hover{
  opacity:.75;
}

/* ===== LIVE VIDEO SECTION ===== */

.live-video-section{
  max-width:720px;
}

.live-video-text{
  margin-bottom:32px;
  font-size:1.1rem;
}

.live-video-card{
  display:grid;
  grid-template-columns: 280px 1fr;
  gap:32px;
  text-decoration:none;
  color:var(--text);
  background:#fff;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 28px 60px rgba(0,0,0,.08);
  transition:transform .35s ease, box-shadow .35s ease;
}

.live-video-card:hover{
  transform:translateY(-6px);
  box-shadow:0 38px 80px rgba(0,0,0,.12);
}

.live-video-thumb{
  position:relative;
  height:180px;
  overflow:hidden;
}

.live-video-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.live-video-play{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:42px;
  color:#fff;
  background:rgba(0,0,0,.25);
}

.live-video-content{
  padding:28px 28px 32px 0;
}

.live-video-label{
  font-size:.7rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:14px;
}

.live-video-title{
  font-size:1.35rem;
  font-weight:500;
  margin-bottom:10px;
}

.live-video-meta{
  font-size:.9rem;
  color:var(--muted);
}

/* Mobil */
@media(max-width:620px){
  .live-video-card{
    grid-template-columns:1fr;
  }

  .live-video-thumb{
    height:200px;
  }

  .live-video-content{
    padding:24px;
  }
}


.next-gig{
  margin:120px 0;
  max-width:720px;
}

.next-gig h2{
  font-size:2rem;
  font-weight:500;
  margin-bottom:36px;
}

.gig-card{
  display:flex;
  align-items:center;
  gap:32px;
  padding:34px 38px;
  background:#fff;
  border-radius:32px;
  box-shadow: 0 28px 60px rgba(0,0,0,.08);
  margin-top: 20px;
}

.gig-date{
  min-width:90px;
  text-align:center;
  border-right:1px solid var(--line);
  padding-right:28px;
}

.gig-day{
  font-size:2.4rem;
  font-weight:600;
  line-height:1;
  color:var(--teal);
}

.gig-month{
  font-size:.9rem;
  text-transform:uppercase;
  letter-spacing:.1em;
  color:var(--muted);
  margin-top:6px;
}

.gig-info{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.gig-place{
  font-size:1.3rem;
  font-weight:500;
}

.gig-location{
  font-size:1rem;
  color:var(--muted);
}

.gig-time{
  font-size:.95rem;
  color:#444;
}

