:root {
  --bg: #e8efe9;
  --panel: #d8e4dc;
  --panel-deep: #c7d6cc;
  --white: #1f2a24;
  --muted: rgba(31, 42, 36, 0.72);
  --line: rgba(31, 42, 36, 0.18);
  --soft-btn: #f1f4f2;
  --soft-border: rgba(31, 42, 36, 0.22);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--white);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

body.secondary-page {
  background:
    linear-gradient(rgba(232, 239, 233, 0.92), rgba(220, 229, 223, 0.94)),
    url("../images/third-4.jpg") center/cover fixed no-repeat;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  border-top: 1px solid rgba(64, 92, 75, 0.45);
  background: rgba(232, 239, 233, 0.72);
  backdrop-filter: blur(6px);
}

.bar-inner {
  min-height: 56px;
  width: min(1220px, 96%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  text-decoration: none;
  color: var(--white);
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  font-weight: 600;
}

nav {
  display: flex;
  gap: 1.4rem;
}

nav a,
.tickets {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

nav a:hover,
.tickets:hover {
  color: var(--white);
}

nav a.active,
nav a[aria-current="page"],
.tickets.active {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.hero-page {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(280px, 480px) minmax(320px, 560px);
  justify-content: center;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.2rem);
  padding: 6.2rem min(6vw, 4rem) 2.5rem;
  background: linear-gradient(140deg, #edf3ef 0%, #dde8e0 48%, #d4e0d8 100%);
}

#heroImage {
  width: 100%;
  height: min(76vh, 680px);
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(61, 86, 73, 0.26);
  box-shadow: 0 24px 48px rgba(44, 65, 55, 0.2);
}

.hero-content {
  background: rgba(248, 251, 249, 0.68);
  border: 1px solid rgba(61, 86, 73, 0.2);
  border-radius: 18px;
  padding: clamp(1.2rem, 2.6vw, 2rem);
  box-shadow: 0 16px 36px rgba(47, 68, 58, 0.12);
}

.hero-kicker {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(31, 42, 36, 0.62);
  font-weight: 600;
}

.hero-title {
  margin: 0.5rem 0 0.8rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5.6vw, 4rem);
  line-height: 0.95;
  color: #1d2b24;
  letter-spacing: 0.03em;
}

.hero-copy {
  margin: 0;
  color: rgba(31, 42, 36, 0.82);
  line-height: 1.7;
  font-size: 0.97rem;
}

.hero-cta {
  margin-top: 1.1rem;
  display: inline-block;
  text-decoration: none;
  color: #22312a;
  background: #f4f7f5;
  border: 1px solid rgba(61, 86, 73, 0.28);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual {
  display: flex;
  align-items: center;
}

.shows-section {
  width: min(1100px, 90%);
  margin: 0 auto;
  padding: 4.4rem 0 3.3rem;
}

.shows-kicker {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.62rem;
  color: rgba(31, 42, 36, 0.62);
}

.shows-title {
  margin: 0.35rem 0 1.7rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: clamp(1.3rem, 2.3vw, 2rem);
  font-weight: 600;
}

.shows-divider {
  height: 1px;
  background: rgba(31, 42, 36, 0.2);
  margin-bottom: 1.25rem;
}

.show-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.2rem;
  align-items: start;
}

.show-card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.95);
  border: 1px solid var(--soft-border);
}

.show-meta h3 {
  margin: 0 0 0.55rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  line-height: 1.05;
  color: #26342d;
}

.show-meta p {
  margin: 0.24rem 0;
  font-size: 0.88rem;
  color: rgba(31, 42, 36, 0.8);
}

.minimal-section {
  padding: 1.2rem 1rem;
  text-align: center;
  border-top: 1px solid rgba(31, 42, 36, 0.1);
  background: #edf3ee;
}

.minimal-section p {
  margin: 0;
  color: rgba(31, 42, 36, 0.82);
  font-size: 0.95rem;
}

.about-showcase {
  margin-top: 0.8rem;
}

