@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nova+Round&family=Nova+Slim&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Varela+Round&display=swap');

html{
    scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.thc-navbar-section {
    width: 100%;
    height: auto;
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


.thc-navbar {
    width: 100%;
    height: 80px;
    display: flex;
    flex-direction: row;
    gap: 2rem;

}

.thc-left-nav {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thc-left-nav img {
    width: 200px;
    height: 200px;
    z-index: 985;

}

.thc-right-nav {
    width: 80%;
    height: 100px;
    float: right;
    z-index: 8564;
}

.thc-right-nav .nav-tabs ul {
    display: flex;
    flex-direction: row;
    gap: 5rem;
    float: right;
    margin-top: 2.3%;
    margin-right: 8%;
    list-style: none;
}

.thc-right-nav ul li a {
    color: #000;
    font-family: poppins;
    font-size: 0.9rem;
    text-decoration: none;
}

.thc-right-nav ul li .book-button {
    color: #fff;
    background: #000;
    border-radius: 25px;
    /* width: 150px; */
    /* height: 35px; */
    padding: 8px;
    padding-left: 10px;
    padding-right: 10px;
    font-weight: 500;
    transition: 0.6s;
}

.thc-right-nav ul li .book-button:hover {
    border: 1.5px solid #000;
    background: transparent;
    color: #000;
}

/* .slides img{
    width: 100%;
    height: 750px;
} */
.hamburger-thc {
    display: none;
    font-size: 1.8rem;
    float: right;
    margin-top: 18%;
    margin-right: 15%;
}

.thc-navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media(max-width:600px) {
    .thc-left-nav {
        width: 100%;
        height: auto;
        justify-content: center;
        align-items: center;
    }

    .thc-left-nav .logo-nav {
        justify-content: center;
        align-items: center;
    }

    .logo-nav img {
        margin-left:38%;
        
    }

    .thc-right-nav .nav-tabs ul {
        position: absolute;
        top: 75px;
        left: 0;
        right: 0;
        flex-direction: column;
        text-align: center;
        background: #000;
        gap: 3rem;
        /* padding: 5%; */
        margin: 0;
        height: 300px;
        transition: all 0.6s;
        overflow: hidden;
        /* box-shadow: -2px -1px 20px 7px; */
    }

    .nav-tabs ul li a {
        color: #fff;
        font-weight: 500;
        font-size: 0.9rem;
    }

    .nav-tabs ul li {
        margin-top: 3%;
    }

    .hamburger-thc {
        display: block;
    }

    .thc-right-nav ul li .book-button {
        background: transparent;
        border: 1.2px solid #fff;
    }
    .thc-right-nav ul li .book-button:hover{
        background: #fff;
        color: #000;
    }
}

.restaurant-section {
    width: 100%;
    height: auto;
    padding: 2%;
    display: flex;
    flex-direction: column;
    background: hsla(0, 0%, 87%, 0.616);
    margin-top: 5%;
}

.rest-heading {
    text-align: center;
    justify-content: center;
    font-family: poppins;
    text-transform: capitalize;
    font-size: 1.8rem;
    margin-top: 1%;
}

.rest-section {
    width: 100%;
    height: auto;
    padding: 2%;
}

.rest-content {
    width: 100%;
    height: auto;
}

.rest-slider {
    width: 90%;
    height: auto;
    margin-left: 5%;
    margin-right: 5%;
    overflow: hidden;

}

.rest-content {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    overflow: hidden;
    width: max-content;
    white-space: nowrap;
    animation: dish-slider 20s linear infinite;
}

.rest-content img {
    width: 250px;
    height: auto;
    flex-shrink: 0;
}

@keyframes dish-slider {
    0% {
        transform: translateX(80%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media (max-width:986px) {
    @keyframes dish-slider {
        0% {
            transform: translateX(0%);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    .rest-heading h2 {
        font-size: 1.2rem;
    }

    .rest-content {
        gap: 0.2rem;
        animation: dish-slider 20s linear infinite;
    }
}

.about-thc-section {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.about-thc {
    width: 80%;
    height: auto;
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 3%;
}

.thc-heading h1 {
    text-align: center;
    font-family: Nova slim;
    text-transform: capitalize;
    font-size: 1.7;
}

.about-thc-content {
    width: 100%;
    height: auto;
    margin-top: 2%;
}

.about-thc-content p {
    font-family: Libre Baskerville;
    font-weight: 400;
    font-size: 0.9rem;
    text-align: center;
    color: #999;
    transition: 0.63s;
}

.about-thc-content p:hover {
    color: #000;
}

.about-thc-icons {
    width: 80%;
    display: flex;
    flex-direction: row;
    gap: 5rem;
    text-align: center;
    margin-top: 2%;
    margin-left: 38%;
    margin-right: 20%;
    align-items: center;
}

.about-thc-icons i {
    text-align: center;
    font-size: 2rem;
    border: 1.2px solid #999;
    color: #999;
    border-radius: 50px;
    padding: 8px;
}

@media(max-width:986px) {
    .thc-heading h1 {
        font-size: 1.5rem;
    }

    .about-thc-content p {
        font-size: 0.8rem;
    }

    .about-thc-icons {
        margin-left: 18%;
        gap: 2rem;
    }

    .about-thc-icons i {
        font-size: 1.2rem;
    }
}

.gallery-heading h2 {
    text-align: center;
    font-family: poppins;
    font-size: 1.8rem;
}

@media(max-width:986px) {
    .gallery-heading h2 {
        font-size: 1.2rem;
    }
}

.gallery-section {
    width: 80%;
    margin: 40px auto 0 auto;
    padding: 0;
}

.gallery-section .gallery-swiper {
    width: 100%;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
}

.gallery-section .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.gallery-section .swiper-slide img {
    width: 95%;
    height: 90%;
    object-fit: cover;
    border-radius: 16px;
    margin: 0 auto;
    /* box?-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.28), 0 1.5px 8px 0 rgba(0, 0, 0, 0.18); */
    background: #fff;
    display: block;
    cursor: grab;
}

.gallery-section .swiper-button-next,
.gallery-section .swiper-button-prev {
    display: none !important;
}

.hills-section {
    width: 80%;
    /* height: auto; */
    margin-top: 3%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('hills.jpg');
    height: 350px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-left: 10%;
    border-radius: 10px;
}

.hill-info {
    width: 80%;
    height: auto;
    margin-left: 10%;
}

.hill-info .hill-img {
    width: 100%;
    height: auto;
    background-size: contain;
    scroll-behavior: smooth;
}

.hill-img img {
    width: 100%;
    height: 250px;
}

.hill-info-content {
    width: 40%;
    height: auto;
    padding: 2%;
    background: #fff;
    float: right;
    margin-top: 3%;
    margin-right: 5%;
    transition: 0.6s;
}

.hill-info-content h2 {
    font-size: 1.8rem;
    font-family: Nova slim;
    text-align: center;
    text-transform: capitalize;
}

.hill-info-content h2 span {
    color: rgb(23, 205, 20);
}

.hr-line {
    width: 100%;
    height: 1.1px;
    background: #999;
}

.hill-info-content p {
    font-family: Libre Baskerville;
    font-size: 0.8rem;
    color: #999;
    text-align: justify;
    margin-top: 2%;
    transition: 0.6s;
}

@media(max-width:986px) {
    .hills-section {
        height: 500px;
        padding-top: 5%;
    }

    .hill-info-content {
        width: 80%;
        height: auto;
        margin-left: 10%;
        margin-top: 5%;
        float: none;
        padding: 5%;

    }
}

.faq {
    width: 100%;
    height: auto;
    padding: 2%;
    background: hsla(0, 0%, 87%, 0.616);
}

.question-n-ans {
    width: auto;
    height: auto;
    background: #fff;
    padding: 3%;
    border-radius: 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    cursor: grab;
}

.question h3 {
    font-family: poppins;
    font-size: 1.2rem;
}

.ans p {
    font-family: inter;
    font-size: 1rem;
    font-style: italic;
}

.icon-faq i {
    font-size: 2.5rem;
    color: rgb(207, 151, 8);
    background: rgba(207, 151, 8, 0.456);
    padding: 15px;
    border-radius: 50px;
}

@media (max-width:986px) {
    .qna-heading {
        margin-top: 3%;
    }
}

footer {
    width: 100%;
    height: auto;
    margin-top: 3%;
}

.footer {
    width: 100%;
    height: auto;
    background: #393838;
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.footer-left {
    width: 100%;
    height: auto;
    margin-top: -5%;
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.info-footer {
    width: 100%;
    height: auto;
    padding: 0;
}

.lf-1,
.lf-2 {
    width: 50%;
}

.lf-1 img {
    width: 250px;
    height: auto;
    margin-left: 12%;
}

.lf-1 .thc-footer-info {
    width: 100%;
    height: auto;
}

.thc-footer-info p {
    font-family: inter;
    font-size: 0.9rem;
    color: #fff;
    width: 55%;
    margin-left: 5%;
    margin-top: -10%;
    text-align: justify;
    font-weight: 300;
}

.contact-footer {
    display: flex;
    flex-direction: row;
    gap: 0.2rem;
    margin-left: 5%;
}

.contact-footer ul {
    list-style-type: none;
}

.contact-footer ul li {
    line-height: 40px;
}

.contact-footer ul li a {
    color: #fff;
    text-transform: capitalize;
    text-decoration: none;
}

.contact-footer ul li i {
    margin-right: 5px;
}

.social {
    margin-left: 5%;
}

.footer-left {
    margin-top: 0%;
}

.lf-2 {
    margin-top: 8%;
}

.sitemap ul {
    list-style-type: none;
    padding: 0;
}

.sitemap ul li {
    font-family: inter;
    font-size: 1rem;
    line-height: 35px;
    font-weight: 300;
    padding: 0;
    width: 60%;
}

.sitemap ul li a {
    color: #fff;
    text-transform: capitalize;
    text-decoration: none;
}

.sitemap-head h4 {
    color: #fff;
    text-transform: capitalize;
    font-family: poppins;
    font-size: 1.3rem;
    width: 60%;
}

.sitemap ul li:hover {
    margin-left: 3%;
    transition: 0.6s;
}

.sitemap ul li i {
    font-size: 1rem;
    margin-right: 1%;
    color: #fff;
}

.p-3 {
    margin-right: 5%;
    margin-top: 3%;
    color: #fff;
    text-align: center;
    font-family: poppins;
    text-transform: capitalize;
    font-size: 1.3rem;
}
.p-3 iframe{
    height:350px;
    width: 350px;
}
.sub-footer{
    width: 100%;
    height: 132px;
    background: #161616;
    padding-top: 0.3%;
}
.social-footer ul{
    list-style-type: none;
    display: flex;
    flex-direction: row;
    gap: 3rem;
    text-align: center;
    justify-content: center;
}
.social-footer ul li{
    font-size: 1.5rem;
}
.social-footer ul li a{
    color: #fff;
}
.social-footer ul li a i{
transition: 0.6s;
}
.fa-facebook-f:hover{
    color: #1877f3;
    border-radius: 50%;
}
.fa-instagram:hover{
    color: #E4405F;
    border-radius: 30%;
}
.fa-whatsapp:hover{
    color: #25D366;
    border-radius: 30%;
}
.sub-footer-two{
    text-align: center;
}
.sub-footer-two ul li a{
    color: #ffffffb3;
    font-size: 0.9rem;
    font-weight: 300;
    text-decoration: none;
}
.sub-footer ul li a span{
    color: #b48c09;
    text-transform: uppercase;
    font-weight: 500;
}
@media(max-width:986px){
    .footer{
        display: flex;
        flex-direction: column;
    }
    .footer-left{
        display: flex;
        flex-direction: column;
    }
    .lf-1,.lf-2{
        width: 95%;
    }
    .p-3 iframe{
        width: 90%;
    }
    .sitemap{
        width: 94%;
        margin-left: 10%;
    }
    .thc-footer-info{
        width: 90%;
    }
    .thc-footer-info p{
        width: 90%;
        margin-left: 5%;
    }
    .sitemap ul li{
        width: 90%;
    }
}

/* Dates */
.date-picker-container {
  position: relative;
  max-width: 300px;
  margin: 20px;
}

.date-picker-container label {
  font-weight: bold;
  display: block;
  margin-top: 10px;
}

input[type="text"] {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  font-size: 16px;
  cursor: pointer;
}

.calendar {
  position: absolute;
  background: white;
  border: 1px solid #ccc;
  width: 100%;
  top: 140px;
  left: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 100;
}

.hidden {
  display: none;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  background: #f3f3f3;
}

.calendar-days,
.calendar-dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.calendar-days {
  font-weight: bold;
  background: #f9f9f9;
}

.calendar-dates div {
  padding: 10px;
  cursor: pointer;
  border-radius: 4px;
}

.calendar-dates div:hover {
  background: #eee;
}

.calendar-dates .selected {
  background: #007bff;
  color: white;
}

.calendar-dates .in-range {
  background: #d1ecf1;
}

.calendar-dates .disabled {
  color: #ccc;
  cursor: not-allowed;
}
.select-dates{
    width: 100%;
    height: auto;
    background: hsla(0, 0%, 87%, 0.616);
    margin-top: 2%;
    padding: 3%;
}

.availability{
    width:90%;
    margin-left: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.dates-heading h3{
    font-family: poppins;
    font-size: 1.6rem;
    text-transform: capitalize;
}
.date-picker-container{
    display: flex;
    flex-direction: row;
    gap: 5rem;
    width: 100%;
    height: auto;
    /* margin-left: 0%; */
    margin-right: 35%;
    text-align: center;
    /* margin-top: -1%; */
    font-family: inter;
}
.date-picker-container input{
    width: 200px;
    height: 40px;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}
.calculate-days {
    width: 90%;
    margin-left: 5%;
    margin-top: 2%;
    font-family: poppins;
    font-size: 1rem;
    text-align: center;
    color: green;
}
.calculate-days .error {
    color: red;
}
.check-avail-button {
    width: 90%;
    margin-left: 5%;
    text-align: center;
    margin-top: 2%;
}
.check-avail-button button {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: inter;
    border-radius: 50px;
    transition: 0.6s;
    outline: none;
}
.check-avail-button button:hover {
    background:transparent;
    color: #000;
    border: 1px solid #000;
}
@media(max-width:986px){
    .dates-heading h3 {
        font-size: 1rem;
        text-align: center;
    }
    .date-picker-container {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-right: 0;
    }
    .availability{
        width: 100%;
        margin-left: 0;
    }
    .date-picker-container input {
        width: 100%;
        /* margin-left: 5%; */
    }
    .calculate-days {
        font-size: 0.9rem;
    }
    .check-avail-button button {
        width: 100%;
    }
    .guest-count {
        width: 100%;
        margin-left: 0;
    }
    .guest-count select {
        width: 240px;
        height: 40px;
        padding: 10px;
        font-size: 1rem;
        border: 1px solid #ccc;
        border-radius: 5px;
        background-color: #f9f9f9;
    }
    
}
.guest-count {
    width: 90%;
    margin-left: 0%;
    /* margin-top: 2%; */
    font-family: inter;
    font-size: 1rem;
    text-align: center;
}
.guest-count select {
    width:240px ;
    height: 40px;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    outline: none;
}