* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  background: url("../images/bg.jpg") no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
  font-family: "Montserrat", sans-serif;
}

.main-content {
  max-width: 1240px;
  margin: auto;
  padding: 48px 24px 0;
}
.logo {
  width: 100%;
  height: auto;
  max-width: 600px;
  display: block;
  margin: 0 auto;
  max-width: 860px !important;
}

/* Responsive logo sizing */
@media (max-width: 1200px) {
  .logo {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .logo {
    max-width: 300px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .logo {
    max-width: 250px;
    margin-bottom: 15px;
  }
}

.form {
  margin-top: 40px;
}
.form__content {
  max-width: 480px;
  margin: auto;
  display: none;
}
.form.active .form__content {
  display: block;
}

.register-button {
  display: block;
  margin: auto;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #000000;
  background-color: #ffffff;
  padding: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s;
  cursor: pointer;
  min-width: 240px;
}
.register-button:hover {
  background-color: #B3E3FA;
}
.form.active .register-button {
  display: none;
}

#mc_embed_signup_scroll {
  display: flex;
  gap: 12px;
}

p {
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 24px;
}

#mc-embedded-subscribe-form h2 {
  display: none;
}
#mc-embedded-subscribe-form .mc-field-group {
  flex: 1 1 0;
  min-width: 190px !important;
}
#mc-embedded-subscribe-form .mc-field-group label {
  display: none;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 6px;
}
#mc-embedded-subscribe-form .mc-field-group input {
  height: 43px;
  border-radius: 0;
  border: 1px solid #ffffff;
  width: 100%;
  color: #ffffff;
  font-size: 1rem;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 0 16px;
}
#mc-embedded-subscribe-form .mc-field-group input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
#mc-embedded-subscribe-form .mc-field-group input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}
#mc-embedded-subscribe-form .mc-field-group input:focus-visible {
  outline: none;
  border-radius: 0;
}
#mc-embedded-subscribe-form .indicates-required {
  display: none;
}
#mc-embedded-subscribe-form input[type="submit"],
#mc-embedded-subscribe-form .button,
#mc-embedded-subscribe {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-block;
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #000000;
  padding: 12px 24px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s;
  cursor: pointer;
  min-width: 110px;
}
#mc-embedded-subscribe-form input[type="submit"]:hover,
#mc-embedded-subscribe-form .button:hover,
#mc-embedded-subscribe:hover {
  background-color: #B3E3FA;
}

#form-response {
  display: none;
  padding: 10px;
  margin-top: 10px;
  border-radius: 5px;
  font-size: 14px;
}

#form-response.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

#form-response.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Access Code Modal Styles */
.access-code-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.access-code-modal__content {
  background-color: #ffffff;
  margin: 5% auto;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.access-code-modal__content h3 {
  color: #000000;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 700;
}

.access-code-modal__content p {
  color: #666666;
  margin-bottom: 20px;
  font-size: 16px;
  text-transform: none;
}

#access-code-input {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 20px;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s;
}

#access-code-input:focus {
  outline: none;
  border-color: #B3E3FA;
}

.access-code-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.verify-button, .cancel-button {
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s;
  min-width: 100px;
}

.verify-button {
  background-color: #B3E3FA;
  color: #000000;
}

.verify-button:hover {
  background-color: #9dd4f7;
}

.cancel-button {
  background-color: #f0f0f0;
  color: #666666;
}

.cancel-button:hover {
  background-color: #e0e0e0;
}

.access-code-response {
  display: none;
  margin-top: 15px;
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
}

.access-code-response.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.access-code-response.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

div#mc_embed_signup {
  margin-left: -50px;
}

/* Welcome Modal Styles */
.welcome-modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.welcome-modal__content {
  background-color: #ffffff;
  margin: 5% auto;
  padding: 40px;
  border-radius: 10px;
  width: 90%;
  height: 90%;
  max-width: none;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.close-welcome-button {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 30px;
  font-weight: bold;
  color: #666666;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}

.close-welcome-button:hover {
  background-color: #f0f0f0;
  color: #000000;
}

.welcome-logo {
  width: 360px;
  height: auto;
  margin-bottom: 30px;
}

.welcome-letter {
  text-align: left;
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.welcome-letter h1 {
  color: #000000;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.welcome-letter .greeting {
  color: #000000;
  font-weight: 600;
  margin-bottom: 20px;
}

.welcome-letter p {
  color: #333333;
  font-size: 16px;
  margin-bottom: 20px;
  text-align: left;
  line-height: 1.6;
}

.welcome-signup {
  width: 100%;
  max-width: 400px;
}

#welcome-mc_embed_signup_scroll {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#welcome-mc_embed_signup_scroll .mc-field-group {
  width: 100%;
}

#welcome-mc_embed_signup_scroll .mc-field-group label {
  display: none;
}

#welcome-mc_embed_signup_scroll .mc-field-group input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s;
  background-color: #ffffff;
  color: #000000;
}

#welcome-mc_embed_signup_scroll .mc-field-group input:focus {
  outline: none;
  border-color: #B3E3FA;
}

#welcome-mc_embed_signup_scroll .mc-field-group input::placeholder {
  color: #999999;
}

#welcome-mc-embedded-subscribe {
  width: 100%;
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #000000;
  padding: 12px 24px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s;
  cursor: pointer;
  border-radius: 5px;
}

#welcome-mc-embedded-subscribe:hover {
  background-color: #B3E3FA;
}

@media (max-width: 768px) {
  .welcome-modal__content {
    margin: 2% auto;
    padding: 20px;
    width: 95%;
    height: 95%;
  }
  
  .welcome-logo {
    width: 150px;
    margin-bottom: 20px;
  }
  
  .welcome-letter h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .welcome-letter p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }
  
  #mc_embed_signup_scroll {
    flex-direction: column;
    gap: 8px;
  }
  
  .main-content {
    padding: 24px 16px 0;
  }
  
  .logo {
    margin-bottom: 30px;
  }
}/*# sourceMappingURL=styles.css.map */