*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  background-color: #000;
  font-family: Arial, sans-serif;
  text-align: center;
  color: #f8f6f7;
  padding: 0;
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

h1, h2, h3 {
  color: #d6458e;
}

.page-org .page-content{
  padding-top: 70px;
}

.page-content {
  flex: 1 0 auto;
  
}

p {
  font-size: 1.2em;
  margin-top: 20px;
}


.site-header{
  position: relative;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: none;
  border-top: none;
}

.nav a {
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  letter-spacing: 1.5px;
  font-size: 18px;
  font-weight: 800;
}

.header-inner{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

html{
  scroll-behavior: smooth;
}

#koncerty{
  scroll-margin-top: 120px; /*podla headera*/
}



.brand{ 
  justify-self: center;
  transform: translateY(37px); 
  z-index: 5; 

}


.logo{
  height: 96px;
  display: block;
}

.nav{
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-left{
  justify-self: end;
  margin-right: 62px; 
  margin-left: 12px;  
  display: flex;
  align-items: center;
  gap: 52px;
}

.nav-right{
  justify-self: start;
  margin-left: 32px;   
  margin-right: 32px;  
  display: flex;
  align-items: center;
  gap: 22px;          
}

.site-header .nav a{
  display: inline-block; 
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.site-header .nav a:hover{
  transform: translateY(-2px) scale(1.08);
  color: #ff8ed1;
  text-shadow: 0 0 12px rgba(214, 69, 142, 0.6);
}

.site-header a{
  color: #d6458e;
  text-decoration: none;
}

.site-header a:hover{
  color: #a09c9f;
}



.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  padding-top: 0px;
  margin: 0px;
  background-color: #0a0a0a;
  flex-shrink: 0;
}

.site-footer::before {
  content: "";
  display: block;
  height: 3px;
  background-color: #d6458e;
  margin: 0 auto;
  width: min(1100px, 100%);
}



.gigs-section {
  max-width: 1100px;
  margin: 1rem auto 4rem;   /* TOP | LEFT/RIGHT | BOTTOM */
  padding: 2rem;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.7); 
  backdrop-filter: blur(6px);
}

.h2 {
  margin-bottom: 1.5rem;
  margin-left: 20px;
  text-align: center;
  font-size: 2rem;
  color: #d6458e;
}

.gigs-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gig-card {
  display: grid;
  grid-template-columns: 120px 1fr 120px;
  align-items: center;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  background: rgba(20, 20, 20, 0.9);

  justify-content: space-between;
  gap: 24px;
}

.gig-venue {
  text-decoration: none;
  transition: all 0.2s ease;
  color: #d6458e;
}

.gig-venue:hover {
  opacity: 0.8;
}


.gig-date {
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  justify-self: start;
}

.gig-day {
  display: block;
  font-size: 1.8rem;
  color: #d6458e;
}

.gig-month {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.gig-info h3 {
  margin: 0 0 0 4px;
  font-size: 1.1rem;
  text-align: center;
  padding-right: 1rem;
  color: #d6458e;
}

.gig-info p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
  padding-right: 1rem;
}

.gig-cta .btn-small {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #fff;
  font-size: 0.85rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 120px;
}

/* --- SHOW MORE / LESS */

.gigs_toggle{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}


.gigs-list .gig-card:nth-child(n + 3){
  display: none;
}

.gigs_toggle:checked ~ .gigs-list .gig-card{
  display: grid; /* gig-card je grid */
}

/* button */
.gigs_btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 18px auto 0;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #d6458e;
  color: #d6458e;
  cursor: pointer;
  user-select: none;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
}

.gigs_btn:hover{
  color: #ff8ed1;
  box-shadow: 0 0 12px rgba(214, 69, 142, 0.45);
}

.gigs_btn-less{ display: none; }
.gigs_toggle:checked ~ .gigs_btn .gigs_btn-more{ display: none; }
.gigs_toggle:checked ~ .gigs_btn .gigs_btn-less{ display: inline; }

.contact-section {
  max-width: 1100px;
  margin: 16px auto 2px auto;
  padding: 2rem;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  border-top: 3px solid #d6458e;
  border-bottom: 3px solid #d6458e;
}


.contact-card {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  background: rgba(20, 20, 20, 0.9);
}

.contact-section p {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  opacity: 0.85;
  text-align: left;
  font-weight: bold;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  text-decoration: none;
  transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease;
  background: transparent;
  border: 0;
}

.social-link .icon {
  width: 22px;
  height: 22px;
  fill: #d6458e; 
  transition: fill 0.2s ease, transform 0.2s ease;
} 

.social-link:hover .icon {
  fill: #ff8ed1; 
  transform: translateY(-2px) scale(1.1);
}

.social-link:hover {
  transform: translateY(-2px) scale(1.08);
  opacity: 0.9;
  box-shadow: 0 0 12px rgba(214, 69, 142, 0.6);
}




