.banner {
    width: 100%;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);

    margin-top: 100px;
}

.banner .text {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
}

.banner h2 {
    font-size: 2.6rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.banner span {
    font-size: 1.1rem;
    color: #f8f9fa;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
    opacity: 0.95;
}

.banner b {
    background-color: rgb(150, 125, 86);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    white-space: nowrap;
}

.banner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(52, 152, 219, 0.3) 0%,
        rgba(155, 89, 182, 0.2) 25%,
        rgba(241, 196, 15, 0.15) 50%,
        rgba(26, 188, 156, 0.25) 75%,
        rgba(46, 204, 113, 0.2) 100%
    );
    z-index: 1;
}

.banner:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.2), 
        rgba(0, 0, 0, 0.3)
    ), url('beach.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 0;
    transform: scale(1.1);
    transition: transform 8s ease-in-out;
}

.banner:hover:after {
    transform: scale(1.05);
}

/* Add some floating animation for the text container */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.banner .text {
    animation: float 10s ease-in-out infinite;
}

.banner .book-btn {
    display: block;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background-color: rgb(150, 125, 86);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;

}

.banner .dis {
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
}

/* Responsive design */
@media (max-width: 768px) {
    .banner {
        height: 600px;
        padding: 5rem 0;
        margin: 50px 0;
    }
    
    .banner h2 {
        font-size: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .banner b {
        display: inline-block;
        padding: 0.5rem 0.8rem;
    }
    
    .banner span {
        font-size: 1rem;
    }

    
    .banner .text {
        padding: 2rem;
        margin: 1rem;
    }
}