.hero {
    padding: 80px 0;
    background: #fffaf5
}

.hero-tag {
    display: inline-block;
    background: #ffe9d2;
    padding: 8px 18px;
    border-radius: 30px;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 20px
}

.hero-title {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px
}

.hero-title span {
    color: var(--primary)
}

.hero-text {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.8
}

.hero-features {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    flex-wrap: wrap
}

.hero-features div {
    font-weight: 500
}

.hero-features i {
    color: var(--primary);
    margin-right: 6px
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.btn-book {
    background: var(--primary);
    padding: 14px 28px;
    color: #fff;
    border-radius: 40px;
    font-weight: 600;
    transition: .3s
}

.btn-book:hover {
    background: var(--secondary);
    color: #fff
}

.btn-service {
    padding: 14px 28px;
    border: 2px solid var(--primary);
    border-radius: 40px;
    color: var(--primary);
    font-weight: 600;
    transition: .3s
}

.btn-service:hover {
    background: var(--primary);
    color: #fff
}

.hero-image {
    max-width: 80%;
    max-height: 80%;
    animation: float 4s ease-in-out infinite
}

/* .hero-image {
    border: 4px solid #f8bb37;
    border-radius: 16px;
    padding: 8px;
    box-sizing: border-box;
} */
.hero-image {
    border: 3px solid #8b0000;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
}

@keyframes float {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }

    100% {
        transform: translateY(0)
    }
}