body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    padding-top: 80px;
}

.header {
    background-color: #eeeeef;
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    
}

.container {
    width: 90%;
    margin: 0 auto;
}

.header-content {
    display: flex;
    align-items: center;
}

.logo img {
    height: 100px; /* Increased logo size */
    margin-right: 30px; /* Added more margin to the right of the logo */
}

.hotel-info {
    margin-left: 20px;
}

.hotel-info h1 {
    margin: 0;
    font-size: 36px; /* Increased font size for the hotel name */
    font-family: 'Georgia', serif; /* Changed font for the hotel name */
    color: #333;
}

.hotel-info .address {
    font-size: 18px; /* Adjust font size for the address */
    color: #555;
}

.contact-info {
    margin-top: 10px;
}

.contact-info p {
    margin: 5px 0;
    font-size: 18px; /* Adjusted font size */
    color: #333;
    display: flex;
    align-items: center;
}

.hotel-info  i {
    margin-right: 5px;
    color: #007bff; /* Unified color for icons */
}

.contact-info  i {
    margin-right: 5px;
    color: #007bff; /* Unified color for icons */
}

.contact-separator {
    display: inline-block;
    width: 20px; /* Adjust width as needed */
}

.contact-info a {
    color: inherit; /* Inherit color from parent */
    text-decoration: none; /* Remove underline */
}

.contact-info a:hover {
    text-decoration: underline; /* Add underline on hover */
}


/*header end*/

/* Hero Section */

.hero {
    display: flex;
    align-items: center;
    background-color: #f7f7f7;
    height: 60vh;
    color: #333;
    padding: 20px 0; /* Add top and bottom padding */
    position: relative; /* Make the hero section a positioned parent */
    margin-top: 50px;
}

.hero-left {
    flex: 1; /* Updated flex value */
    position: relative;
    overflow: hidden; /* Ensure child elements don't overflow */
}

.hero-left img {
    width: 100%; /* Adjust width to fill hero-left */
    height: auto;
    object-fit: cover;
}

.hero-left .btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: #007BFF;
    color: #fff;
    border-radius: 4px;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    z-index: 1; /* Ensure button is above the image */
}

.hero-left .btn:hover {
    background-color: #0056b3;
}

.hero-right {
    flex: 0.5; /* Updated flex value */
    padding: 20px;
}

.hero-right h1 {
    font-size: 2.5rem;
    margin: 0;
}

.hero-right .hotel-name {
    font-size: 3rem;
}

.hero-right .hotel-subname {
    font-size: 2rem;
    display: block;
    margin-top: 10px;
}

.hero-right .check-in-out {
    margin: 20px 0;
}

.hero-right .price-box {
    margin-top: 30px;
}

.hero-right .btn-book-now {
    padding: 15px 30px;
    background-color: #FF9800;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
}

.hero-left .btn,
.btn-book-now {
    background-color: #007BFF;
    color: #fff;
    border: 1px solid #007BFF;
    border-radius: 20px;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.hero-left .btn:hover,
.btn-book-now:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
    .hero {
        margin-top: 120px; /* Adjust margin for smaller screens */
    }
}
/*hero ends */

.secondary-nav {
    background-color: #333;
    padding: 20px 0;
}

.secondary-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.secondary-nav ul li {
    margin: 0 5px; /* Reduced margin between items */
}

.secondary-nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 10px 40px;
    border: 1px solid #fff; /* Add border */
    border-radius: 25px; /* Add border radius */
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    
}

.secondary-nav ul li a:hover {
    color: #FF9800;
    border-color: #FF9800; /* Change border color on hover */
}




/* Other sections */
#about {
    padding: 50px 20px;
    background-color: #f9f9f9;
}

#about h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.about-content p {
    font-size: 1.2em;
    line-height: 1.6;
    text-align: justify;
}

/* Additional styles as needed */


/* Rooms Section */
#rooms {
    padding: 50px 20px;
    text-align: center;
    
}

#rooms h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.room-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.room {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.room img {
    max-width: 100%;
    border-radius: 8px;
}

.room h3 {
    font-size: 1.8em;
    margin: 15px 0;
}

.room p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

/* Restaurant Section */
.restaurant-section {
    padding: 40px;
    background-color: #f5f5f5;
    text-align: center;
    margin-bottom: 50px; /* Add some bottom margin */
}

.restaurant-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.restaurant-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel {
    width: 40%;
    position: relative;
    overflow: hidden;
    margin-right: 20px;
}

.carousel-inner {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
}

.carousel-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.restaurant-info {
    width: 50%;
    text-align: left;
}

.restaurant-info h3 {
    font-size: 1.8em;
    margin-top: 10px;
}

.restaurant-info p {
    font-size: 1em;
    margin: 10px 0;
}

.restaurant-info a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

