@font-face {
  font-family: "Cinderblock";
  src: url("assets/cinderblock-50.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "F37 Ginger";
  src: url("assets/F37Ginger-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-color: #ffffff;
  --secondary-color: #1a1a1a;
  --accent-color: #4caf50;
  --text-color: #ffffff;
  --background-color: #000000;
  --overlay-color: rgba(0, 0, 0, 0.5);
  --max-width: 720px;
  --heading-font: "Cinderblock", sans-serif;
  --body-font: "F37 Ginger", sans-serif;
}

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

body {
  font-family: var(--body-font);
  /* line-height: 1.6; */
  color: var(--text-color);
  background-color: var(--background-color);
  min-height: 100vh;
  overflow-x: hidden;
}

.site-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  /* padding-top: 80px; */
}

a {
  color: white !important;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 2rem;
}

.logo-container {
  max-width: 180px;
}

.logo {
  width: 100%;
  height: auto;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.main-content {
  position: relative;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -80px;
  padding: 80px 0;
}

.fullscreen-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.fullscreen-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  min-width: 100vw;
  min-height: 100vh;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
  object-fit: cover;
  border: none;
}

@media (max-aspect-ratio: 16/9) {
  .fullscreen-video iframe {
    width: auto;
    height: 100%;
  }
}

@media (min-aspect-ratio: 16/9) {
  .fullscreen-video iframe {
    width: 100%;
    height: auto;
  }
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.chevron-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  cursor: pointer;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

.chevron-down svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: var(--text-color);
  stroke-width: 2;
}

@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

.signup-section-wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background-color);
  padding: 2rem;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .signup-section-wrapper {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
  }

  .video-container {
    flex: none;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 2rem !important;
    padding: 0 2rem;
  }

  .form-quote-container {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    align-items: flex-start;
    padding: 0 2rem;
  }

  .signup-section {
    flex: 1;
    max-width: none;
    margin: 0;
    padding: 2rem;
  }

  .quote-cta-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  blockquote {
    flex: none;
    width: 100%;
    margin: 0;
    padding: 0 0 0 1.5rem;
    border-left: 3px solid var(--text-color);
  }

  .cta-link {
    flex: none;
    margin-top: 0;
    text-align: left;
  }
}

.video-container {
  margin: 1rem auto;
  width: 100%;
  padding: 0;
}

