/* ============================================
   GLOBAL STYLES - Converted from Next.js
   ============================================ */

/* Font Face - Now controlled via WordPress Customizer */
/* The @font-face declaration is injected dynamically via PHP in wp_head */
/* Fallback font-face (disabled to avoid conflict with Customizer) */
/*
@font-face {
  font-family: "gveretLevin";
  src: url(../fonts/gveretLevin.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
*/

/* Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "gveretLevin";
}

html,
body {
  max-width: 100%;
  max-height: 100dvh;
}

body {
  font-family: "gveretLevin";
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: #f5f5f5;
  color: #111;
  line-height: 1.5;
}

/* Layout */
.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Footer */
.footer {
  background-color: #ffffff;
  border-top: 1px solid #e5e5e5;
  padding: 1rem 0;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;
  font-size: 0.875rem;
  color: #666;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Simple page styling */
.page-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
}

.section {
  margin-bottom: 2rem;
}

.button-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: none;
  background: #336277a3;
  color: white;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  z-index: 9;
  transition: all 0.25s ease;
}

.button-primary:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

/* ============================================
   NAVBAR STYLES
   ============================================ */
.navbar {
  width: 100%;
  background-color: #336277a3;
  border-bottom: 1px solid #e5e5e5;
  z-index: 9999;
  position: fixed;
}

.navbar-inner {
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  font-weight: 700;
  font-size: 1.25rem;
}

.navbar-logo .logo {
  width: 50px;
  height: 50px;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar-link {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  border: 1px solid #fff;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.navbar-link:hover {
  background-color: #fff;
  color: #336277d4;
}

/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background-color: white;
  border-radius: 5px;
  transition: 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #336277;
  padding: 1rem;
  gap: 1rem;
  text-align: center;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu a {
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  transition: 0.25s ease;
}

.mobile-menu a:hover {
  text-decoration: underline;
}

/* Responsive Navbar (under 768px) */
@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Mobile menu visibility controlled by JavaScript via .is-open class */
  /* Don't force display: flex here - let JavaScript handle it */
}

/* ============================================
   MAIN PAGE / HERO SECTION STYLES
   ============================================ */
.hero-section {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  text-align: center;
  color: white;
  z-index: 5;
}

.hero-logo {
  width: 260px;
  height: auto;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .hero-logo {
    width: 360px;
  }
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 2rem;
  }
}

.hero-links {
  display: flex;
  gap: 40px;
  margin-top: 10px;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .hero-links {
    flex-direction: column;
    gap: 20px;
  }
}

.hero-links a,
.home-link {
  font-size: 1.6rem;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.25s, transform 0.25s;
  opacity: 0.8;
}

.hero-links a:hover,
.home-link:hover {
  opacity: 1;
  transform: scale(1.2);
}

/* ============================================
   VIDEO WITH CONTROLS STYLES
   ============================================ */
.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
}

.video-wrapper-desktop {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
}

.video {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  filter: brightness(0.55);
}

@media (max-width: 768px) {
  .video {
    min-height: 92vh;
  }
  
  .video-wrapper-desktop {
    display: none !important;
  }
}

.play-pause {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.play-pause svg {
  width: 38px;
  height: 38px;
  color: white;
}

.play-pause:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(255, 255, 255, 0.27);
}

/* ============================================
   HOME PAGE ROOT STYLES
   ============================================ */
.home-root {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow-y: hidden;
}

@media (max-width: 768px) {
  .home-root {
    grid-template-columns: 1fr;
    height: auto;
  }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
html,
body {
  overflow-y: visible;
}

.about-root {
  width: 100%;
  min-height: 100vh;
  padding: 120px 20px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  background: linear-gradient(to right,
    #963517 0%,
    #681913 30%,
    #8c8972 70%,
    #60584f 100%);
  color: #fff;
}

.about-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.about-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.about-title {
  position: absolute;
  font-size: 2rem;
  font-weight: bold;
  top: 30px;
  left: 135px;
}

.about-content1,
.about-content2 {
  max-width: 700px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.about-middle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.about-middle-title {
  font-size: 1.8rem;
  font-weight: bold;
}

.about-icons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.about-icons-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  width: 100%;
}

.about-icons-bottom {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  max-width: 900px;
}

.about-icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
  gap: 10px;
  text-align: center;
}

.about-text {
  font-size: 1rem;
  font-weight: 500;
}

.about-image {
  border-radius: 12px;
}

.about-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 450px;
  gap: 15px;
}

.about-bottom-title {
  text-decoration: underline;
}

.about-bottom-text {
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .about-middle .about-icons .about-icons-top {
    flex-direction: column;
    gap: 15px;
  }

  .about-middle .about-icons .about-icons-bottom {
    flex-direction: column;
    gap: 20px;
  }

  .about-bottom {
    flex-direction: column;
  }
}

/* ============================================
   LEARN PAGE STYLES
   ============================================ */
