:root {
  --primary: #C9782A;
  --secondary: #4B2E1E;
  --dark-brown: #5A341F;
  --bg-light: #FFFAF5;
  --text-dark: #2B2B2B;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
}

/* =========================
   THEATRE CURTAIN
========================= */
#curtain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  overflow: hidden;
}

/* Fabric-like folds */
.curtain-panel {
  width: 50%;
  height: 100%;
  background:
    repeating-linear-gradient(
      to right,
      #5A341F 0px,
      #4B2E1E 20px,
      #5A341F 40px
    );
  box-shadow: inset -25px 0 45px rgba(0,0,0,0.45);
  transition: transform 2.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.curtain-panel.right {
  box-shadow: inset 25px 0 45px rgba(0,0,0,0.45);
}

/* Center intro (no coming soon here) */
.curtain-center {
  position: absolute;
  inset: 0;
  background: var(--bg-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 1.3s ease;
}

.curtain-center img {
  width: 150px;
  margin-bottom: 14px;
}

.intro-tagline {
  font-style: italic;
  color: var(--primary);
}

/* Curtain opening */
#curtain.open .left {
  transform: translateX(-115%);
}

#curtain.open .right {
  transform: translateX(115%);
}

#curtain.open .curtain-center {
  opacity: 0;
}

/* =========================
   SITE CONTENT
========================= */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.header {
  background: white;
  padding: 15px 0;
}

.logo {
  height: 55px;
}

/* HERO */
.hero {
  padding: 110px 0;
  text-align: center;
}

.coming-soon-text {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--secondary);
}

.tagline {
  margin: 12px 0;
  font-style: italic;
  color: var(--primary);
}

.hero-text {
  max-width: 680px;
  margin: 24px auto;
  color: #555;
}

/* FOOTER */
.footer {
  background: var(--secondary);
  color: white;
  text-align: center;
  padding: 26px 10px;
  font-size: 0.9rem;
}
/* CONTACT SECTION */
.contact {
  background: #fff;
  padding: 80px 0;
  text-align: center;
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--secondary);
  margin-bottom: 12px;
}

.contact-text {
  max-width: 600px;
  margin: 0 auto 18px;
  color: #555;
}

.contact-email a {
  color: var(--primary);
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: 500;
}

.contact-email a:hover {
  text-decoration: underline;
}