.about-top {
  background: var(--panel-deep);
  border-top: 1px solid rgba(31, 42, 36, 0.2);
  border-bottom: 1px solid rgba(31, 42, 36, 0.14);
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 1.6rem min(5vw, 4rem);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: start;
}

.about-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.82rem;
  color: rgba(31, 42, 36, 0.72);
}

.about-title {
  margin: 0.2rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
}

.about-copy {
  margin: 0;
  max-width: 92ch;
  color: rgba(31, 42, 36, 0.86);
  font-size: 0.9rem;
  line-height: 1.7;
}

.about-collage {
  width: min(1280px, 100%);
  margin: 0 auto;
  background: var(--panel);
  display: grid;
  grid-template-columns: 1fr minmax(320px, 560px) 1fr;
  align-items: end;
  gap: 0;
  overflow: hidden;
  position: relative;
}

.about-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-collage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(102, 113, 108, 0.24);
  pointer-events: none;
}

.about-side {
  height: min(42vw, 360px);
  opacity: 0.9;
  filter: saturate(0.85) brightness(0.92);
}

.about-right {
  object-fit: contain !important;
  object-position: center;
  background: #d6e0d9;
  padding: 0.35rem;
}

.about-center {
  height: min(46vw, 420px);
  z-index: 2;
}

.videos-section {
  width: min(1100px, 90%);
  margin: 0 auto;
  padding: 4rem 0 3rem;
  text-align: center;
  background:
    linear-gradient(rgba(223, 233, 227, 0.94), rgba(211, 224, 216, 0.96)),
    url("../images/videos-ref.png") center/cover no-repeat;
  border-top: 1px solid rgba(31, 42, 36, 0.1);
}

.videos-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.62rem;
  color: rgba(31, 42, 36, 0.63);
}

.videos-title {
  margin: 0.45rem 0 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  text-align: left;
}

.video-card {
  background: rgba(241, 246, 242, 0.88);
  border: 1px solid var(--soft-border);
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  filter: brightness(0.86) saturate(0.88);
}

.video-card p {
  margin: 0;
  padding: 0.55rem 0.45rem 0.7rem;
  color: #22312a;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.videos-btn {
  margin-top: 1rem;
  display: inline-block;
  text-decoration: none;
  color: #22312a;
  background: var(--soft-btn);
  border: 1px solid var(--soft-border);
  border-radius: 2px;
  padding: 0.48rem 0.95rem;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.reels-section {
  width: min(1100px, 90%);
  margin: 0 auto;
  padding: 4rem 0 3.3rem;
  text-align: center;
  background:
    linear-gradient(rgba(222, 232, 225, 0.92), rgba(204, 219, 210, 0.95)),
    url("../images/reels-ref.png") center/cover no-repeat;
  border-top: 1px solid rgba(31, 42, 36, 0.1);
}

.reels-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.62rem;
  color: rgba(31, 42, 36, 0.64);
}

.reels-title {
  margin: 0.45rem 0 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  justify-items: center;
}

.reel-phone {
  width: min(170px, 100%);
  aspect-ratio: 9 / 18;
  border: 2px solid rgba(73, 98, 84, 0.6);
  border-radius: 24px;
  padding: 7px;
  background: rgba(237, 244, 239, 0.95);
  box-shadow: 0 14px 30px rgba(48, 73, 61, 0.22);
}

.reel-phone::before {
  content: "";
  display: block;
  width: 42%;
  height: 9px;
  border-radius: 0 0 8px 8px;
  margin: 0 auto 8px;
  background: rgba(84, 110, 96, 0.3);
}

.reel-phone img {
  width: 100%;
  height: calc(100% - 18px);
  object-fit: cover;
  border-radius: 14px;
  display: block;
  filter: brightness(0.88) saturate(0.9);
}

