body {
    font-family: 'Arial', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    background: #f5f5f5;

}

.heading {
    position: relative;
    height: 250px;
    background-image: url("image1.jpg");
    background-size: cover;
    background-position: center;
}

.heading img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slide-in 2s forwards;
}

@keyframes slide-in {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}


.heading .caption {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background-color: rgba(241, 232, 232, 0.5);
    color: #000000;
    padding: 10px;
    animation: fade 3s;
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}



h2, h3 {
    color: #444;
    text-transform: uppercase;
}

h2 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 2em;
    color: #333;
    border-bottom: 2px solid #333;
    display: inline-block;
    padding-bottom: 5px;
}

.intro {
    margin: 30px;
    padding: 20px;
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    animation: fadeIn 2s;
}

.hotel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px;
    padding: 20px;
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    animation: fadeIn 2s;
}

.hotel .image {
    flex: 1;
    margin-right: 20px;
}

.hotel .details {
    flex: 2;
}

.hotel img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform .2s;
}

.hotel img:hover {
    transform: scale(1.05);
}

.description {
    margin-top: 10px;
}

.description p {
    margin: 0;
    font-style: italic;
    color: #777;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.heading {
    background: #012231;
}

.logo {
    float: left;
    padding: 27px 0 0 0;
}

.top-nav {
    float: right;
}

.top-nav ul li {
    display: inline-block;
    float: left;
}

.top-nav ul li a {
    font-family: 'Roboto', sans-serif;
    color: #d6d6d6;
    padding: 40px 25px;
    display: block;
    position: relative;
    text-transform: uppercase;
    transition: 0.5s ease;
    -o-transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
    font-size: 0.875em;
}

.top-nav li.active>a, .top-nav li>a:hover {
    background: #289cd8;
    color: #FFF;
}