.bunny-collection {
    position: relative;
    width: 100%;
    height: calc(100vh - 8rem);
    overflow: hidden;
}

.bunny-collection__bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.bunny-collection__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2000ms ease-out;
}

.bunny-collection:hover .bunny-collection__bg-image {
    transform: scale(1.05);
}

.bunny-collection__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.bunny-collection__content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
}

.bunny-collection__title {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    margin: 0;
    font-weight: 400;
}

.bunny-collection__description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    max-width: 36rem;
    margin: 1rem auto 0 auto;
}

.bunny-collection__button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #1a1a1a;
    transition: all 300ms;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.bunny-collection__button:hover {
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
}

@media (min-width: 768px) {
    .bunny-collection__content {
        padding-left: 64px;
        padding-right: 64px;
    }

    .bunny-collection__title {
        font-size: 4.5rem;
    }

    .bunny-collection__description {
        font-size: 1.125rem;
    }
}