.hero{
  height: clamp(420px, 70vh, 820px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__overlay{
  height: clamp(420px, 70vh, 820px);
}


.section{
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section > *{
  position: relative;
  z-index: 1;
}


.hero--concerts{
  background-image: url('/images/IMG_5526.jpeg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero--concerts::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0) 20%,
    rgba(0,0,0,0) 80%,
    rgba(0,0,0,1) 100%
  );
  pointer-events: none;
}

.gig-link {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid currentColor;
  transition: all 0.2s ease;
  color:#d6458e;
}

.gig-link:hover {
  transform: translateY(-1px);
  opacity: 0.85;
}


@media (max-width: 900px){
  .header-inner{
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .nav-left, .nav-right{
    justify-content: center;
    flex-wrap: wrap;
  }
  .logo{
    height: 48px;
  }
}


/* ============================= */
/* SEKCIA TVORBA */
/* ============================= */

.section--disc{
  padding: 80px 0;
  position: relative;

  background-image: url('/images/Background_2.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  min-height: 650px;
}

.section--disc::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.5) 5%,
    rgba(0,0,0,0) 15%,
    rgba(0,0,0,0) 60%,
    rgba(0,0,0,1) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.section--disc > *{
  position: relative;
  z-index: 1;
}

.music-buttons{
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 100px;
}

.music-btn{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  text-decoration: none; 
  transition: transform 0.2s ease, opacity 0.2s ease;
  text-align: center;
}

.music-btn img{
  width: 100%;
  border-radius: 6px;
  display: block;
}

.music-btn span{
  margin-top: 4px;
  padding: 6px 14px;
  font-size: 15px;
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(2px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.music-btn:hover{
  transform: translateY(-4px);
  opacity: 0.9;
}

.music-btn:focus{
  outline: none;
}

.music-btn:focus-visible img{
  outline: 2px solid rgba(214, 69, 142, 0.55);
  outline-offset: 6px;
  border-radius: 8px;
}

.music-item {
  position: relative;
  width: 220px;
  cursor: pointer;
  overflow: hidden;
}

.music-item img {
  width: 100%;
  display: block;
}

/* title dole */
.music-title {
  margin-top: 8px;
  color: white;
  text-align: center;
}

/* overlay */
.music-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;

  opacity: 0;
  transition: opacity 0.25s ease;
}

/* hover trigger */
.music-item:hover .music-overlay {
  opacity: 1;
}

/* icons */
.music-icon {
  color: white;
  transform: scale(0.9);
  transition: all 0.25s ease;
}

.music-icon:hover {
  transform: scale(1.2);
}

/* brand hover */
.music-icon.spotify:hover {
  color: #1DB954;
}

.music-icon.youtube:hover {
  color: #FF0000;
}


/*SEKCIA O NAS*/

.section--who {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: auto;
}

.who_image::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
   rgba(0,0,0,0.9) 0%,
   rgba(0,0,0,0.5) 5%,
   rgba(0,0,0,0) 15%,
   rgba(0,0,0,0.5) 90%,
   rgba(0,0,0,0.9) 95%,
   rgba(0,0,0,1) 100%
  );
  pointer-events: none;
}


.who_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.who_content {
  display: flex;
  flex-direction: column;
  justify-content: center; 
  padding: 0px 80px;
  
  color: white;
}

.who_content p {
  max-width: 520px;
  line-height: 1.6;
}

/*SEKCIA HISTORIA*/

.section--history {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 48px;
}

.history_image::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.95) 0%,
      rgba(0,0,0,0.5) 12%,
      rgba(0,0,0,0) 28%,
      rgba(0,0,0,0) 72%,
      rgba(0,0,0,0.5) 88%,
      rgba(0,0,0,0.95) 100%
    ),
    linear-gradient(to left,
      rgba(0,0,0,0.95) 0%,
      rgba(0,0,0,0.6) 18%,
      rgba(0,0,0,0) 45%
    );
}

.history_image{
  position: relative;
  overflow: hidden;
}

.history_image img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.history_title{
  letter-spacing: 0.5px;
  margin-top: 20px;
  margin-bottom: 60px;
  font-size: 8rem;
  color: #d6458e;
}

.history_content{
  display: flex;
  flex-direction: column;
  justify-content: center;  
  align-items: center;
  text-align: center;
  padding: 60px 40px;
  gap: 18px;              
}

