@import url('./variables.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'League Spartan', sans-serif;
    background-color: var(--background);
    color: var(--text-color);
    line-height: 1.5;
  }

  .header {
    background-color: var(--widget-background);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
  }
  
  .logo {
    font-weight: bold;
    font-size: 4.5rem;
    margin-top: -1rem;
    margin-bottom: -1rem;
    letter-spacing: -3.4px;
  }
  
  .logo span {
    color: var(--text-color);
  }
  
  .nav-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 999px;
    margin-left: 1rem;
    transition: all 0.2s ease-in-out;
    display: inline-block;
  }
  
  .nav-buttons .login {
    background-color: var(--background);
    color: var(--text-color);
  }
  
  .nav-buttons .register {
    background-color: var(--text-color);
    color: var(--background);
  }
  
  .nav-buttons .btn:hover {
    opacity: 0.85;
    transform: scale(1.05);
  }
  
  .hero-section {
    text-align: center;
    padding: 4rem 2rem 0rem 2rem;
  }
  
  .main-heading {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 2rem;
  }
  
  .device-preview img {
    max-height: 300px;
    width: auto;
    height: auto;
    max-width: 100%;
  }
  
  .features-highlight {
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--background);
  }
  
  .features-highlight h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
  }
  
  .features-highlight .subtext {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 3rem;
  }
  
  .feature-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .feature {
    background-color: var(--widget-background);
    padding: 2rem;
    border-radius: 1.5rem;
    max-width: 320px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
  
  .feature h3 {
    font-size: 1.6rem;
    margin: 1rem 0;
  }
  
  .feature p {
    font-size: 1.2rem;
  }
  
  .feature img {
    height: 50px;
    margin-bottom: 1rem;
  }
  
  .steps-guide {
    padding: 4rem 2rem;
    background-color: white;
    text-align: center;
  }
  
  .steps-guide h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
  }
  
  .steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .step {
    background-color: var(--input-color-bright);
    border-radius: 1.5rem;
    padding: 2rem;
  }
  
  .step h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  
  .step h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .step p {
    font-size: 1.2rem;
  }
  
  .benefits {
    padding: 4rem 2rem;
    background-color: var(--background);
    text-align: center;
  }
  
  .benefits h2 {
    font-size: 3rem;
    margin-bottom: 2.5rem;
  }
  
  .benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
  }
  
  .benefit-grid article {
    background-color: var(--widget-background);
    padding: 2rem;
    border-radius: 1.25rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  }
  
  .benefit-grid h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .benefit-grid p {
    font-size: 1.1rem;
  }
  
  .footer {
    padding: 2rem;
    text-align: center;
    background-color: var(--widget-background);
    font-size: 1.1rem;
  }
  
  @media (max-width: 768px) {
    .hero-section {
        padding: 2.5rem 1.5rem;
      }
    
      .main-heading {
        font-size: 2.5rem;
        letter-spacing: -1px;
      }

      .device-preview img {
        max-height: none;
        width: 100%;
        height: auto;
      }
  
    .features-highlight h2,
    .steps-guide h2,
    .benefits h2 {
      font-size: 2.2rem;
    }
  
    .feature-grid {
      flex-direction: column;
      align-items: center;
    }
  
    .steps {
      padding: 0 1rem;
    }

    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 480px) {
    .header {
      flex-direction: column;
      gap: 1.5rem;
      padding: 1.5rem 1rem;
    }
  
    .logo {
      font-size: 2.75rem;
      text-align: center;
    }
  
    .nav-buttons {
      display: flex;
      flex-direction: column;
      width: 100%;
      align-items: center;
    }
  
    .nav-buttons .btn {
      width: 100%;
      max-width: 300px;
      font-size: 1.2rem;
      padding: 0.9rem 1.2rem;
      margin: 0.3rem 0;
      text-align: center;
    }
  
    .main-heading {
        font-size: 2rem;
        line-height: 1.2;
      }
    
      .device-preview img {
        max-width: 90%;
        margin: 0 auto;
      }
  
    .feature,
    .step,
    .benefit-grid article {
      max-width: 100%;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }
  }
  