* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #111;
  color: #f5f5f5;
  line-height: 1.6;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 36px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
}

.main-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.main-nav a,
.social-links a {
  color: #f5f5f5;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.main-nav a:hover,
.social-links a:hover {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 16px;
  font-size: 1.1rem;
}

.hero {
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.home-hero {
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.45)
    ),
    url("images/1. Home.jpg");
}

.hero-overlay {
  padding: 0 24px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero p {
  margin-top: 18px;
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.content-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 28px;
}

.intro-section {
  background: #111;
}

.intro-section .content-wrap {
  padding-top: 20px;
}

.intro-text {
  text-align: center;
}

.intro-hello {
  font-size: 2.4rem;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.intro-line {
  font-size: 1.2rem;
  max-width: 760px;
  margin: 0 auto 12px;
  line-height: 1.5;
}

.video-section {
  background: #181818;
}

.video-section h2 {
  text-align: center;
  font-size: 2rem;
  margin: 0 0 30px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.site-footer {
  text-align: center;
  padding: 30px 20px;
  background: #0b0b0b;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

@media (max-width: 800px) {
  .site-header {
    position: absolute;
    flex-direction: column;
    gap: 14px;
    padding: 18px 20px;
  }

  .main-nav {
    justify-content: center;
    gap: 14px;
  }

  .main-nav a {
    font-size: 0.75rem;
  }

  .hero {
    min-height: 75vh;
  }

  .intro-section p {
    font-size: 1.05rem;
  }

  .content-wrap {
    padding: 50px 22px;
  }
}
.about-hero {
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.45)
    ),
    url("images/2. About.jpg");
}

.about-section {
  background: #111;
}

.about-content {
  max-width: 820px;
  padding-top: 55px;
}

.credits-list {
  text-align: center;
  margin-bottom: 50px;
}

.credits-list p {
  margin: 0 0 14px;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.2;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.about-content > p {
  font-size: 1.16rem;
  line-height: 1.75;
  margin: 0 0 28px;
}

.about-content blockquote {
  margin: 52px auto;
  padding: 34px 28px;
  max-width: 720px;
  text-align: center;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.45;
  font-style: italic;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.about-content blockquote span {
  display: block;
  margin-top: 16px;
  font-size: 0.95rem;
  font-style: normal;
  opacity: 0.75;
}

.shows-hero {
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.45)
    ),
    url("images/3. Shows.jpg");
}

.shows-section {
  background: #111;
}

.shows-content {
  max-width: 760px;
  padding-top: 45px;
  text-align: center;
}

.show-item h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.show-description {
  font-size: 1.18rem;
  line-height: 1.7;
  margin: 0 auto 22px;
  opacity: 0.9;
}

.videos-hero {
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.45)
    ),
    url("images/4. Videos.jpg");
}

.videos-section {
  background: #111;
}

.videos-content {
  max-width: 950px;
  padding-top: 55px;
}

.video-item {
  margin-bottom: 80px;
}

.video-item:last-child {
  margin-bottom: 0;
}

.video-item h2 {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  margin: 0 0 28px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* DIRECTING PAGE */

.directing-hero {
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.45)
    ),
    url("images/5. Directing.jpg");
}

.directing-section {
  background: #111;
}

.directing-content {
  max-width: 840px;
  padding-top: 55px;
}

.directing-content p {
  font-size: 1.16rem;
  line-height: 1.75;
  margin: 0 0 28px;
}

.directing-statement {
  font-size: 1.35rem !important;
  line-height: 1.65 !important;
  font-weight: bold;
  text-align: center;
  margin: 42px auto 58px !important;
  max-width: 760px;
}

.directing-content h2 {
  margin: 70px 0 26px;
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.directing-content h2:first-child {
  margin-top: 0;
}

.services-list {
  max-width: 820px;
  margin: 34px auto 70px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 34px;
}

.services-list li {
  padding: 16px 0;
  font-size: 1.08rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.services-list li:nth-child(1),
.services-list li:nth-child(2) {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

/* FORM */

.contact-form {
  max-width: 620px;
  margin: 45px auto 0;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 8px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.85;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 22px;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: inherit;
  color: #f5f5f5;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.55);
}

.contact-form button {
  margin-top: 10px;
  padding: 15px 22px;
  font-size: 0.95rem;
  font-family: inherit;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #111;
  background: #f5f5f5;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.contact-form button:hover {
  opacity: 0.82;
}

@media (max-width: 800px) {
  .services-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .services-list li:nth-child(2) {
    border-top: none;
  }
}
/* CONTACT PAGE */

.contact-hero {
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.45)
    ),
    url("images/7. Contact.jpg");
}

.contact-section {
  background: #111;
}

.contact-content {
  max-width: 760px;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 40px;
}

.contact-content p {
  font-size: 1.15rem;
  line-height: 1.75;
  margin: 0 0 26px;
}

.contact-intro {
  font-size: 1.4rem !important;
  font-weight: bold;
  line-height: 1.6 !important;
  margin-bottom: 28px !important;
}

.contact-button {
  display: inline-block;
  margin-top: 14px;
  padding: 16px 28px;
  background: #f5f5f5;
  color: #111;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
  font-weight: bold;
  transition: opacity 0.2s ease;
}

.contact-button:hover {
  opacity: 0.82;
}

.secondary-button {
  background: rgba(255, 255, 255, 0.08);
  color: #f5f5f5;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-divider {
  width: 90px;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
  margin: 70px auto;
}

.contact-content h2 {
  margin-bottom: 18px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
/* MASTERCLASS PAGE */

.masterclass-hero {
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.45)
    ),
    url("images/6. Masterclass.jpg");
}

.masterclass-section {
  background: #111;
}

.masterclass-content {
  max-width: 860px;
  padding-top: 55px;
}

.masterclass-content p {
  font-size: 1.16rem;
  line-height: 1.75;
  margin: 0 0 28px;
}

.masterclass-content h2 {
  margin: 70px 0 26px;
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.masterclass-content h2:first-child {
  margin-top: 0;
}

.masterclass-list {
  max-width: 820px;
  margin: 34px auto 70px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 34px;
}

.masterclass-list li {
  padding: 16px 0;
  font-size: 1.08rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.masterclass-list li:nth-child(1),
.masterclass-list li:nth-child(2) {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 800px) {
  .masterclass-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .masterclass-list li:nth-child(2) {
    border-top: none;
  }
}

/* THANK YOU PAGE */

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  text-align: center;
  padding: 40px 20px;
}

.thank-you-content {
  max-width: 600px;
}

.thank-you-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 24px;
}

.thank-you-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.thank-you-button {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 28px;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.thank-you-button:hover {
  background: white;
  color: black;
}