@import url('https://fonts.googleapis.com/css2?family=Bentham&family=Berkshire+Swash&family=Imperial+Script&display=swap');

:root {
    --primary-color: #632F06;
    --secondary-color: #A23D0F;
    --white-color: #FFFFFF;
    --footer-color: #F8ECE0;
    --text-color: #434343;
    --text-color-2: #727272;
    --my-font: "Bentham", serif;
    --my-font-2: "Berkshire Swash", serif;
    --my-font-3: "Imperial Script", cursive;
    --box-shadow: 4px 4px 20px 0px rgba(60, 60, 60, 0.2);
    --box-shadow-2: 0px 0px 25px 1px rgba(75, 75, 75, 0.1);
}

*,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-size: 100%;
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
    letter-spacing: 0.25px;
    color: #121212;
    /* background: #F2F8FD; */
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.1s ease-in;
}

h1,
h2,
h3,
h4 {
    font-weight: 500;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

ul {
    list-style: none;
}

.pointer {
    cursor: pointer;
}





/* ================================ 
Button styles section 
=================================== */
.btn1 {
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #EB9354;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    color: var(--white-color);
}

.btn1:hover {
    background: var(--primary-color);
}

.title {
    font-size: 48px;
    font-weight: 600;
    font-family: var(--my-font-2);
    color: var(--secondary-color);
}

/* ================================ 
Navbar section 
=================================== */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 99;
}

.navbar .nav-link {
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
    padding: 0 14px !important;
    margin: 0 10px;
    color: var(--primary-color);
    
}

.navbar .nav-link:hover{
    color: #fff;
    text-shadow: 0 2px 0px #4d4d4d;
}

.nav-logo {
    height: 70px;
}

.scroll-on{
    background: #dcb082;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}


/* ================================ 
Banner section 
=================================== */
.banner {
    width: 100%;
    overflow: hidden;
}

.banner .banner-img {
    width: 100%;
    object-fit: cover;
    height: 90vh;
}
.banner .kolka-contain {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) scale(0.8);
    z-index: 3;
}
.banner .kolka-contain .kolka {
    width: 600px;
    height: 600px;
    animation: rotation 30s linear infinite;
}
.banner .kolka-contain .item-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    z-index: 3;
    overflow-x: hidden;
    width: 450px;
    height: 450px;
}
.banner .kolka-contain .item-img {
    width: 450px;
    height: 450px;
}


@keyframes rotation {
    0%{
       transform: rotate(0deg);
      }
   100%{
       transform: rotate(360deg);
      }
   }

/* ================================ 
About section 
=================================== */
.about .inner-contain {
    display: grid;
    place-items: center;
    padding-right: 2rem;
}

.about .inner-contain p {
    font-family: var(--my-font);
    font-size: 24px;
    color: #121212;
}






/* ================================ 
Popular section 
=================================== */
.popular {
    background: url('../images/banner/popular-bg.jpg') no-repeat center;
    background-size: cover;
    height: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.popular .heading {
    position: absolute;
    top: 6%;
    left: 50%;
    transform: translateX(-50%);
}

.popular .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 24px;
    height: 24px;
    padding: 0;
    cursor: pointer;
    color: #b14d00;
    border: 0;
    outline: none;
    background: #b14d00;
    border-radius: 100%;
    position: relative;
}

.popular .slick-dots li button::before {
    content: '';
    width: 36px;
    height: 36px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid #A23D0F;
    background: transparent;
    border-radius: 50%;

}

.popular .slick-dotted.slick-slider {
    margin-bottom: 0;
}

.popular .slick-dots {
    bottom: -125px;
    gap: 30px;
    display: flex;
    justify-content: center;
}
.popular h4 {
    font-family: var(--my-font-3);
    font-size: 52px;
    color: #7B0002;
    font-weight: bold;
    padding-bottom: 0.25rem;
    margin-bottom: 0.25rem;
    border-bottom: 1px solid var(--white-color);
    text-align: center;
}
.popular p {
    font-family: var(--my-font-3);
    color: #7B0002;
    font-size: 28px;
    font-weight: 600;
    line-height: 34px;
    text-align: center;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
}



