*{
    padding:0;
    margin:0;
    box-sizing:border-box;
    font-family:poppins;
}
/********************************
Header
*********************************/
.main-hook-div{
    min-height:90vh;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:row;
    padding:4rem;
}
.container{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:row;
    gap:4rem;
    max-width:73rem;
}
/* header *{
    border:1px solid red;
} */
.headline{
   display:flex;
   flex-direction:column;
}
.headline h1{
    font-size:3rem;
    color:#1e1e2e;
    line-height:3.2rem;
}
.headline h2{
    color:hsl(240, 6%, 45%);
    margin-bottom:1rem;
}
.headline button{
    padding:0.4em 1em;
    border-radius:0.5em;
    margin-right:1rem;
    border:none;
    font-weight:600;
    font-size:1.5rem;
    letter-spacing: 0.1em;
    cursor:pointer;
}
.login-button{
    background:hsl(0,0%,50%);
    color:white;
}
.register-button{
    background:#ff9200;
    color:white;
}
.logo img{
    width:min(50vh,50vw);
}

@media screen and (max-width:900px){
    .container{
        flex-direction:column;
        text-align:center;
    }
}
    :root {
      --primary: #FFF582;
      --secondary: #FF9200;
      --accent: #5CE0E5;
      --text: #1A1A1A;
      --bg: #FFFFFF;
      --highlight: #f9f9f9;
    }

    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background-color: var(--bg);
      color: var(--text);
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.2rem 2rem;
      background-color: var(--bg);
      border-bottom: 1px solid #eee;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--secondary);
    }

    nav {
      display: flex;
      gap: 1.5rem;
    }

    nav a {
      text-decoration: none;
      color: var(--text);
      font-weight: 500;
    }

    .menu-btn {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
    }

    .hero {
      display: grid;
      place-items: center;
      text-align: center;
      padding: 5rem 2rem;
      background-color: var(--highlight);
    }

    .hero h1 {
      font-size: 2.8rem;
      max-width: 800px;
      margin-bottom: 1rem;
    }

    .hero p {
      font-size: 1.2rem;
      max-width: 700px;
    }

    .cta {
      margin-top: 2rem;
      padding: 0.8rem 1.8rem;
      font-size: 1rem;
      background-color: var(--secondary);
      border: none;
      border-radius: 8px;
      color: white;
      cursor: pointer;
      transition:0.3s;
    }

    .cta:hover {
      background-color: #e87d00;
    }
    
    #cta-about{
      text-decoration:none;
      color:white;
      font-weight:5   00;
    }
    .section {
      padding: 4rem 2rem;
      text-align: center;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .feature {
      background-color: var(--highlight);
      border-radius: 12px;
      padding: 2rem;
      transition: transform 0.3s;
    }

    .feature:hover {
      transform: translateY(-5px);
    }

    .feature h3 {
      color: var(--secondary);
    }

    footer {
      background-color: var(--highlight);
      padding: 2rem;
      text-align: center;
      font-size: 0.9rem;
    }

    /* Responsive */
    @media (max-width: 768px) {
      nav {
        display: none;
        flex-direction: column;
        background-color: white;
        position: absolute;
        top: 60px;
        right: 2rem;
        border: 1px solid #ccc;
        padding: 1rem;
      }

      nav.show {
        display: flex;
      }

      .menu-btn {
        display: block;
      }

      .hero h1 {
        font-size: 2.2rem;
      }
    }