.signup-section {
  width: 100%;
  /* max-width: 600px; */
  margin: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 1.5rem;
  border-radius: 8px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

h1 {
  font-family: var(--heading-font);
  font-size: 6rem;
  font-weight: normal;
  margin-bottom: 1rem;
  letter-spacing: 0em;
  text-transform: uppercase;
}

.subtitle {
  font-family: var(--body-font);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: normal;
  text-transform: uppercase;
}

.description {
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.email-signup h2 {
  font-family: var(--heading-font);
  font-size: 2rem;
  margin-bottom: 0.8rem;
  font-weight: normal;
  text-transform: uppercase;
  text-align: left;
}

.email-signup p {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

input[type="email"] {
  flex: 1;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font-size: 1rem;
  color: var(--text-color);
}

input[type="email"]::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

input[type="email"]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

input[type="email"]:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

input[type="email"]::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

button {
  padding: 1rem 2rem;
  background-color: var(--text-color);
  color: var(--background-color);
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background-color: rgba(255, 255, 255, 0.8);
  /* color: black; */
}

p {
  margin-bottom: 1.5rem;
}

.terms {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
  margin-top: 1rem;
}

.terms p {
  margin-bottom: 0.8rem;
}

.terms a {
  color: var(--text-color);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.3s ease;
}

.terms a:hover {
  border-color: var(--text-color);
}

blockquote {
  font-style: italic;
  /* margin: 2rem 0; */
  /* padding: 1rem 0; */
  /* border-left: 3px solid var(--text-color); */
  /* padding-left: 1.5rem; */
}

blockquote p {
  margin-bottom: 1rem;
}

blockquote footer {
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.cta-link {
  /* margin-top: 2rem; */
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: transparent;
  color: var(--text-color);
  text-decoration: none;
  border: 1px solid var(--text-color);
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: var(--text-color);
  color: black !important;
}

.site-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.success-message,
.error-message {
  padding: 1rem;
  border-radius: 4px;
  margin-top: 1rem;
  text-align: center;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.success-message {
  background-color: rgba(76, 175, 80, 0.2);
  border: 1px solid var(--accent-color);
}

.error-message {
  background-color: rgba(255, 0, 0, 0.2);
  border: 1px solid rgba(255, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .site-header {
    padding: 1rem;
  }

  .hero-content {
    max-width: 480px;
  }

  .logo-container {
    max-width: 140px;
  }

  h1 {
    font-size: 2.5rem;
  }

  .description {
    font-size: 0.8rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  .content-wrapper {
    padding: 4rem 1rem 1rem;
  }

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

  button {
    width: 100%;
  }

  .signup-section-wrapper {
    padding: 1rem;
  }

  .signup-section {
    padding: 1.5rem;
    width: 100%;
    max-width: none;
  }

  .email-signup h2 {
    font-size: 2rem;
  }

  .video-container {
    margin: 0.5rem auto;
  }

  .site-container {
    padding-top: 0px;
  }

  blockquote {
    margin: 1rem 0;
    padding: 0.5rem 0;
    padding-left: 1rem;
    border-left: none;
    text-align: center;
  }

  .terms {
    font-size: 0.65rem;
  }

  .cta-link {
    text-align: center !important;
    margin-top: 1rem;
  }

  .quote-cta-container {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding: 0 1.5rem;
    width: 100%;
    max-width: none;
  }

  .quote-cta-container blockquote {
    padding-left: 0;
    margin-bottom: 1rem;
    text-align: center !important;
  }

  .quote-cta-container .cta-link {
    margin-top: 0;
  }
}

/* Mailchimp Form Styling */
#mc_embed_signup {
  background: transparent !important;
  clear: left;
  font-family: var(--body-font) !important;
  width: 100% !important;
  padding: 0 !important;
}

#mc_embed_signup h2 {
  font-family: var(--heading-font) !important;
  font-size: 2rem !important;
  margin-bottom: 0.8rem !important;
  font-weight: normal !important;
  text-transform: uppercase !important;
  color: var(--text-color) !important;
  text-align: left !important;
}

#mc_embed_signup .mc-field-group {
  margin-bottom: 1rem !important;
  text-align: left !important;
}

#mc_embed_signup label {
  display: block !important;
  margin-bottom: 0.4rem !important;
  color: var(--text-color) !important;
  font-family: var(--body-font) !important;
  font-size: 0.8rem !important;
}

#mc_embed_signup input[type="email"],
#mc_embed_signup input[type="text"] {
  width: 100% !important;
  padding: 0.6rem !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 4px !important;
  font-size: 0.8rem !important;
  color: var(--text-color) !important;
  font-family: var(--body-font) !important;
}

#mc_embed_signup input[type="email"]::-webkit-input-placeholder,
#mc_embed_signup input[type="text"]::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

#mc_embed_signup input[type="email"]::-moz-placeholder,
#mc_embed_signup input[type="text"]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

#mc_embed_signup input[type="email"]:-ms-input-placeholder,
#mc_embed_signup input[type="text"]:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

#mc_embed_signup input[type="email"]::-ms-input-placeholder,
#mc_embed_signup input[type="text"]::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

#mc_embed_signup input[type="email"]::-webkit-input-placeholder,
#mc_embed_signup input[type="text"]::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

#mc_embed_signup input[type="email"]::-moz-placeholder,
#mc_embed_signup input[type="text"]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

#mc_embed_signup input[type="email"]:-ms-input-placeholder,
#mc_embed_signup input[type="text"]:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

#mc_embed_signup input[type="email"]::-ms-input-placeholder,
#mc_embed_signup input[type="text"]::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

#mc_embed_signup input[type="email"]::-webkit-input-placeholder,
#mc_embed_signup input[type="text"]::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

#mc_embed_signup input[type="email"]::-moz-placeholder,
#mc_embed_signup input[type="text"]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

#mc_embed_signup input[type="email"]:-ms-input-placeholder,
#mc_embed_signup input[type="text"]:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

#mc_embed_signup input[type="email"]::-ms-input-placeholder,
#mc_embed_signup input[type="text"]::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

#mc_embed_signup input[type="email"]::-webkit-input-placeholder,
#mc_embed_signup input[type="text"]::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

#mc_embed_signup input[type="email"]::-moz-placeholder,
#mc_embed_signup input[type="text"]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

#mc_embed_signup input[type="email"]:-ms-input-placeholder,
#mc_embed_signup input[type="text"]:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

#mc_embed_signup input[type="email"]::-ms-input-placeholder,
#mc_embed_signup input[type="text"]::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

#mc_embed_signup input[type="email"]::-webkit-input-placeholder,
#mc_embed_signup input[type="text"]::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

#mc_embed_signup input[type="email"]::-moz-placeholder,
#mc_embed_signup input[type="text"]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

#mc_embed_signup input[type="email"]:-ms-input-placeholder,
#mc_embed_signup input[type="text"]:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

#mc_embed_signup input[type="email"]::-ms-input-placeholder,
#mc_embed_signup input[type="text"]::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

#mc_embed_signup input[type="email"]::placeholder,
#mc_embed_signup input[type="text"]::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

#mc_embed_signup .button {
  width: 100% !important;
  padding: 0.8rem 1.5rem !important;
  background-color: var(--text-color) !important;
  color: var(--background-color) !important;
  border: none !important;
  border-radius: 4px !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  font-family: var(--body-font) !important;
}

#mc_embed_signup .button:hover {
  background-color: rgba(255, 255, 255, 0.8) !important;
}

