/* ===================================================
   1. VARIABLES
=================================================== */

:root {
  --color-bg: #ffffff;
  --color-text: #000000;
  --max-width: 1100px;
  --section-padding: 60px 20px;
  --font-main: 'Libre Baskerville', serif;
}


/* ===================================================
   2. GLOBAL RESETS / BASE
=================================================== */

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
}

.section-text {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}


/* ===================================================
   3. UTILITIES (small reusable helpers)
=================================================== */

.no-padding {
  padding: 0 !important;
}

.no-padding-left {
  padding-left: 0 !important;
}

.text-center {
  text-align: center;
}

.full-height {
  min-height: 100vh;
}


/* ===================================================
   4. HEADER
=================================================== */

.header-main h1 {
  margin: 0;
}


/* ===================================================
   5. HOME SECTION
=================================================== */

#home {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: 40px 20 px;
  box-sizing: border-box;
  background-color: #ffffff;
  color: #000000;
}

#home .section-text {
  font-family: 'Libre Baskerville', serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
}

#home .section-text p {
  margin: 20px 0;
}

.home-icons {
    width: 40px;   /* adjust to desired size */
    height: 40px;  /* adjust to desired size */
    display: inline-block;
    object-fit: contain; /* keeps the aspect ratio */
}


/* ===================================================
   BIO SECTION
=================================================== */

.bio-text {
  max-width: 900px;
  margin: 100px auto;
  text-align: center;
  padding: 40px;
  background-color: #3D1C54;
  color: #ffffff;
  border-radius: 10px;
  font-family: 'Libre Baskerville', serif;
}



/* ===================================================
   6. SHOWS SECTION
=================================================== */

#shows {
  padding: 60px 20px;
  box-sizing: border-box;
  background: #ffffff;
  color: #000000;
}

#shows .section-text {
  font-family: 'Libre Baskerville', serif;
  max-width: 1000px;
  margin: 0 auto 30px;
  padding: 0 20px;
  text-align: center;
}

#shows .section-text h2 {
  font-weight: 700;
  margin: 0 0 16px;
}

#shows .section-text p {
  font-size: 18px;
  line-height: 1.6;
}


/* ===================================================
   7. VIDEO GRID
=================================================== */

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin: 20px auto 40px;
  padding: 0 20px;
}

.video-grid iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
}


/* ===================================================
   8. GALLERY
=================================================== */

#shows .gallery {
  max-width: 1100px;
  margin: 0 auto;
}

#shows .gallery::after {
  content: "";
  display: block;
  clear: both;
}

/* ===================================================
   MARQUEE
=================================================== */

.marquee-wrapper {
  height: 40px; /* vertical spacing */
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-flex;
  animation: marquee 20s linear infinite;
}

.marquee-inner span {
  padding-right: 2rem;
}

.marquee {
    margin-top: 40px;
    margin-bottom: 60px; 
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


/* ===============================
   PROJEKTY SECTION
================================= */

#projekty {
  padding: 40px 20px;
}

#projekty .projects-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  /*justify-content: center;*/
}

.project-card {
  flex: 1 1 480px;
  background: #ffffff;
  padding: 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
  /*max-width: 500px;*/
  /*border: 2px solid #ffffff;*/
}
.projekt-bg-text {
  position: absolute;
  font-size: 65px;
  font-weight: bold;
  font-family: 'Oswald', sans-serif;
  color: rgba(61, 28, 84, 0.1);
  text-transform: lowercase;
  pointer-events: none;
  user-select: none;
}

.full-width {
  flex: 1 1 100%;
}

.projekt-1 {
  bottom: -10px;
  right: 10px;
}

.projekt-2 {
  top: -10px;
  right: 10px;
}

.projekt-3 {
  top: -10px;
  center;
}

/* ===============================
   SUPPORT SECTION
================================= */

.section-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  gap: 10px;
  align-items: center;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}


.photo-single img {
  width: 70%;
  height: auto;
  object-fit: cover;
  border-radius: 0px; /* remove if you want sharp corners */
  display: block;
  margin: 0 auto;
}

#contact {
  font-family: 'Libre Baskerville', serif;
  color: #000000;
  text-align: left;
}

#contact h2 {
  margin: 0 0 16px;
  color: #000000;
}

#contact p {
  margin: 0 0 20px;
  line-height: 1.6;
  font-size: 16px;
}

#contact .btn {
  display: inline-block;
  padding: 10px 24px;
  background-color: #3D1C54;  /* purple */
  color: #ffffff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

/* Mobile: stack */
@media (max-width: 768px) {
  .section-wrapper { 
    grid-template-columns: 1fr; 
  }
}





/* ===================================================
   9. RESPONSIVE
=================================================== */

@media (max-width: 769px) {
  .section-text {
    padding: 0 20px;
  }
}

@media (max-width: 375px) {
  iframe.fb-scale {
    transform: scale(.7);
    transform-origin: 0 0;
    min-height: 400px;
  }
}

/* -------------- Footer -------------- */
.site-footer {
  background-color: #3D1C54;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  width: 100%;
}

.site-footer .footer-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer .footer-icons a {
  color: #fff;
  font-size: 24px;
  text-decoration: none;
}

.site-footer .footer-copy {
  margin-top: 10px;
  font-size: 14px;
}



