body {
    background-color: #f8f9fa;
}


.navbar-nav .nav-link {
    margin-left: 15px;
    transition: 0.3s ease-in-out;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ffc107 !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #ffc107;
    transition: width 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}


main.container {
    padding-top: 80px;
    padding-bottom: 40px;
}


/* about page styles */

.about-page {
    background-color: #f8f9fa;
    min-height: calc(100vh - 150px);
}

.about-page h2 {
    font-weight: 700;
}

.about-page p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

.hotel-features .feature-box {
    background-color: #ffffff;
    transition: all 0.3s ease-in-out;
}

.hotel-features .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* contact style */

.contact-page-wrapper {
    min-height: calc(100vh - 160px);
}

.contact-page-wrapper h2 {
    font-size: 2.2rem;
    font-weight: 700;
}

.contact-info .info-box {
    background: #ffffff;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.contact-info .info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.contact-info i {
    color: #0d6efd;
}
/* home page style */
 

.home-about-section p {
    font-size: 1.1rem;
    color: #444;
}

.home-gallery-section img {
    transition: transform 0.3s ease;
}

.home-gallery-section img:hover {
    transform: scale(1.03);
}


/* banner */
.hero-banner-short {
    width: 100%;
    height: 55vh;
    background: url('/static/images/banner.jpg') no-repeat center center/cover;
    position: relative;
}

.hero-banner-short .overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}



/* room styles */

.room-card {
    transition: transform 0.2s ease-in-out;
    border-radius: 10px;
    overflow: hidden;
}

.room-card:hover {
    transform: translateY(-5px);
}

.room-card img {
    height: 220px;
    object-fit: cover;
}

.room-card .card-title {
    font-weight: 600;
    font-size: 1.2rem;
}

.room-card .btn {
    font-weight: 500;
}


/* room details */

.room-detail .carousel img {
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.room-info {
    padding-left: 10px;
}

.room-detail .booking-form {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);  
    border: 1px solid rgba(0, 0, 0, 0.1);  
}

.payment-success-page i.fas.fa-check-circle {
    font-size: 4rem;
}

.contact-box {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.room-img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 0.5rem;
}
.booking-info-table th, .booking-info-table td {
    vertical-align: middle;
}