#mc_embed_signup .asterisk {
  color: var(--text-color) !important;
}

#mc_embed_signup .indicates-required {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.75rem !important;
  text-align: right !important;
  margin-top: 0.5rem !important;
}

#mc_embed_signup .clear {
  margin-top: 1rem !important;
}

#mc_embed_signup .response {
  margin-top: 0.8rem !important;
  padding: 0.8rem !important;
  border-radius: 4px !important;
  text-align: left !important;
  -webkit-backdrop-filter: blur(5px) !important;
  backdrop-filter: blur(5px) !important;
}

#mc_embed_signup #mce-error-response {
  background-color: rgba(255, 0, 0, 0.2) !important;
  border: 1px solid rgba(255, 0, 0, 0.5) !important;
}

#mc_embed_signup #mce-success-response {
  background-color: rgba(76, 175, 80, 0.2) !important;
  border: 1px solid var(--accent-color) !important;
}

@media (max-width: 768px) {
  #mc_embed_signup h2 {
    font-size: 1.5rem !important;
    text-align: center !important;
  }

  #mc_embed_signup input[type="email"],
  #mc_embed_signup input[type="text"] {
    padding: 0.4rem !important;
    font-size: 0.65rem !important;
  }

  #mc_embed_signup .button {
    padding: 0.6rem 1rem !important;
    font-size: 0.8rem !important;
  }

  blockquote {
    margin: 1rem 0;
    padding: 0.5rem 0;
    padding-left: 1rem;
    border-left: none;
    text-align: center;
  }

  .terms {
    font-size: 0.65rem;
  }

  .cta-link {
    text-align: center !important;
    margin-top: 1rem;
  }

  .quote-cta-container {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding: 0 1.5rem;
    width: 100%;
    max-width: none;
  }

  .quote-cta-container blockquote {
    padding-left: 0;
    margin-bottom: 1rem;
    text-align: center !important;
  }

  .quote-cta-container .cta-link {
    margin-top: 0;
  }
}

/* Add styles for the new quote-cta-container */
.quote-cta-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  padding: 1.5rem;
}
