/* lp.css - Landing Page Specific Styles */

/* Main container with optional background image */
.lp-main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.lp-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0eded; /* Fallback color from main.css */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Content wrapper for centering */
.lp-content-wrapper {
  max-width: 800px;
  width: 100%;
  text-align: center;
}

/* Header styling using main.css fonts and hierarchy */
.lp-header {
 
}

.lp-headline {
  font-family: 'IM Fell DW Pica SC', serif; /* H1 style from main.css */
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.lp-summary {
  font-family: 'IM Fell DW Pica SC', serif; /* H2 style from main.css */
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 0;
  padding-top: 0; /* Override main.css h2 padding-top */
  line-height: 1.4;
  font-weight: normal;
}

/* Form section */
.lp-form-section {
  margin-bottom: 1rem;
}

.lp-form-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Page content section */
.lp-content-section {
  margin-bottom: 1rem;
}

.lp-page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}

.lp-page-content h2 {
  font-family: 'IM Fell DW Pica SC', serif;
  font-size: 1.25rem;
  padding-top: 1rem;
}

.lp-page-content h3 {
  font-family: 'IM Fell DW Pica SC', serif;
  font-size: 1.15rem;
  padding-top: 0.8rem;
}

.lp-page-content h4, 
.lp-page-content h5, 
.lp-page-content h6 {
  font-family: 'IM Fell DW Pica SC', serif;
  font-size: 1.05rem;
}

.lp-page-content p {
  font-family: 'Lora-Medium', serif;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.lp-page-content a {
  color: #031346;
  text-decoration: underline;
}

.lp-page-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.25rem auto;
}

/* Footer spacing */
.site-footer {
  margin-top: 1rem;
  padding-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .lp-container {
    padding: 2rem 1rem;
    /* Remove background image on mobile */
    background-image: none !important;
    background-color: #f0eded;
  }
  
  .lp-headline {
    font-size: 2rem;
  }
  
  .lp-summary {
    font-size: 1.25rem;
  }
  
  .lp-header {
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .lp-container {
    padding: 1.5rem 0.5rem;
  }
  
  .lp-headline {
    font-size: 1.75rem;
  }
  
  .lp-summary {
    font-size: 1.1rem;
  }
}