@font-face {
  font-family: 'ModernGothic';
  src: url('ModernGothic-Medium copy.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green: #12f301;
  --black: #000000;
  --dark-gray: #2d2e2e;
}

body {
  font-family: 'ModernGothic', 'Arial Black', sans-serif;
  background-color: var(--black);
  color: var(--green);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.05em;
}

.container {
  position: relative;
  width: 100%;
  max-width: 1280px;
  height: 832px;
  margin: 0 auto;
  overflow: hidden;
}

/* Background Image - left side */
.bg-image-container {
  position: absolute;
  top: 0;
  left: -5px;
  width: 555px;
  height: 832px;
}

.bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Logo - spans across panels */
.logo-container {
  position: absolute;
  top: 61px;
  left: 272px;
  width: 592px;
  height: 183px;
  z-index: 10;
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Left top text - SPRING 2026 / VANCOUVER */
.spring {
  position: absolute;
  top: 196px;
  left: 15px;
  font-size: 20px;
  z-index: 10;
}

.vancouver {
  position: absolute;
  top: 220px;
  left: 35px;
  font-size: 20px;
  z-index: 10;
}

/* Left bottom text */
.tagline {
  position: absolute;
  top: 603px;
  left: 15px;
  font-size: 20px;
  z-index: 10;
}

.presale {
  position: absolute;
  top: 669px;
  left: 206px;
  font-size: 20px;
  z-index: 10;
}

.location {
  position: absolute;
  top: 694px;
  left: 292px;
  font-size: 20px;
  z-index: 10;
}

/* Description - right side */
.description {
  position: absolute;
  top: 257px;
  left: 701px;
  width: 553px;
  font-size: 20px;
  line-height: 1.4;
  z-index: 10;
}

/* Form Container */
.signup-form {
  position: absolute;
  top: 395px;
  left: 442px;
  width: 838px;
  height: 360px;
  background-color: var(--green);
  z-index: 5;
}

.form-cta {
  position: absolute;
  top: 50px;
  left: 20px;
  width: 320px;
  font-size: 20px;
  color: var(--dark-gray);
}

.form-fields {
  position: absolute;
  top: 0;
  left: 352px;
  right: 40px;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  font-size: 20px;
  color: var(--dark-gray);
}

.form-group input[type="text"],
.form-group input[type="email"] {
  width: 445px;
  height: 26px;
  background-color: var(--dark-gray);
  border: none;
  padding: 0 8px;
  font-family: 'ModernGothic', 'Arial Black', sans-serif;
  font-size: 14px;
  color: var(--green);
  outline: none;
  letter-spacing: -0.05em;
}

/* Exact positioning for form elements */
.form-group.name-group label {
  position: absolute;
  top: 50px;
  left: 0;
}

.form-group.name-group input {
  position: absolute;
  top: 75px;
  left: 0;
}

.form-group.make-group label {
  position: absolute;
  top: 113px;
  left: 0;
}

.form-group.make-group input {
  position: absolute;
  top: 138px;
  left: 0;
}

.form-group.email-group label {
  position: absolute;
  top: 176px;
  left: 0;
}

.form-group.email-group input {
  position: absolute;
  top: 201px;
  left: 0;
}

/* Checkbox */
.checkbox-group {
  position: absolute;
  top: 245px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 7px;
}

.checkbox-group input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 26px;
  height: 26px;
  background-color: var(--dark-gray);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-group input[type="checkbox"]:checked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2312f301'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
}

.checkbox-group label {
  font-size: 15px;
  color: var(--dark-gray);
  cursor: pointer;
  letter-spacing: -0.75px;
}

/* Submit Button */
.submit-btn {
  position: absolute;
  bottom: 20px;
  right: 40px;
  background-color: var(--dark-gray);
  color: var(--green);
  border: none;
  padding: 10px 30px;
  font-family: 'ModernGothic', 'Arial Black', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  cursor: pointer;
  transition: opacity 0.2s;
}

.submit-btn:hover {
  opacity: 0.85;
}

/* Thank You Page Styles */
.thank-you-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.thank-you-content {
  text-align: center;
}

.thank-you-content h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.thank-you-content p {
  font-size: 1rem;
}

/* ==================== MOBILE STYLES ==================== */
@media (max-width: 768px) {
  body {
    padding-bottom: 40px;
  }

  .container {
    height: auto;
    min-height: auto;
    max-width: 100%;
    overflow: visible;
  }

  /* Background image - full width at top */
  .bg-image-container {
    position: relative;
    left: 0;
    width: 100%;
    height: 50vh;
  }

  /* Logo - centered, smaller */
  .logo-container {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    max-width: 400px;
    height: auto;
  }

  .logo {
    width: 100%;
    height: auto;
  }

  /* Hide spring/vancouver on mobile - info is in logo */
  .spring,
  .vancouver {
    display: none;
  }

  /* Hide bottom left text on mobile */
  .tagline,
  .location {
    display: none;
  }

  /* Description */
  .description {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    padding: 10px 15px 15px;
    font-size: 16px;
    background-color: var(--black);
  }

  /* Presale - show after description on mobile */
  .presale {
    display: block;
    position: relative;
    top: auto;
    left: auto;
    padding: 0 15px 20px;
    font-size: 16px;
    background-color: var(--black);
  }

  /* Form - full width */
  .signup-form {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    padding: 20px 15px 100px;
  }

  .form-cta {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    font-size: 18px;
    margin-bottom: 20px;
  }

  .form-fields {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .form-group label {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    margin-bottom: 8px;
    font-size: 16px;
  }

  .form-group input[type="text"],
  .form-group input[type="email"] {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100%;
    height: 40px;
    font-size: 16px;
  }

  .checkbox-group {
    position: relative;
    top: auto;
    left: auto;
    margin-top: 20px;
  }

  .checkbox-group label {
    font-size: 13px;
  }

  .submit-btn {
    position: relative;
    bottom: auto;
    right: auto;
    left: auto;
    width: 100%;
    margin-top: 25px;
    padding: 15px;
    font-size: 16px;
  }
}