.learn-root {
  width: 100%;
  min-height: 100vh;
  padding: 120px 20px;
  display: flex;
  justify-content: center;
  background-image: var(--zouko-bg-pic5, url(../images/pics/pic5.jpg));
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
}

.learn-root::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.learn-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.learn-headers {
  text-align: center;
}

.learn-headers h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.learn-headers h2 {
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
}

.learn-media {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  width: 100%;
  flex-wrap: wrap;
  width: 80%;
}

.learn-image-wrapper,
.learn-video-wrapper {
  flex: 1 1 400px;
  max-width: 500px;
  position: relative;
}

.learn-image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.learn-video-wrapper {
  border-radius: 16px;
  overflow: hidden;
}

.video-learn {
min-height: unset !important;
}

.learn-links {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.learn-links a {
  padding: 10px 18px;
  border-radius: 12px;
  background: #336277a3;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.25s ease;
  cursor: pointer;
}

.learn-links a:hover {
  transform: scale(1.1);
}



/* ============================================
   OTHER STYLES PAGE STYLES
   ============================================ */
.otherStyles-root {
  width: 100%;
  min-height: 100vh;
  padding: 120px 20px;
  display: flex;
  justify-content: center;
  background-image: var(--zouko-bg-pic5, url(../images/pics/pic5.jpg));
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
}

.otherStyles-root::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.otherStyles-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.otherStyles-headers {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
}

.otherStyles-media {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  width: 100%;
  flex-wrap: wrap;
  width: 80%;
}

.otherStyles-image-wrapper,
.otherStyles-video-wrapper {
  flex: 1 1 400px;
  max-width: 500px;
  position: relative;
}

.otherStyles-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.otherStyles-video-wrapper {
  border-radius: 16px;
  overflow: hidden;
}

.otherStyles-links {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.otherStyles-links a {
  padding: 10px 18px;
  border-radius: 12px;
  background: #336277a3;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.25s ease;
  cursor: pointer;
}

.otherStyles-links a:hover {
  transform: scale(1.1);
}

/* ============================================
   DANCE PAGE STYLES
   ============================================ */
.dance-root {
  width: 100%;
  min-height: 100vh;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: var(--zouko-bg-pic2, url(../images/pics/pic2.jpg));
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
  gap: 40px;
}

.dance-root::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.dance-content {
  flex: 1;
  max-width: 50%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: center;
}

.dance-image-wrapper,
.dance-video-wrapper {
  flex: 1;
  max-width: 50%;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dance-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
  max-width: 400px;
}

.dance-video-wrapper {
  border-radius: 16px;
  overflow: hidden;
  max-height: 400px;
  aspect-ratio: 1 / 1;
}

.dance-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
  max-width: 400px;
  max-height: 400px;
}

.dance-headers {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.dance-headers h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
}

.dance-headers h2 {
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
}

.dance-links {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.dance-links a {
  padding: 10px 18px;
  border-radius: 12px;
  background: #336277a3;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.25s ease;
}

.dance-links a:hover {
  transform: scale(1.1);
}

.dance-bottom h1 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 768px) {
  .dance-root {
    flex-direction: column;
  }

  .dance-content,
  .dance-image-wrapper,
  .dance-video-wrapper {
    max-width: 100%;
  }

  .dance-image-wrapper {
    display: none;
  }

  .dance-video-wrapper {
    display: flex;
    margin-top: 20px;
    max-width: 400px;
    width: 100%;
  }

  .dance-video {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 300px;
  }
}

/* ============================================
   PRODUCTION PAGE STYLES
   ============================================ */
.production-root {
  width: 100%;
  min-height: 100vh;
  padding: 40px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  background-image: var(--zouko-bg-pic1, url(../images/pics/pic1.jpg));
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.production-root::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.production-root > * {
  position: relative;
  z-index: 2;
}

.production-header {
  width: fit-content;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 22px;
}

.production-logo-wrapper {
  position: relative;
}

.production-logo {
  width: 150px;
  height: 150px;
}

.production-header h1 {
  position: absolute;
  bottom: -20px;
  left: -60px;
  color: #fff;
}

.production-header h2 {
  color: #fff;
}

.production-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  color: #fff;
}

.production-content h2 {
  text-align: center;
}

.production-actions {
  margin-top: 20px;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-root {
  width: 100%;
  min-height: 100vh;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  background: linear-gradient(
    to right,
    #963517 0%,
    #681913 30%,
    #8c8972 70%,
    #60584f 100%
  );
  color: #fff;
}

.contact-title {
  font-size: 2.2rem;
  font-weight: bold;
}

.contact-form {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  outline: none;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-role-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-role-label {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}

.contact-select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-select:focus {
  outline: none;
}

.contact-form button {
  margin-top: 10px;
  padding: 14px;
  background: #ffffffcc;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  font-weight: 600;
}

.contact-form button:hover {
  background: #ffffffdd;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.navbar-link {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  border: 1px solid #fff;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.navbar-link:hover {
  background-color: #fff;
  color: #336277d4;
}

