/*Animations*/
.fadeinleft {
    opacity:0;
    transform: translateX(200px);
    transition: all 1.3s ease-out;
}

.fadeinright{
    opacity: 0;
    transform: translateX(-200px);
    transition: all 0.8s ease-out;
}

.fadeindown{
    opacity: 0;
    transform: translateY(-100px);
    transition: all 1.2s ease-out;
}

.fade-in{
    opacity:0;
    transition: all 1.3s ease-in;
}

.active-left,.active,.active-right,.active-down{
    opacity:1;
    transform: translateX(0);
    transform: translateY(0);
}

/* End Animations*/

:root {
    --primary-color: #A84327;
    --dark-color: #181b20;
    --light-color: #f2f2f3;
    --text-color: #656a70;
}

body {
    font-family: 'Work Sans', sans-serif;
    color: var(--dark-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Cormorant Garamond", serif;
}

.container {
    max-width: 1400px;
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 15px 20px;
}

.btn-primary:hover {
    background-color: #C27B67;
}

.btn-primary1 {
 background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 15px 20px;
    color: white;
}
.btn-primary1:hover {
    background-color: #C27B67;
    color: white;
     padding: 15px 20px;
}

.navbar {
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.top-bar {
    background-color: F9F5F0;
    color: rgb(65, 64, 64);
    padding: 0.9rem 0;
    font-size: 15xpx; 
    border-bottom: 2px solid #dfdfdf;
}

.top-bar a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar .btn-primary:hover{
    background-color: #C27B67;
}

.top-bar .btn-primary {
    color: white;
    padding: 10px 15px;
    font-size: 1rem;
    transition: all 0.3s;
    text-transform: none;
}

.hero-section {
    height: calc(100vh - 220px);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
}



.display-4 {  
    font-size: 75px;
}

.section-padding {
    padding: 5rem 0;
}

.section-title {
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 50px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
}

.section-title.text-center:after {
    left: 50%;
    transform: translateX(-50%);
}

.room-card {
    border: 5px b;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 2rem;
    height: 100%;
}

.room-card img {
    height: 250px;
    object-fit: cover;
}

.room-card .card-body {
    padding: 1.8rem;
}

.room-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.room-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.room-features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    width: 20px;
}


    .testimonial-section {
            background-color: #f8f9fa;
            padding: 80px 0;
        }


.testimonial-content {
    padding: 3rem;
    background-color: white;
    position: relative;
}


 @media (max-width: 991px) {
            .testimonial-section .row {
                flex-direction: column-reverse;
            }
        }


.testimonial-content:before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 4rem;
    color: var(--primary-color);
    line-height: 1;
}




        




.facility-item {
    display: flex;
    margin-bottom: 2rem;
}

.facility-icon {
    flex: 0 0 60px;
    height: 60px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.facility-content h4 {
    margin-bottom: 0.5rem;
}

footer {
    background-color: var(--dark-color);
    color: white;
    padding-top: 3rem;
}

.footer-widget h5 {
            margin-bottom: 1.5rem;
            position: relative;
        }

        .footer-widget h5:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 30px;
            height: 2px;
            background-color: var(--primary-color);
        }

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}



.map-section {
    background-color: #f8f9fa;
}

.map-container {
    height: 150px;
    width: 80%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}


.map-container1 {
    height: 500px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container1 iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

#imageModal .modal-content {
    background: transparent;
}

#imageModal .btn-close {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 10;
    filter: invert(1);
}

#modalImage {
    max-height: 80vh;
    object-fit: contain;
}


.map-fullwidth {
    padding: 0;
}

.map-fullwidth .map-container {
    border-radius: 0;
    height: 450px;
}


.map-with-info {
    padding: 80px 0;
}

.map-info-sidebar {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.map-info-sidebar h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
}

.map-info-sidebar .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.map-info-sidebar .info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.map-info-sidebar .info-icon {
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.map-info-sidebar .info-content h5 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.map-info-sidebar .info-content p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.9rem;
}


