/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

 /*
 * This is a manifest file that'll be compiled into application.css.
 *= require_tree .
 *= require_self
 */

 @font-face {
  font-family: 'Proxima Nova SCOSF Condensed Regular';
  src: url("/fonts/PROXIMA-NOVA-SCOSF-CONDENSED-REGULAR.OTF") format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima Nova SCOSF Condensed Light';
  src: url('/fonts/PROXIMA NOVA SCOSF CONDENSED LIGHT.OTF') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Bebas Neue Bold';
  src: url("/fonts/BEBASNEUE-BOLD.OTF") format('opentype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Bebas Neue Regular';
  src: url("/fonts/BEBASNEUE-REGULAR.OTF") format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima Nova Condensed Regular';
  src: url("/fonts/PROXIMA-NOVA-CONDENSED-REGULAR.OTF") format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Rocko Ultra FLF Bold';
  src: url("/fonts/ROCKOULTRAFLF-BOLD.TTF") format('truetype');
  font-weight: normal;
  font-style: normal;
}


body {
    font-family: 'Proxima Nova Condensed Regular', sans-serif;
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    color: #1c1c1c;
    min-height: 100vh;
    overflow-y: hidden;
  }
  
  .logo-container {
    text-align: left;
  }

  .checkbox-group {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 10px;
  }
  .checkbox-group label {
    min-width: unset;
    white-space: nowrap;
  }
  
  /* Responsive: stack below 700px width */
  @media (max-width: 700px) {
    .form-row {
      flex-direction: column;
    }
    .form-field, .checkbox-field {
      margin-right: 0 !important;
      min-width: 0 !important;
    }
    .checkbox-group {
      grid-template-columns: 1fr;
    }
  }
  

  textarea {
    font-family: 'Proxima Nova Condensed Regular', sans-serif;
    width: 100%;
    padding: 12px;
    border: 1.5px solid #1c1c1c;
    border-radius: 4px;
    background-color: #FFFFFF;
    color: #1c1c1c;
    min-height: 50px; /* makes it visibly bigger */
    resize: vertical;
    font-size: 1.2em;
  }  

  .logo, .mouseLogo {
    display: block;
    text-align: left;
    margin: 0 auto bpx;
    max-width: 300px; /* Adjust based on your logo size */
    display: inline-block; /* Ensures the logo behaves as an inline element */
    height: auto;
    margin-top: 0;
  }

  .mouseLogo{
    margin-top: 70px;
    margin-bottom: -10px;
    max-width: 300px;
  }
  
  h1, h2, h5{
    font-family: 'Bebas Neue Bold', sans-serif;;
    color: #1c1c1c;
    font-size: 3.5em;
    margin-bottom: 10px;
    margin-top: 0;
  }

  h2{
    margin-top: -50px;
  }

  h3{
    text-align: center;
    font-family: 'Proxima Nova SCOSF Condensed Light', sans-serif;
    color: #1c1c1c;
    font-size: 1em;
    margin-bottom: 10px;
    margin-top: -10px

  }

  .raffle-heading{
    font-family: 'Rocko Ultra FLF Bold', sans-serif;
    color: #1c1c1c;
    font-size: 3.5em;
    margin-bottom: 20px;
    margin-top: 60px;
  }


  
  .subtext {
    font-family: 'Proxima Nova Condensed Regular', Arial, sans-serif;
    font-weight: 600;
    color: #1c1c1c;
    font-size: 1.8em;
    margin-bottom: 45px;
  }
  
  label{
    display: block;
    margin-bottom: 5px;
    color: #1c1c1c;
    font-size: 1.5em;
    font-family: 'Proxima Nova Condensed Bold', sans-serif;
    font-weight: 500;
  }


  
  input[type="text"], input[type="email"], input[type="url"], input[type="tel"] {
    font-family: 'Proxima Nova Condensed Regular', sans-serif;
    width: 100%;
    padding: 8px;
    border: 1.5px solid #1c1c1c;
    border-radius: 4px;
    background-color: #FFFFFF;
    color: #1c1c1c;
  }

  input {
    font-size: 1.4em;
  }
  
  .form-actions {
    text-align: center;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
  }

  ::placeholder {
    color: #aeaeae;           /* Light gray */
    font-weight: 400px;
  }  

  input[type="submit"], button[type="submit"] {
    font-family: 'Proxima Nova SCOSF Condensed Regular';
    background-color: #9c481a;
    color: #FFFFFF;
    padding: 10px;      /* Make the button taller and wider */
    font-size: 1.8em; 
    border: none;
    border-radius: 4px;
    margin-top: 0;
    cursor: pointer;
    
  }
  
  
  input[type="submit"]:hover {
    background-color: #7e3813;
  }
  
  .error {
    color: #880000;
    font-size: 1em;
  }
  
  .btn {
    font-family: 'Proxima Nova SCOSF Condensed Regular';
    background-color: #9c481a;
    color: #FFFFFF;
    padding: 10px 25px;      /* Make the button taller and wider */
    font-size: 1.8em; 
    border: none;
    border-radius: 4px;
    margin-top: 6px;
    cursor: pointer;
    text-decoration: none;
  }

  
  .btn:hover {
    background-color: #7e3813;
  }

  

  .form-row {
    display: flex;
    gap: 50px;
    margin-bottom: 20px;
    margin-right: 16px;
  }
  
  .form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  @media (max-width: 700px) {
    .form-row {
      flex-direction: column;
      gap: 16px;
      margin-bottom: 16px;
    }
  }

/* --- Keep title centered and on one line --- */
.page-header {
  /* match the body width and center the header block */
  max-width: 1000px;
  margin: 16px auto 24px;
}

/* Put H1 and H3 on a single row, centered, no wrapping */
.title-wrap {
  display: flex;
  align-items: baseline;     /* nicer alignment since H1 is larger */
  gap: 12px;
  white-space: nowrap;       /* prevent line breaks */
  overflow: hidden;          /* avoid layout spill on tiny screens */
  text-overflow: ellipsis;
  min-width: 0;    
  flex-direction: column;     
  justify-content: center;   
  align-items: center;
}

/* Keep your existing typography, but make it scale so it stays one line */
.title-wrap h1 {
  margin: 0;
  margin-top: 10px;
  font-family: 'Bebas Neue Bold', sans-serif;
  color: #1c1c1c;
  font-size: clamp(2rem, 6vw, 3.5em);   /* scales down on small screens */
  line-height: 1.1;
}

.title-wrap h3 {
  margin: 0;
  font-family: 'Proxima Nova SCOSF Condensed Light', sans-serif;
  color: #1c1c1c;
  font-size: clamp(1rem, 3.5vw, 2em); /* scales down on small screens */
  line-height: 1.2;
  
}

/* Keep the 3-column centering trick you already have */
.page-header {
  --logo-width: 250px;
  display: grid;
  grid-template-columns: var(--logo-width) 1fr var(--logo-width);
  align-items: center;
  gap: 16px;
  padding: 0;
}

/* Logo hard-left, size matches the --logo-width */
.logo-wrap .logo {
  width: var(--logo-width);
  max-width: 100%;
  height: auto;
  margin: 0;
  display: block;
}

/* Invisible right "balancer" keeps the middle column perfectly centered */
.balancer { width: var(--logo-width); }

/* Mobile: if it truly can’t fit, stack gracefully */
@media (max-width: 700px) {
  .page-header {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }
  .balancer { display: none; }
  .title-wrap {
    white-space: normal;         /* allow wrapping on very small screens */
  }
}

/* Put this near the end of application.css or in a new file loaded last */
body .pac-container { font-size: 1.4rem !important; }
body .pac-container .pac-item { font-size: 1.4rem !important; line-height: 2.2rem !important; padding: 12px 10px !important; }
body .pac-container .pac-item-query { font-size: 1.4rem !important; font-weight: 600 !important; }
