﻿.centered-text {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: white;
    font-size: 50px;
    white-space: nowrap;
    opacity: 0;
    animation: slideInFromLeft 2s ease forwards;
    z-index: 10;
}

.centered-D-text {
    position: absolute;
    top: 60%;
    left: 100%;  
    transform: translateY(-50%);
    color: white;
    font-size: 25px;
    white-space: nowrap;
    opacity: 0;
    animation: slideInFromRight 2s ease forwards;
    z-index: 10;
 }

@keyframes slideInFromRight {
    0% {
        left: 100%;
        opacity: 0;
    }

    100% {
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    0% {
        left: -100%;
        opacity: 0;
    }

    100% {
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}
 .booking__thumb__one {
    position: relative;
    overflow: hidden;
}

.black-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}

.booking__thumb__one {
    position: relative;
}

.HeaderPage img {
    width: 100%;
    display: block;
    z-index: 0;
    position: relative;
}

.centered-text {
    position: absolute;
    z-index: 2;
    color: white;
 }

.centered-D-text {
    position: absolute;
    z-index: 2;
    color: white;
 }

@media (max-width: 600px) {
    .centered-text {
        font-size: 30px;
    }

    .centered-D-text {
        font-size: 20px;
    }
}