/* ================================ 
Service Section
===================================*/
.service .card {
    border: none;
    position: relative;
    border-radius: 20px;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
}

.service .card .card-body {
    padding: 25px;
    padding-top: 20px;
}

.service .card .card-img-top {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    width: 100%;
    height: 250px;
    object-fit: cover;
}


.service .card .card-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 8px;
    color: #A23D0F;
    font-weight: 600;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-family: var(--my-font-2);
}

.service .card .card-text {
    font-size: 14px;
    color: #616161;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.service .slick-prev {
    left: -55px;
}

.service .slick-next {
    right: -55px;
}







/* ================================ 
Parallax Section
===================================*/
.parallax-section {
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url("../images/banner/enquiry-bg.jpg") no-repeat center;
    color: var(--white-color);
    background-size: cover;
    background-attachment: fixed;
    padding: 4.5rem 0;
}

.parallax-section h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 24px;
}

.parallax-section h2 span {
    color: var(--primary-color);
}

.parallax-section .custom-btn {
    color: var(--light-color);
    border: 1px solid var(--light-color);
    font-family: "poppins", serif;
}

.parallax-section .custom-btn:hover {
    border: 1px solid var(--dark-color);
}

.parallax .group {
    position: relative;
}

.parallax .input {
    font-size: 16px;
    padding: 10px 30px 10px 5px;
    display: block;
    border: none;
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
    background: transparent;
    color: var(--white-color);
}

.parallax .select {
    height: 44px;
}

.parallax .select option {
    color: #121212;
}

.parallax .input:focus {
    outline: none;
}

.parallax label {
    color: #e0e0e0;
    font-size: 18px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 10px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.parallax .input:focus~label,
.input:valid~label {
    top: -20px;
    font-size: 14px;
    color: var(--white-color);
}

.parallax .bar {
    position: relative;
    display: block;
}

.parallax .bar:before,
.bar:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: var(--white-color);
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.parallax .bar:before {
    left: 50%;
}

.parallax .bar:after {
    right: 50%;
}

.parallax .input:focus~.bar:before,
.input:focus~.bar:after {
    width: 50%;
}

.parallax .highlight {
    position: absolute;
    height: 60%;
    width: 100%;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

.parallax .input-symbol {
    position: absolute;
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
    display: inline-block;
}





/* ================================ 
Menu Section
===================================*/
.menu {
    width: 100%;
    background: url("../images/banner/menu-bg.jpg") no-repeat center;
    color: var(--white-color);
    background-size: cover;
}

.menu h3 {
    font-size: 28px;
    font-family: var(--my-font-2);
    color: #A23D0F;
    margin-bottom: 1.5rem;
}



/* ================================ 
Footer Section
===================================*/

footer {
    width: 100%;
    background: #5C1D00;
    color: var(--white-color);
    font-size: 13px;
}

footer h4 {
    font-family: var(--my-font-2);
    font-size: 24px;
}

footer ul li a {
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.25s;
    font-weight: 500;
    color: var(--white-color);
}

footer ul li a::before {
    content: "-";
    padding-right: 5px;
    font-size: 20px;
    color: var(--white-color);
}

footer ul li a:hover {
    padding-left: 10px;
    /* color: var(--primary-color); */
}

footer .copy {
    border-top: 1px solid #bebebe;
    padding: 12px 0;
}

footer .copy p {
    color: var(--white-color);
    font-weight: 500;
}

.social-links {
    width: 40px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: transparent;
    color: var(--white-color);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-size: 18px;
    border: 1px solid var(--white-color);
    margin-right: 10px;
  }

  .social-links:hover {
    background-color: #FAF0E6;
    color: #121212;
  }