.restaurant-info a:hover {
    background-color: #0056b3;
}
/*service*/

#services {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
    margin-bottom: 50px; /* Add some bottom margin */
}

#services h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.service {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 10px;
    width: calc(33.33% - 20px); /* Adjust width for responsiveness */
    max-width: 300px; /* Max width for larger screens */
}

.service img {
    max-width: 80px; /* Reduce the size of the icon */
    border-radius: 8px;
    margin-bottom: 15px; /* Add margin below the icon */
}

.service h3 {
    font-size: 1.4em; /* Decrease the font size */
    margin: 10px 0; /* Adjust the margin */
}

.service p {
    font-size: 1em; /* Decrease the font size */
    margin-bottom: 20px; /* Adjust the margin */
}

/*service end*/
 
#contact {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
    margin-bottom: 50px; /* Add some bottom margin */
}

#contact h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}

.contact-info {
    flex: 1;
}

.contact-info ul {
    list-style: none;
}

 .contact-info ul li {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
}

 .contact-info ul li a {
    color: #007bff;
    text-decoration: none;
}


.map {
    flex: 2;
}

.contact-info h3,
.map h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.2em;
    line-height: 1.6;
}

.map iframe {
    max-width: 100%;
    border: 0;
}

/* Gallery Homepage */
#gallery {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

#gallery h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.gallery-container {
    overflow-x: auto; /* Enable horizontal scrolling */
    padding: 20px 0; /* Add padding to the container */
    scrollbar-width: none; /* Hide the scrollbar in Firefox */
    -ms-overflow-style: none; /* Hide the scrollbar in IE/Edge */
    display: flex; /* Use flexbox to arrange images horizontally */
    gap: 20px; /* Add gap between images */
    justify-content: flex-start; /* Align images to the start */
}

.gallery-container::-webkit-scrollbar {
    display: none; /* Hide the scrollbar in Chrome/Safari */
}

.gallery-item {
    flex: 0 0 calc(20% - 20px); /* Set the width of each image container */
}

.gallery-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease; /* Adding a smooth transition effect */
}

.gallery-item img:hover {
    transform: scale(1.1); /* Increasing the size of the image on hover */
}





.footer-content {
    background: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.footer-content p {
    margin: 0;
    padding: 0;
}

.social-links {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 20px 0 0;
}

.social-links li {
    margin: 0 10px;
}

.social-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
}

.social-links a:hover {
    color: #007BFF;
}

/* Responsive Styles */

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    body {
        padding-top: 100px; /* Increased padding for smaller screens */
    }
    
    /* Header */
    .header {
        width: 100%;
    }
    
    .header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 20px; /* Adjust padding */
    }

    .logo img {
        height: 80px;
    }

    .hotel-info h1 {
        font-size: 20px;
    }

    .hotel-info .address {
        font-size: 12px;
    }

    .contact-info p {
        font-size: 12px;
    }

    /* Hero Section */
    .hero {
        height: auto;
        flex-direction: column;
        text-align: center;
        margin-top: 80px;
        padding: 50px 20px;
    }

    .hero-left {
        margin-bottom: 30px;
    }

    .hero-left .btn {
        position: static;
        margin-top: 20px;
    }

    .hero-right {
        padding: 0;
    }

    .hero-right h1 {
        font-size: 28px;
    }

    .hero-right .hotel-name {
        font-size: 32px;
    }

    .hero-right .hotel-subname {
        font-size: 20px;
        margin-top: 5px;
    }

    .hero-right .check-in-out {
        margin: 20px auto;
    }

    .hero-right .price-box {
        margin-top: 30px;
    }

    .hero-right .btn-book-now {
        padding: 15px 30px;
        font-size: 1.2rem;
    }

    /* Secondary Nav Section */
    .secondary-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .secondary-nav ul li {
        margin: 0 10px;
    }

    .secondary-nav ul li a {
        padding: 10px 10px;
        color: white;
        text-decoration: none;
        font-size: 0.7rem;
        border: none;
    }

    /* About Us Section */
    #about {
        padding: 30px 20px;
    }

    .about-content {
        flex-direction: column;
    }

    .about-content img {
        margin-bottom: 20px;
    }

    /* Rooms Section */
    #rooms {
        padding: 30px 20px;
    }

    .room-categories {
        flex-direction: column;
    }

    .room {
        width: 100%;
        margin-bottom: 30px;
    }

    /* Restaurant Section */
    .restaurant-section {
        padding: 30px 20px;
    }

    .carousel {
        width: 100%;
        margin-right: 0;
    }

    .restaurant-container {
        flex-direction: column;
        gap: 20px;
    }

    .restaurant-info {
        width: 100%;
    }

    /* Services Section */
    #services {
        padding: 10px 10px;
    }

    .service-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .service {
        width: calc(40% - 5px); /* Adjust width to fit two per line */
        max-width: none;
        margin-bottom: 20px; /* Add some space between rows */
        padding:8px;
    }

    .service img {
        margin-bottom: 10px;
        width: 100%; /* Ensure images fit within the container */
    }

    .service p {
        font-size: 12px; /* Smaller text size for small screens */
    }
    .service h3{
        font-size:12px;
    }
    

    /* Contact Section */
    #contact {
        padding: 30px 20px;
    }

    .contact-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-info,
    .map {
        width: 100%;
    }

    .map {
        margin-top: 20px;
    }

    /* Gallery Section */
    #gallery {
        padding: 30px 20px;
    }

    .gallery-container {
        justify-content: center;
        overflow-x: auto;
    }

    .gallery-item {
        flex: 0 0 calc(33.33% - 20px);
    }

    .gallery-item img {
        max-width: 100%;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    /* Add styles for small devices here */
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    /* Add styles for medium devices here */
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    /* Add styles for large devices here */
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    /* Add styles for extra large devices here */
}