@media (max-width: 768px) {
    .map-container {
        height: 400px;
    }
    
    .map-section .container-fluid {
        padding: 0 15px;
    }
    
    .map-section .container-fluid .map-container {
        border-radius: 8px;
    }
}

@media (max-width: 576px) {
    .map-container {
        height: 350px;
    }
}


.map-container.loading {
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-loading-spinner {
    color: var(--primary-color);
    font-size: 2rem;
}


.map-container iframe {
    transition: transform 0.3s ease;
}

.map-container:hover iframe {
    transform: scale(1.01);
}

                .powered-by {
            font-size: 0.8rem;
            opacity: 0.7;
            margin-top: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .inter-media-logo {
            height: 30px;
            width: auto;
            filter: brightness(0) invert(1);
            transition: opacity 0.3s ease;
        }
        
        .inter-media-logo:hover {
            opacity: 0.8;
        }
        
        

 .footer-contact li {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
        }

        .footer-contact li i {
            margin-right: 0.5rem;
            width: 20px;
        }

        .footer-contact a {
            color: white;
            text-decoration: none;
        }

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
    margin-top: 3rem;
}


.owl-carousel .owl-item {
    padding: 0 15px;
}

.owl-carousel .owl-nav {
    position: absolute;
    top: -80px;
    right: 0;
}

.owl-carousel .owl-nav button {
    background: var(--primary-color)!important;
    color: white !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.owl-carousel .owl-dots {
    margin-top: 20px;
}

.owl-carousel .owl-dots button span {
    width: 12px;
    height: 12px;
    margin: 5px;
    background: #ddd;
    border-radius: 50%;
}

.owl-carousel .owl-dots button.active span {
    background: var(--primary-color);
}

@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .testimonial-content {
        padding: 2rem;
    }
    .display-4 {
        font-size: 50px;
    }
    
    .hero-content h1 {
        position: relative;
        top: 40%;
        transform: translateY(-50%);
        width: 95%;
    }
    
    .owl-carousel .owl-nav {
        position: relative;
        top: 0;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .owl-carousel .owl-nav button {
        margin: 0 5px;
    }
    
}


@media (max-width: 768px) {
     .top-bar .d-flex {
                flex-direction: column;
                gap: 10px;
            }
            
    
    .top-bar .text-md-end {
        text-align: left !important;
    }

     .contact-item {
        margin-bottom: 10px;
    }
    
    .contact-item a {
        justify-content: flex-start;
    }
}

.about-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: url('img/Capture.PNG') right/cover no-repeat;
}

.about-image .img-fluid {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center;
    transition: transform 0.3s ease;
}

.about-image .img-fluid:hover {
    transform: scale(1.05);
}

.about-content {
    padding-right: 40px; 
    max-width: 100%;
}

.section-padding1 {
    padding: 80px 0;
}

.section-title1 {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 30px;
}

.section-title1:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    transform: none;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}