.reels-btn {
  margin-top: 1rem;
  display: inline-block;
  text-decoration: none;
  color: #22312a;
  background: var(--soft-btn);
  border: 1px solid var(--soft-border);
  border-radius: 2px;
  padding: 0.48rem 0.95rem;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.news-section {
  width: min(1100px, 90%);
  margin: 0 auto;
  padding: 4.2rem 0 3.3rem;
}

.news-kicker {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.62rem;
  color: rgba(31, 42, 36, 0.62);
}

.news-title {
  margin: 0.45rem 0 1.5rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.news-card {
  background: rgba(241, 246, 242, 0.86);
  border: 1px solid var(--soft-border);
  padding: 0.55rem;
}

.news-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  filter: brightness(0.9) saturate(0.9);
}

.news-card h3 {
  margin: 0.65rem 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
}

.news-card p {
  margin: 0;
  color: rgba(31, 42, 36, 0.78);
  font-size: 0.84rem;
  line-height: 1.5;
}

.contact-links {
  margin-top: 0.55rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.86rem;
}

.newsletter-section {
  margin-top: 1.2rem;
  background: #cfdad3;
  border-top: 1px solid rgba(31, 42, 36, 0.16);
  border-bottom: 1px solid rgba(31, 42, 36, 0.16);
}

.newsletter-wrap {
  width: min(1100px, 90%);
  margin: 0 auto;
  padding: 2.6rem 0;
}

.newsletter-wrap h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.newsletter-wrap p {
  margin: 0.35rem 0 1rem;
  color: rgba(31, 42, 36, 0.76);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 520px;
}

.newsletter-form input {
  flex: 1;
  border: 1px solid var(--soft-border);
  background: #eef4ef;
  padding: 0.7rem 0.8rem;
  font: inherit;
  color: #1d2a23;
}

.newsletter-form button {
  border: 1px solid var(--soft-border);
  background: #f8fbf9;
  padding: 0.7rem 0.95rem;
  font: inherit;
  color: #22312a;
  cursor: pointer;
}

.site-footer {
  background: #d6e2da;
  padding: 2.2rem 1rem 1.2rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(214, 226, 218, 0.78), rgba(214, 226, 218, 0.86)),
    url("../images/backimage.jpeg") center 38%/cover no-repeat;
  filter: saturate(0.9) brightness(0.95);
  z-index: 0;
}

