/* Base Styles */
body {
  margin: 0;
  padding: 0;
  background-color: #000;
  font-family: 'Arial', sans-serif;
  color: #eaeaea;
  text-align: center;
}

/* Headings */
h1 {
  
  font-family: 'Big Shoulders Text', sans-serif;
  font-weight: bold;
  font-size: 74px;
  text-transform: uppercase;
   letter-spacing: -0.02em;
    line-height: 90%;
    text-align: center;
  margin: 60px;
  color: #f2f2f2;
}

   
h2 {
  font-size: 30px;
  font-family: 'Big Shoulders Text', sans-serif;
  font-weight: 600;
  margin-top: 10px;
  text-transform: uppercase;
  color: #eaeaea;
}

h3 {
  font-size: 30px;
  font-family: 'Big Shoulders Text', sans-serif;
  font-weight: 600;
  text-align: left;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid #999;
  padding-bottom: 6px;
  margin-top: 40px;
  margin-bottom: 20px;
}

/* Subtext */
.subtitle,
p {
  font-size: 18px;
   font-family: 'DM Sans', sans-serif;
  margin: 10px 0 30px;
  color: #ccc;
}

/* Button Row */
.button-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.account-button {
  background-color: #333;
   font-family: 'DM Sans', sans-serif;
  color: #fff;
  border: none;
  padding: 18px 30px;
  font-size: 20px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 380px;
}

.account-button:hover {
  background-color: #444;
}

/* Form Containers */
.form-container {
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 30px 25px;
  background-color: #000;
  text-align: left;
  box-sizing: border-box;
}

/* Form Rows */
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 25px;
}

.form-group {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
}

/* Labels */
label {
  font-size: 18px;
   font-family: 'DM Sans', sans-serif;
  
  font-weight: normal;
  margin-bottom: 8px;
  color: #eaeaea;
}

.required {
  color: #ff4d4d;
  margin-left: 4px;
}

/* Inputs and Selects */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="date"],
select {
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 0px;
  padding: 14px;
  font-size: 16px;
  box-sizing: border-box;
  width: 100%;
  outline: none;
}

input::placeholder {
  color: #aaa;
}

select {
  appearance: none;
  background-color: #333;
  color: #fff;
}

/* Small text */
small {
  color: #bbb;
  font-size: 12px;
  margin-top: 5px;
}

/* Buttons */
.login-button,
.register-button {
  background-color: #d4ff00;
  color: #000;
  border: none;
  padding: 16px;
  font-size: 20px;
  font-family: 'Big Shoulders Text', sans-serif;
  font-weight: normal;
  cursor: pointer;
  text-transform: uppercase;
  width: 15%;
  max-width: 300px;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.login-button:hover,
.register-button:hover {
  background-color: #c4ef00;
}

/* Links */
a {
  color: #d4ff00;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

/* ---------------------
   Mobile Responsive
--------------------- */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 18px;
  }

  .form-container {
    padding: 20px 15px;
  }

  .form-row {
    flex-direction: column;
    gap: 12px; /* Reduce row gap */
    margin-bottom: 16px; /* Optional: reduce overall spacing */
  }

  .form-group {
    width: 100%;
    margin-bottom: -190px; /* Reduce space between inputs */
  }

  .button-row {
    flex-direction: column;
    align-items: center;
    gap: 12px; /* Optional: reduce gap between buttons */
  }

  
  .login-button,
  .register-button {
    width: 50% !important;
    max-width: 100%;
    font-size: 20px;
    
     margin: 0 auto; /* ✅ centers the button */
  display: block;
    
  }

  .account-button {
    width: 90%;
    max-width: 100%;
    font-size: 16px;
    padding: 14px;
     margin: 0 auto; /* ✅ centers the button */
  display: block;
    
  }
}





/* Base Header Styles */
.site-header {
  background-color: #000;
  padding: 10px 20px;
 
}


.site-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.site-header-logo img {
  height: 58px;
  max-height: 60px;
  object-fit: contain;
  margin-left: -20px;
    margin-top: -12px;
}

.site-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-btn {
  color: #fff;
  font-family: 'Big Shoulders Display', sans-serif;
  font-size: 20px;
  margin-top: -10px;
  text-transform: uppercase;
  text-decoration: none;
   line-height: normal; 
     letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.contact-btn:hover {
  color: #e0ff00;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .site-header-container {
    display: flex;
    flex-direction: row; /* make logo and HOME side by side */
    align-items: center;
    justify-content: space-between; /* put space between logo and HOME */
    
  }

  .site-header-logo img {
    max-height: 43px; /* adjust logo size for mobile */
    margin-left: -19px;
    margin-top: -10px;
  }

  .site-header-right {
    margin-top: 0; /* remove vertical spacing */
  }

  .contact-btn {
    font-size: 20px;
    text-decoration: none !important;
  }
}
