/* become-host.css */

/* Global Styles */
:root {
    --primary-color: #9DC183;
    --primary-dark: #88aa6f;
    --secondary-color: #FF5A5F;
    --text-dark: #222222;
    --text-light: #717171;
    --text-white: #ffffff;
    --bg-light: #f7f7f7;
    --border-color: #dddddd;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.5;
  }
  
  .section-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
  }
  
  .section-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
  }
  
  /* Hero Section - Brighter with enhanced clickability */
.hero-section {
    position: relative;
    background: url('../images/be-a-host.png');
    background-size: cover;
    background-position: center;
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Add brightness filter to make the image brighter */
    background-blend-mode: lighten;
    background-color: rgba(255, 255, 255, 0.2);
  }
  
  /* Add a white text shadow to improve visibility without dimming */
  .hero-title, .hero-subtitle {
    text-shadow: 
      0px 1px 1px rgba(0, 0, 0, 0.8),
      0px 0px 5px rgba(0, 0, 0, 0.3);
    text-align:start;

  }
  
  .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    max-width: 600px;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 500px;
  }
  
  .hero-btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-size: 1.1rem;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-shadow: none; /* Remove text shadow from button */
    position: relative;
    z-index: 10; /* Ensure button is clickable */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    align-self: start;
  }
  
  .hero-btn:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  }
  
  .wave-container {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 4; /* Below the content but above any potential background element */
  }
  
  /* Calculator Section */
  .calculator-section {
    background-color: var(--bg-light);
    padding: 80px 0;
  }
  
  .calculator-container {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-top: 40px;
  }
  
  .form-floating label {
    color: var(--text-light);
  }
  
  .earnings-estimate {
    background: linear-gradient(to right, #f3f9eb, #e8f3dc);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin-top: 30px;
  }
  
  .earnings-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0;
  }
  
  .earnings-amount span {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
  }
  
  .estimate-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 10px;
  }
  
  /* Benefits Section */
  .benefits-section {
    padding: 80px 0;
    background-color: #ffffff;
  }
  
  .benefit-item {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    transition: all 0.3s ease;
  }
  
  .benefit-item:hover {
    transform: translateY(-5px);
  }
  
  .benefit-icon {
    background-color: var(--primary-color);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
  }
  
  .benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .benefit-item p {
    color: var(--text-light);
    font-size: 0.95rem;
  }
  
  /* How it Works Section */
  .how-it-works-section {
    padding: 80px 0;
    background-color: var(--bg-light);
  }
  
  .steps-container {
    margin-top: 50px;
  }
  
  .step-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    padding: 30px;
    text-align: center;
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
  }
  
  .step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .step-number {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
  }
  
  .step-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
  }
  
  .step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .step-description {
    color: var(--text-light);
    font-size: 0.95rem;
  }
  
  /* Testimonials Section */
  .testimonials-section {
    padding: 80px 0;
    background-color: #ffffff;
  }
  
  .testimonial-card {
    background-color: var(--bg-light);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
  }
  
  .testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
  }
  
  .testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .testimonial-stars {
    color: #FFD700;
    margin-bottom: 15px;
  }
  
  .testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
  }
  
  .testimonial-name {
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  .testimonial-location {
    color: var(--text-light);
    font-size: 0.85rem;
  }
  
  /* FAQ Section */
  .faq-section {
    padding: 80px 0 ;
    background-color: var(--bg-light);
  }
  
  .accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  }
  
  .accordion-button {
    font-weight: 500;
    padding: 16px 24px;
    background-color: #ffffff;
  }
  
  .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
  }
  
  .accordion-button::after {
    background-size: 20px;
  }
  
  .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.1);
  }
  
  .accordion-body {
    padding: 20px 24px;
  }
  
  /* Get Started Section - Updated with box instead of form */
  .get-started-section {
    padding: 80px 0;
    background-color: #ffffff;
  }
  
  .cta-content {
    padding: 30px 0;
  }
  
  .cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--text-light);
  }
  
  .cta-benefits {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
  }
  
  .cta-benefits li {
    margin-bottom: 15px;
    font-size: 1.05rem;
  }
  
  .cta-benefits li i {
    color: var(--primary-color);
    margin-right: 10px;
  }
  
  .get-started-box {
    background-color: var(--bg-light);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .get-started-box h3 {
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .get-started-box p {
    color: var(--text-light);
    margin-bottom: 25px;
  }
  
  .signup-btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 14px 20px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .signup-btn:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .signup-btn2 {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 14px 20px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    margin: 0 auto;
  }
  
  .signup-btn2:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .login-link {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
  }
  
  .login-link:hover {
    text-decoration: underline;
  }
  
  /* Final CTA Banner */
  .final-cta-section {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
  }
  
  .final-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .final-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.9;
  }
  
  .final-cta-section .btn {
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .final-cta-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }
  
  /* Responsive styles */
  @media (max-width: 992px) {
    .hero-title {
      font-size: 2.8rem;
    }

    .steps-container {
      gap:10px;
    }
    
    .hero-subtitle {
      font-size: 1.3rem;
    }
    
    .calculator-container {
      padding: 20px;
    }
    
    .earnings-amount {
      font-size: 2rem;
    }
    
    .final-cta-section h2 {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 768px) {
    .hero-section {
        text-align: center;
        min-height: 90vh;
        height:90vh !important;
    }

    .hero-section-limit {
      min-height: 90vh;
      height:90vh !important;
    }
    .hero-title {
      font-size: 2.2rem;
      text-align: center;
    }
    
    .hero-subtitle {
      font-size: 1.1rem;
      text-align: center;

    }
    
    .get-started-box {
      margin-top: 40px;
      padding: 30px;
    }
    
    .benefit-item, .step-card {
      margin-bottom: 20px;
    }
    
    .step-card-parent {
        margin-bottom:10px;
    }
  }
  
  @media (max-width: 576px) {
    .hero-section {
      text-align: center;
      height:90vh !important;
      min-height: 90vh;

    }

    .hero-section-limit {
        min-height: 90vh;
        height:90vh !important;
      }
    
    .hero-title {
      font-size: 1.8rem;
    }
    
    .hero-btn {
      width: 100%;
    }
    
    .earnings-amount {
      font-size: 1.8rem;
    }
    
    .final-cta-section h2 {
      font-size: 1.5rem;
    }
    
    .get-started-box {
      padding: 20px;
    }
  }


  /* Custom slider styling */
  .custom-range {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #e9ecef;
    outline: none;
    transition: background 0.2s;
  }

  .custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #9DC183; /* Vad primary color */
    cursor: pointer;
    transition: all 0.15s ease;
  }

  .custom-range::-webkit-slider-thumb:hover {
    box-shadow: 0 0 0 5px rgba(157, 193, 131, 0.2); /* Updated to match #9DC183 with transparency */
    transform: scale(1.1);
  }

  .custom-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #9DC183;
    cursor: pointer;
    border: none;
    transition: all 0.15s ease;
  }

  .custom-range::-moz-range-thumb:hover {
    box-shadow: 0 0 0 5px rgba(157, 193, 131, 0.2); /* Updated to match #9DC183 with transparency */
    transform: scale(1.1);
  }
  
  .custom-range::-ms-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #9DC183;
    cursor: pointer;
    border: none;
    transition: all 0.15s ease;
  }

  .custom-range:focus {
    outline: none;
  }

  #nightsValue {
    font-weight: 600;
    color: #9DC183;
  }
