@import url('https://fonts.googleapis.com/css2?family=Prata&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #333;
    --secondary-color: #f8f9fa;
    --accent-color: #b12560;
    --text-dark: #333;
    --text-light: #6c757d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
    font-family: "Prata", serif;
    /*font-family: "Jost", sans-serif;*/
    line-height: 1.6;
    color: var(--text-dark);
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{ line-height: normal; }
a:hover{
    color: #c32a68;
}
/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.header_fixed{ 
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
}
.navbar-brand .main_logo{
    width: 190px; transition: all 0.5s;
}
.header_fixed .navbar-brand .main_logo{     width: 150px; }
.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 300;
    margin: 0 15px;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}
@media(min-width: 1200px){
    .navbar-nav .nav-link{ margin: unset; margin-right:30px; }
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

.btn-primary, .btn-secondary {
    background: var(--accent-color);
    border: none;
    padding: 10px 30px;
    font-weight: 400;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
}
 
.hero_content {
    position: absolute;
    left: 0px;
    bottom: 0px;
    background-color: #ebeaead6;
    padding: 20px 50px;
    border-top-right-radius: 20px;
    background-color: #ffffff7a;
     border-radius: 4px;
}
 
/* Welcome Section */
.welcome-section {
    padding: 50px 0;
    background: var(--secondary-color);
}
.section-padding {
    padding: 50px 0;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0px;
    text-align: left;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    text-align: left;
    margin-bottom: 60px;
}

.hero-section-title {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 6px;
    /*margin-top: 55px;*/
    text-align: left;font-family: "Prata", serif;
}
.hero-section-subtitle { 
    font-size: 2rem;
    text-align: left; 
    font-weight: 400; font-style: italic;
}

/* Feature Cards */
.feature-card {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    transition: all 0.3s ease;
    height: 300px;
    margin-bottom: 30px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card:hover img {
    transform: scale(1.1);
}

.feature-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.feature-card:hover .overlay {
    opacity: 1;
    /*background: linear-gradient(45deg, #ffffffb3, rgba(0, 0, 0, 0.3));*/

}

.feature-card .overlay h4 {
       color: #000000;
    font-size: 1.2rem;
    font-weight: 400;
    position: absolute;
    right: 0px;
    bottom: -8px;
    background: #ffffff9e;
    padding: 10px 20px;
    border-top-left-radius: 5px;
}

/* Room Section */
.room-section {
    padding: 100px 0;
    padding-bottom: 70px;
}

.room-card {
    background: white;
    border-radius:5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease; 
    position: relative;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.room-card img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
}
 
/* Footer */
.footer {
    background: #222221;
    color: white;
    padding: 40px 0 20px; 
}

.social-links {
    margin: 20px 0;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.quiz_box{
      position: relative;
      background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../images/bed_pillow2.png);
      min-height: 400px;
      border-radius: 5px;
   /*   background-position: top;
      background-repeat: no-repeat;
      background-size: 100%;
      background-attachment: fixed;*/

}
.quiz_box_content{
    position: absolute;
    width: 100%;
    top: 100px;
    left: 0px;
    padding-left: 10%; color: #fff;
}
.quiz_box .quiz_box_content .section-title{
        font-size: 5rem;margin-bottom: 50px;
}

.quiz_box_content .hero-section-title, .quiz_box_content .hero-section-subtitle{
    text-align: left;
}
/*.quiz_box_content h2{ font-size: 2rem; }*/ 
.quiz_box_content h5 a{ color: #fff; transition: all 0.4s; font-size: 2rem; }
.quiz_box_content h5 a:hover{
    color:  #c32a68;
}
.quiz_box_content p{ font-size: 1rem;  }

.footer_logo{
    width: 250px;
}
.footer_menu ul{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap; 
    padding-left: 20px;
}
.footer_menu ul li{
    width: 100%; margin-bottom: 10px;
}
.footer_menu ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 18px; 
      transition: all 0.4s; 
      transition: left 0.4s;
      position: relative;
      left: 0px;
}
.footer_contact a{
    text-decoration: none;
    color: #fff;
}
.footer_menu_h { margin-bottom: 20px; font-size: 110%; margin-top: 0px;
}
.footer_menu ul li a:hover{
     color: #fafafaa1;
    left: 4px;
}
 
.copyright_txt{ text-align: right; }











 


 /* Clients Section */
        .clients-section {
            background-color: var(--bg-light);
           
        }

        .client-card {
            /*background: white;*/
            border-radius: 4px;
            padding: 1px;
            margin: 6px;
            text-align: center;
            /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);*/
            transition: all 0.3s ease;
            height: 150px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            /*border: 1px solid #e2e2e2;*/
        }

        .client-card:hover {
            transform: translateY(-10px);
            /*box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);*/
        }

        .client-logo {
            width: 100%;  
            /*margin: 0 auto 1.5rem; */
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
        }
        .client-logo img{
                width: 100%;
            object-fit: contain;
            height: 112px;
            padding: 10px;
        }
        .client-name {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .client-description {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .swiper {
            padding: 0rem 0;
            padding-bottom: 2rem;
        }

        .swiper-button-next,
        .swiper-button-prev {
            color: var(--primary-color);
            background: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 18px;
        }

        .swiper-button-next, .swiper-button-prev{ display: none; }
        .swiper-pagination-bullet {
            background: var(--primary-color);
            opacity: 0.3;
        }

        .swiper-pagination-bullet-active {
            opacity: 1;
        }

        .swiper-wrapper {
transition-timing-function: linear !important;
}

        /* FAQ Section */
        .faq-section {
            background: white; background: var(--secondary-color);
        }

        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid #e2e8f0;
            border-radius: 4px;
            overflow: hidden;
        }

        .faq-header {
            background: var(--bg-light);
            padding: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .faq-header:hover {
            background: #e2e8f0;
        }

        .faq-header.active {
            background: var(--primary-color);
            color: white;
        }

        .faq-question {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0;
            padding-right: 2rem;
        }

        .faq-icon {
            position: absolute;
            right: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            transition: all 0.3s ease;
        }

        .faq-header.active .faq-icon {
            transform: translateY(-50%) rotate(180deg);
        }

        .faq-body {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-body.show {
            padding: 1.5rem;
            /*max-height: 200px;*/
            max-height: unset;

        }

        .faq-answer {
            color: var(--text-light);
            margin: 0;
        }

        .stats-section {
            background: var(--primary-color);
            color: white;
            padding: 3rem 0;
        }

        .stat-item {
            text-align: center;
            padding: 1rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            display: block;
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
        }

         @media (max-width: 991px) {
            .navbar-collapse{
                position: fixed;
                left: 20px;
                width: 200px;
                top: 85px;
            }
            .navbar-nav{
                    background: #efefef; margin: 10px 0px;padding: 15px 10px;         border-radius: 20px;
            } 

        }

        @media (max-width: 768px) {
            
            .client-card {
                margin: 0.5rem;
                height: auto;
                padding: 0rem;
            }
            .hero_content {
                padding: 20px;
            }
        }








.banner_bed_mobile{ display: none; }
/*.room-card img.banner_bed_mobile{     height: 66vh; }*/
/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .banner_bed_desktop{ display: none; }
    .banner_bed_mobile{ display: block; } 

    .section-title {
        font-size: 2rem;
    }

    .experience-content,
    .restaurant-content,
    .events-content {
        flex-direction: column;
    }
     .client-logo img{padding: 1px;}
    .search-form {
        margin-top: 30px;
        padding: 20px;
    }

    .restaurant-images,
    .events-images {
        grid-template-columns: 1fr;
    }



    .hero_content{    }
    .hero-section-title{ font-size: 2.5rem; }
    .hero-section-subtitle{ font-size: 1.5rem; }
    .feature-card{ height: 200px; }

    .quiz_box_content{ padding-left: 20px; }
    .quiz_box .quiz_box_content .section-title{ font-size: 2.5rem; }
    .room-card, .hero-section-title, .hero-section-subtitle { margin-left: 1%;margin-right: 1%; }
    .quiz_box_content h5 a{   font-size: 1.5rem; }
    .quiz_box{     min-height: 330px; }
    .room-section, .welcome-section, .section-padding{ padding: 60px 0px; }
    .room-section{
        padding-top: 100px; 
    }
    .navbar-collapse .btn-primary{ width: 100%; }
    .footer_menu ul li{
        width: 100%;
    }
    .footer_menu ul{    justify-content: space-between; padding-left:0px; }
    .copyright_txt{ text-align: center; }


    .footer_menu_h{ margin-top:40px; }
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  background-image: linear-gradient(144deg, #3074BB 0%, #3074bb 29%, #299847 100%);
  width: 40px;
  height: 40px;
  border-radius: 12px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}
