
          /* Hero Section */

        .hero-section{
            display: flex;
            /* padding: 8rem 1rem 5rem; */
            flex-direction: column;
        }
        
        .header-content{
            display: inline-block;
            align-items: center;
            margin: 0;
            order: 2;
            
        }
        
        .header-content h1{
            text-align: center;
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .header-content p{
            text-align: center;
            color: var(--text-light);
        }
        
        .header-btns{
            padding-top: 2rem;
            display: flex;
            gap: 0.5rem;
            align-items: center;
            justify-content: center;
        }
        
        .btn{
            padding: .75rem 1.5rem;
            outline: none;
            border: none;
            font-size: 1rem;
            color: var(--text-dark);
            white-space: nowrap;
            background-color: var(--primary-color);
            border-radius: 2rem;
            transition: background-color 0.3s ease;
            cursor: pointer;
        }
        
        .btn span{
            font-size: 1.2rem;
            font-weight: 500;
        }

        .play-btn {
            background: transparent;
            border: 1px solid purple;
            cursor: pointer;
            padding: .6rem 1.5rem;
            outline: none;
            font-size: 1rem;
            color: purple;
            border-radius: 2rem;
            transition: 0.3s;
            text-align: center;
        }
        
        .play-btn:hover {
            background: purple;
            color: #fff;
        }
        
        
        .play-btn span{
            font-size: 1.2rem;
            padding-left: 0.5rem;
        }
        
        .btn:hover{
            background-color: var(--primary-color-dark);
        }
        
        .hero-section img{
            width: 100%;
            padding-bottom: 2.5rem;
        }

    @media (width > 768px){

    .hero-section{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding-bottom: 3rem;
        align-items: center;
    }

    .header-content{
    padding: 0 3rem;
    order: 1;

    }

    .header-content h1{
    font-size: 4rem;
    text-align: left;
    }

    .header-content p{
    line-height: 2;
    text-align: left;
    }

    .btn{
    font-size: 18px;
    }

    .btn span{
    font-size: 1.5rem;
    }

    .header-btns{
        display: flex;
        padding: 0 2.5rem;
        justify-content: flex-start;
        gap: 1.5rem;
        padding-top: 2.5rem;
    }

    .hero-section img{
        width: 100%;
        height: 100%;
        margin: 0;
        border-radius: 5px;
        order: 2;
    }
}


@media (width > 800px) {
    .header-content{
        padding-top: 3rem;
    }

    .header-btns{
        margin: 0;
        padding: 16px 0;
    }

}