.history_content p {
  max-width: 520px;
  line-height: 1.6;
}

 
@media (max-width: 900px){
  .history{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .history_media{
    aspect-ratio: 16 / 10; /* výška mobile */
  }

  .history_title{
    font-size: 40px;
  }
}


.history-gigs{
  max-width: 1100px;
  margin: 18px auto 0;
  padding: 18px 22px 28px;
  background: rgba(0,0,0,0.6);
  border-radius: 14px;
  backdrop-filter: blur(6px);
}

.history-gigs_title{
  margin: 6px 0 18px;
  text-align: center;
  color: #d6458e;
  font-size: 2rem;
  font-weight: 700;
}

.history-gigs_grid{
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px 34px; /* row | column */
  justify-items: center;
}

.history-gig{
  text-align: center;
  line-height: 1.15;
  min-width: 120px;
}

.history-gig_date{
  font-weight: 700;
  font-size: 14px;
  color: #f8f6f7;
  opacity: 0.95;
}

.history-gig_meta{
  margin-top: 6px;
  font-size: 12px;
}

.history-gig_city{
  color: #d6458e;
  font-weight: 700;
}

.history-gig_venue{
  color: #d6458e;
  opacity: 0.9;
}

@media (max-width: 1100px){
  .past-gigs_grid{ grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 720px){
  .past-gigs_grid{ grid-template-columns: repeat(2, 1fr); }
}

.history-gig_meta {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- SHOW MORE / LESS --- */


.history-gigs_toggle{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}


.history-gigs_grid .history-gig:nth-child(n + 13){
  display: none;
}


.history-gigs_toggle:checked ~ .history-gigs_grid .history-gig{
  display: block;
}

/* button */
.history-gigs_btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 18px auto 0;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #d6458e;
  color: #d6458e;
  cursor: pointer;
  user-select: none;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
}

.history-gigs_btn:hover{
  color: #ff8ed1;
  box-shadow: 0 0 12px rgba(214, 69, 142, 0.45);
}

.history-gigs_btn-less{ display: none; }
.history-gigs_toggle:checked ~ .history-gigs_btn .history-gigs_btn-more{ display: none; }
.history-gigs_toggle:checked ~ .history-gigs_btn .history-gigs_btn-less{ display: inline; }


.org-downloads{
  max-width: 1100px;
  margin: 18px auto 40px;
  padding: 18px 22px 28px;
  background: rgba(0,0,0,0.6);
  border-radius: 14px;
  backdrop-filter: blur(6px);
  border-top: 3px solid #d6458e;
  border-bottom: 3px solid #d6458e;
}

.org-downloads_title{
  margin: 6px 0 18px;
  text-align: center;
  color: #d6458e;
  font-size: 2rem;
  font-weight: 700;
}

.org-downloads_list{
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto;
}

.org-downloads_item{
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: #f8f6f7;
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid rgba(214, 69, 142, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.org-downloads_item:hover{
  transform: translateY(-2px);
  border-color: #d6458e;
  box-shadow: 0 0 12px rgba(214, 69, 142, 0.35);
  color: #ff8ed1;
}

.org-downloads_item--zip{
  font-weight: 700;
}

/* ============================= */
/* ORG – CONTACT BOX (footer part) */
/* ============================= */

.org-contactbox{
  max-width: 1100px;
  margin: 26px auto 40px;
  padding: 18px 22px 28px;
  background: rgba(0,0,0,0.6);
  border-radius: 14px;
  backdrop-filter: blur(6px);

  border-top: 3px solid #d6458e;
  border-bottom: 3px solid #d6458e;
}

.org-contactbox_title{
  margin: 6px 0 18px;
  text-align: center;
  color: #d6458e;
  font-size: 2rem;
  font-weight: 700;
}

.org-contactbox_email{
  text-align: center;
  margin: 0 0 18px;
  opacity: 0.9;
}

.org-contactbox_email a{
  color: #d6458e;
  text-decoration: none;
  font-weight: 700;
}

.org-contactbox_email a:hover{
  color: #ff8ed1;
  text-decoration: underline;
}

/* form layout */
.org-contactbox_form{
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.org-field{
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}

.org-field input,
.org-field textarea{
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid rgba(214, 69, 142, 0.25);
  border-radius: 10px;
  padding: 12px 14px;
  color: #f8f6f7;
  font-family: inherit;
}

.org-field input:focus,
.org-field textarea:focus{
  outline: none;
  border-color: #d6458e;
  box-shadow: 0 0 0 2px rgba(214, 69, 142, 0.18);
}

/* button */
.org-contactbox_submit{
  margin-top: 4px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(214, 69, 142, 0.35);
  background: rgba(20, 20, 20, 0.9);
  color: #f8f6f7;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.org-contactbox_submit:hover{
  transform: translateY(-2px);
  border-color: #d6458e;
  box-shadow: 0 0 12px rgba(214, 69, 142, 0.35);
  color: #ff8ed1;
}

/* ===== LIVE VIDEO ===== */

.org-video{
  max-width: 900px;
  margin: 60px auto 40px;
  padding: 28px 24px 34px;
  background: rgba(0,0,0,0.65);
  border-radius: 18px;
  backdrop-filter: blur(6px);
  text-align: center;
}

.org-section_title{
  color: #d6458e;
  font-size: 1.9rem;
  margin-bottom: 22px;
  font-weight: 700;
}

.org-video_frame{
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(214,69,142,0.25);
}

.org-video_frame iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.social-link:hover,
.social-link:focus,
.social-link:active,
.social-link:focus-visible{
  background: transparent !important;
  outline: none;
  box-shadow: none; 
}