.footer-grid {
  width: min(1100px, 90%);
  margin: 0 auto 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.footer-brand h3,
.footer-contact h3 {
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.footer-brand a,
.footer-socials a,
.footer-contact p,
.footer-contact a {
  display: block;
  text-decoration: none;
  color: rgba(31, 42, 36, 0.78);
  margin: 0.34rem 0;
  font-size: 1rem;
  line-height: 1.45;
}

.footer-socials {
  margin-top: 0.65rem;
}

.site-footer p {
  width: min(1100px, 90%);
  margin: 0 auto;
  font-size: 0.78rem;
  color: rgba(31, 42, 36, 0.62);
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
  position: relative;
  z-index: 1;
}

.simple-page {
  width: min(1100px, 90%);
  margin: 0 auto;
  padding: 6.8rem 0 2rem;
}

body.admin-page .simple-page {
  max-width: 980px;
}

body.admin-page .simple-hero,
body.admin-page .simple-block {
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(28, 44, 35, 0.08);
}

body.admin-page a {
  color: #1c4f38;
  text-underline-offset: 2px;
}

body.admin-page .simple-block form {
  display: grid;
  gap: 0.75rem;
}

body.admin-page .simple-block form p {
  margin: 0;
}

body.admin-page input,
body.admin-page select,
body.admin-page textarea {
  width: 100%;
  border: 1px solid rgba(31, 42, 36, 0.24);
  border-radius: 10px;
  background: #f6faf7;
  color: #1f2a24;
  padding: 0.66rem 0.75rem;
  font: inherit;
}

body.admin-page textarea {
  min-height: 110px;
  resize: vertical;
}

body.admin-page button {
  border: 1px solid rgba(36, 71, 53, 0.28);
  border-radius: 10px;
  background: linear-gradient(180deg, #f7fbf8, #e7f0ea);
  color: #1d3b2f;
  padding: 0.62rem 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.admin-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.admin-links a {
  display: block;
  border: 1px solid rgba(31, 42, 36, 0.18);
  background: #f2f7f3;
  border-radius: 10px;
  padding: 0.72rem 0.8rem;
  text-decoration: none;
}

.admin-hint {
  margin-top: 0.3rem;
  color: rgba(31, 42, 36, 0.7);
  font-size: 0.9rem;
}

.simple-hero {
  background:
    linear-gradient(rgba(216, 228, 220, 0.9), rgba(216, 228, 220, 0.92)),
    url("../images/third-2.jpg") center/cover no-repeat;
  border: 1px solid var(--soft-border);
  padding: 1.4rem;
}

.simple-hero h1 {
  margin: 0 0 0.6rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.simple-hero p {
  margin: 0;
  line-height: 1.7;
}

.simple-block {
  margin-top: 1rem;
  background: #edf3ee;
  border: 1px solid var(--soft-border);
  padding: 1rem 1.1rem;
}

.simple-block h2 {
  margin: 0 0 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1rem;
}

.simple-block p {
  margin: 0.45rem 0 0;
  line-height: 1.7;
}

.simple-block ul {
  margin: 0.3rem 0 0;
  padding-left: 1.2rem;
}

.simple-block li {
  margin: 0.4rem 0;
}

.featured-section {
  margin-top: 1rem;
}

.featured-section h2 {
  margin: 0 0 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.featured-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border: 1px solid var(--soft-border);
  filter: saturate(0.86) brightness(0.9);
  background: #dce6df;
}

.quote {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.3;
}

.quote-by {
  margin: 0.6rem 0 0;
  font-weight: 600;
}

@media (max-width: 900px) {
  nav {
    gap: 0.75rem;
  }

  nav a,
  .tickets {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .brand {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 5rem;
  }

  .hero-content {
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

  #heroImage {
    height: auto;
    max-height: 460px;
  }

  .shows-section {
    padding: 3.2rem 0 2.5rem;
  }

  .show-card {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .show-card img {
    width: 100%;
    max-width: 240px;
    height: 210px;
  }

  .about-top {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .about-collage {
    grid-template-columns: 1fr;
  }

  .about-side {
    display: none;
  }

  .about-center {
    height: auto;
    max-height: 420px;
  }

  .videos-grid {
    grid-template-columns: 1fr;
  }

  .reels-grid {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand a,
  .footer-socials a,
  .footer-contact p,
  .footer-contact a {
    font-size: 0.94rem;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .featured-grid img {
    height: 220px;
  }

  .admin-links {
    grid-template-columns: 1fr;
  }

  .simple-page {
    padding-top: 5.8rem;
  }
}


/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #000;
    display: block;
}

/* Mobile Styles */
@media (max-width: 768px) {

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        display: none;
        flex-direction: column;
        text-align: center;
        padding: 15px 0;
    }

    nav a {
        padding: 10px 0;
        display: block;
    }

    nav a.active,
    nav a[aria-current="page"] {
        background: rgba(23, 37, 31, 0.08);
    }

    nav.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .tickets {
        display: none; /* optional */
    }
}

/* FORCE HIDE NAV ON MOBILE */
@media (max-width: 768px) {

    #nav-menu {
        display: none !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        z-index: 999;
    }

    #nav-menu.active {
        display: flex !important;
    }

    .hamburger {
        display: flex !important;
    }

    nav a {
        display: block;
        padding: 12px;
    }

    .tickets {
        display: none;
    }
}


/* Header Book Now CTA Button */
.topbar .tickets {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    border-radius: 999px;

    background: linear-gradient(135deg, #d8a63d, #f3d47a);
    color: #102019 !important;

    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    text-decoration: none;

    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 12px 30px rgba(216, 166, 61, 0.38);

    white-space: nowrap;
    transition: all 0.28s ease;
}

.topbar .tickets:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #f3d47a, #d8a63d);
    box-shadow: 0 16px 38px rgba(216, 166, 61, 0.48);
    color: #102019 !important;
}

.topbar .tickets:focus {
    outline: 3px solid rgba(216, 166, 61, 0.35);
    outline-offset: 4px;
}

@media (max-width: 768px) {
    .topbar .tickets {
        padding: 11px 18px;
        font-size: 11px;
        letter-spacing: 1px;
    }
}