/* About Hero Section */

.page-hero {
    display: flex;
    align-items: center;
    background-color: #f7f7f7;
   
    color: #333;
    padding: 0px 0; /* Add top and bottom padding */
    position: relative; /* Make the hero section a positioned parent */
    margin-top: 0px;
}

.page-hero-left {
    flex: 1; /* Updated flex value */
    position: relative;
    overflow: hidden; /* Ensure child elements don't overflow */
}

.page-hero-left img {
    width: 100%; /* Adjust width to fill hero-left */
    height: auto;
    object-fit: cover;
}


/*Secondary NAV*/

.page-secondary-nav {
    background-color: #333;
    padding: 20px 0;
}

.page-secondary-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.page-secondary-nav ul li {
    margin: 0 5px; /* Reduced margin between items */
}

.page-secondary-nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 10px 40px;
    border: 1px solid #fff; /* Add border */
    border-radius: 25px; /* Add border radius */
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    
}

.page-secondary-nav ul li a:hover {
    color: #FF9800;
    border-color: #FF9800; /* Change border color on hover */
}

/* Pages Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    /* Hero Section */
    .page-hero {
        height: auto;
        flex-direction: column;
        text-align: center;
        margin-top: 50px;
        padding-top: 0px;
        
    }

    .page-hero-left {
        margin-bottom: 0px;
    }

       
    /* Secondary Nav Section */
    .page-secondary-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .page-secondary-nav ul li {
        margin: 0 10px;
    }

    .page-secondary-nav ul li a {
        padding: 10px 10px;
        color: white;
        text-decoration: none;
        font-size: 0.7rem;
        border: none;
    }

}

/* Gallery Section */
/* Gallery Section */
#page-gallery {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

#page-gallery h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.page-gallery-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.page-gallery-item {
    margin: 10px;
    padding: 5px; /* Add padding to adjust the gap between border and image */
    border: 1px solid #ccc; /* Add border */
    border-radius: 10px; /* Add border radius */
}

.page-gallery-item img {
    max-width: 200px;
    cursor: pointer;
    display: block;
    margin: auto; /* Center the image */
}
.page-gallery-popup {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.page-gallery-popup img {
    display: block;
    margin: auto;
    max-width: 80%;
    max-height: 80%;
    border: 1px solid #fff; /* Add border */
    border-radius: 10px; /* Add border radius */
    padding: 10px; /* Add padding */
    margin-top: 20px; /* Add margin */
}

.page-gallery-popup .close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
}

.page-gallery-popup .prev,
.page-gallery-popup .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 3px;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
}

.page-gallery-popup .prev {
    left: 10px;
}

.page-gallery-popup .next {
    right: 10px;
}

.page-gallery-popup .prev:hover,
.page-gallery-popup .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.page-gallery-popup .prev,
.page-gallery-popup .next {
    z-index: 1001;
}

.page-gallery-popup .prev {
    left: 10px;
}

.page-gallery-popup .next {
    right: 10px;
}

 .modal {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0; top: 0; width: 100%; height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
    }
    .modal-content {
      background: white;
      margin: 10% auto;
      padding: 20px;
      width: 90%;
      max-width: 500px;
      border-radius: 8px;
    }
    .close {
      float: right;
      font-size: 24px;
      cursor: pointer;
    }


.secondary-nav {
    background-color: #333;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.secondary-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    position: relative;
}

.nav-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: white;
    user-select: none;
}

/* Desktop nav styles */
.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    padding: 0.75rem 1rem;
    display: block;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 4px;
}

.nav-links li a:hover {
    background-color: #444;
    color: #ffcc00;
}

/* Responsive nav styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #1e1e1e;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 0;
        margin: 0;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease-in-out;
        z-index: 1000;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li a {
        padding: 1rem;
        border-bottom: 1px solid #333;
        color: #fff;
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }
}
