/*
Theme Name: TWLT Coming Soon 1.4
Theme URI: https://twlt.example
Description: Coming Soon landing theme for TWLT Live Production & Touring. Arena hero, enquiry form to vip@privenisi.com.
Author: TWLT
Author URI: https://twlt.example
Version: 1.4
License: Proprietary
Text Domain: twlt-coming-soon
*/

:root {
  --bg-main: #000;
  --text-main: #fff;
  --text-dim: rgba(255,255,255,0.7);
  --border-color: rgba(255,255,255,0.25);
  --border-color-focus: rgba(255,255,255,0.55);
  --accent: #ffffff;
  --radius-lg: 0.75rem;
  --radius-sm: 0.5rem;
  --error: #ff4a4a;
  --font-stack: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", sans-serif;
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-stack);
  line-height: 1.45;
}

.container {
  width: 100%;
  max-width: 1280px;
  padding: 2rem 1.5rem;
  margin: 0 auto;
  text-align: center;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: #000;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/bg-uhd.jpg");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  filter: brightness(0.4) contrast(1.1) saturate(1.1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 20%,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.8) 60%,
    rgba(0,0,0,1) 90%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  width: 100%;
  margin-top: 2rem;
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__logo {
  width: min(80%,320px);
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.9));
  margin-bottom: 1rem;
}

.headline {
  font-size: clamp(1rem,0.6vw + 0.6rem,1.1rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.coming-soon {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem;
  margin-bottom: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.9);
}

.tagline {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-main);
  line-height: 1.5;
  max-width: 50ch;
  margin: 0 auto 2rem auto;
}

/* CONTACT CARD */
.contact-card {
  width: 100%;
  max-width: 900px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow:
    0 50px 120px rgba(0,0,0,0.9),
    0 2px 4px rgba(255,255,255,0.07) inset;
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-align: left;
  color: var(--text-main);
}

.contact__title {
  text-align: center;
  font-size: clamp(1.4rem,0.6vw + 1rem,1.6rem);
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.contact__subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 2rem;
  max-width: 60ch;
  line-height: 1.5;
  opacity: 0.9;
  margin-left: auto;
  margin-right: auto;
}

.contact__form {
  width: 100%;
}

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

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field--full {
  grid-column: span 2;
}

label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

input,
textarea {
  width: 100%;
  background-color: rgba(0,0,0,0.35);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 0.95rem;
  padding: 0.9rem;
  line-height: 1.4;
  outline: none;
  transition: border .15s ease, box-shadow .15s ease, background-color .15s ease;
}

input:focus,
textarea:focus {
  border: 1px solid var(--border-color-focus);
  background-color: rgba(0,0,0,0.5);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.08);
}

.error {
  margin-top: 0.4rem;
  min-height: 1em;
  font-size: 0.75rem;
  color: var(--error);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.btn-submit {
  appearance: none;
  border: 0;
  cursor: pointer;
  background: rgba(0,0,0,0.6);
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.4);
  width: 100%;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.9),
    0 2px 4px rgba(255,255,255,0.07) inset;
  transition: all .15s ease;
  margin-top: 1rem;
}

.btn-submit:hover,
.btn-submit:focus {
  transform: translateY(-1px) scale(1.02);
  box-shadow:
    0 40px 120px rgba(0,0,0,1),
    0 2px 6px rgba(255,255,255,0.1) inset;
}

.direct-email {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-main);
  margin-top: 1.5rem;
  line-height: 1.4;
}
.direct-email a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
}
.direct-email a:hover {
  text-decoration: underline;
}

.form-status {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 1rem;
  min-height: 1.2em;
  letter-spacing: 0.03em;
}

/* FOOTER */
.footer {
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: center;
  color: var(--text-main);
  font-size: 0.8rem;
  line-height: 1.4;
  opacity: .9;
}

.footer__copy {
  color: var(--text-main);
  font-size: 0.8rem;
  line-height: 1.4;
  letter-spacing: 0.03em;
}

/* RESPONSIVE */
@media (max-width: 640px) {

  .hero {
    min-height: 100vh;
    padding-top: 2rem;
  }

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

  .form-field--full {
    grid-column: span 1;
  }

  .contact-card {
    padding: 1.25rem 1rem 1.5rem;
  }

  .hero__logo {
    width: min(90%,260px);
  }

}