@media (max-width: 991.98px) {
    .section-padding1 {
        padding: 60px 0;
    }
    
    .section-title1 {
        font-size: 2rem;
    }
    
    .mb-4.mb-lg-0 {
        margin-bottom: 2rem !important;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .about-image {
        height: 400px;
    }
    
    
    .section-title1 {
        font-size: 2rem;
    }
}

.room-numbers {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
    .section-padding1 {
        padding: 40px 0;
    }
    
    .section-title1 {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .about-image {
        height: 300px;
    }

    
    .section-title1 {
        font-size: 1.75rem;
        text-align: center;
    }
}
































.about-hero-section {
    background-image: url('https://cf.bstatic.com/xdata/images/hotel/max1024x768/375544874.jpg?k=1dda9e9be77c1f0322891ebd920dab1849eca464b0a9e98f7f79f6c6325883f5&o=');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    position: relative;
    color: white;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    opacity: 0.6;
    z-index: 1;
}


.about-hero-section > * {
    position: relative;
    z-index: 2;
}
        
        .about-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
        }
        
        .about-hero-content {
            position: relative;
            z-index: 1;
        }
        
        .about-section {
            padding: 80px 0;
        }
        
        .about-section-alt {
            background-color: #f8f9fa;
        }
        
        


        
        .about-content {
            padding: 20px 0;
        }
        
        .about-title {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .about-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: #0d6efd;
        }
        
        .about-title-center {
            text-align: center;
        }
        
        .about-title-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
    



















        
        



        .rooms-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: var(--primary-color);
            opacity: 0.6;
            z-index: 1;
        }

        .rooms-hero-content {
            position: relative;
            z-index: 2;
        }

        .room-card {
            border: none;
            border-radius: 0.5rem;
            overflow: hidden;
            margin-bottom: 2rem;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .room-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .room-card img {
            height: 250px;
            object-fit: cover;
        }

        .room-card .card-body {
            padding: 1.8rem;
        }

        .room-features {
            list-style: none;
            padding: 0;
            margin-bottom: 1.5rem;
        }

        .room-features li {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
        }

        .room-features i {
            color: var(--primary-color);
            margin-right: 0.5rem;
            width: 20px;
        }

        .room-numbers {
            font-size: 0.9rem;
            color: #7f8c8d;
            margin-bottom: 1rem;
        }
        






        

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(168, 67, 39, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.gallery-icon {
    color: white;
    font-size: 2rem;
}


@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-item img {
        height: 250px;
    }
}

@media (min-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
        
        

         .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .gallery-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

     
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }

        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }

         .gallery-icon {
            color: white;
            font-size: 2rem;
        }

      
.contact-page-header {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(168, 67, 39, 0.6);
}

.contact-page-header h1 {
    position: relative;
    z-index: 1;
    color: white;
    font-size: 3.5rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.contact-page-header h1:after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 60px;
    height: 3px;
    background-color: white;
    transform: translateX(-50%);
}


.contact-form-wrapper {
    padding: 20px 0;
}

.contact-form .form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.contact-form .form-control {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(168, 67, 39, 0.15);
    outline: none;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    padding: 12px 40px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.contact-info-wrapper {
    padding: 20px 0;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.contact-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.contact-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-details-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 1rem;
}

.contact-details-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 3px;
    min-width: 20px;
}

.contact-details-list li a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details-list li a:hover {
    color: var(--primary-color);
}


.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--light-color);
    border-radius: 50%;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}


.map-section {
    margin-top: 0;
}

.map-section iframe {
    width: 100%;
    display: block;
}


@media (max-width: 991.98px) {
    .contact-page-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-info-wrapper {
        padding-top: 40px;
    }
}

@media (max-width: 767.98px) {
    .contact-page-header {
        height: 300px;
    }
    
    .contact-page-header h1 {
        font-size: 2rem;
    }
    
    #google-map {
        height: 400px !important;
    }

    
}





.hero-carousel-section {
    position: relative;
}

.hero-slide {
    height: calc(100vh - 220px);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    right: 0;
}

.hero-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: 20px;
}

.hero-carousel .owl-nav button.owl-next {
    position: absolute;
    right: 20px;
}

.hero-carousel .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .hero-slide {
        height: 70vh;
    }

    
}



        .icon-circle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }

        


          
        .language-switcher {
            display: flex;
            align-items: center;
            margin-right: 15px;
            gap: 8px;
        }
        
        .language-btn {
            display: flex;
            align-items: center;
            padding: 5px 10px;
            border-radius: 4px;
            background-color: transparent;
            border: 1px solid #6c757d;
            color: #6c757d;
            font-size: 0.85rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .language-btn:hover {         
            border-color: var(--primary-color);
            color: rgb(15, 15, 15);
            text-decoration: none;
        }
        
        .language-btn.active {
            background-color: #44444E;
            border-color: #37353E;
            color: white;
        }
        
        @media (max-width: 768px) {
            .language-switcher {
                margin-right: 0;
                margin-bottom: 10px;
                justify-content: center;
            }
        }
        



        