.hero {

    min-height: calc(100vh - 90px);

    padding-top: 40px;

    background: linear-gradient(
        135deg,
        #fff8e8,
        #ffd95c
    );

    display: flex;

    align-items: center;

}

.hero-container {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;


}

.hero-content {

    z-index: 2;

}

.hero-label {

    display: inline-block;

    margin-bottom: 20px;

    font-size: .9rem;

    font-weight: 700;

    letter-spacing: 2px;

    color: #7d6400;

}

.hero h1 {

    font-size: 4.5rem;

    line-height: 1.1;

    margin-bottom: 30px;

}

.hero h1 span {

    color: var(--primary);

}

.hero p {

    font-size: 1.2rem;

    line-height: 1.8;

    max-width: 550px;

    margin-bottom: 40px;

}

.hero-buttons {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

}

.btn-primary {

    background: var(--dark-green);

    color: white;

    padding: 18px 32px;

    border-radius: 999px;

    font-weight: 700;

    transition: .3s;

}

.btn-primary:hover {

    transform: translateY(-3px);

}

.btn-secondary {

    border: 2px solid var(--dark-green);

    color: var(--dark-green);

    padding: 18px 32px;

    border-radius: 999px;

    font-weight: 700;

    transition: .3s;

}

.btn-secondary:hover {

    background: rgba(29,59,32,.08);

}

.hero-image {

    display: flex;

    justify-content: center;

}

.hero-image img {

    width: auto;
    height: auto;

    max-width: 550px;
    max-height: 550px;

    object-fit: contain;

    border-radius: 30px;

    box-shadow: 0 25px 60px rgba(0,0,0,.12);

    animation: floatBee 5s ease-in-out infinite;

}

@keyframes floatBee {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

}