* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#home_section {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.backgroundimage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

}



/* Center Content Styling */
.center-content {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.quick_text {
    color: white;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    margin-bottom: 50px;
}


.book-now-btn {
    background-color: #FFD700;
    color: #000;
    font-weight: 600;
    padding: 14px 24px;
    border: 2px solid #000;
    border-radius: 6px;
    cursor: pointer;
    font-size: 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    justify-content: center;
    transition: all 0.3s ease;
    font-family: 'Courier New', Courier, monospace;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.book-now-btn:hover {
    background-color: #000;
    color: #FFD700;
    border-color: #FFD700;
}

.arrow-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.book-now-btn:hover .arrow-icon {
    transform: translateX(5px);
}



@media (min-width: 650px) {

    .book-now-btn {
        background-color: #FFD700;
        color: #000;
        font-weight: 600;
        padding: 14px 24px;
        border: 2px solid #000;
        border-radius: 6px;
        cursor: pointer;
        font-size: 22px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        justify-content: center;
        transition: all 0.3s ease;
        font-family: 'Courier New', Courier, monospace;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        font-size: 20px;
    }

    .arrow-icon {
        font-size: 14px;
    }


    .quick_text {
        color: white;
        font-size: 28px;
        font-weight: bold;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
        margin-bottom: 50px;
    }



}