/*
Theme Name: Destinobella WP
Theme URI: https://wordpress.org/
Author: Destinobella WP
Author URI: https://wordpress.org/
Description: Destinobella WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: destinobella-wp
*/

.barlow-regular {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.gilda-display-regular {
  font-family: "Gilda Display", serif;
  font-weight: 400;
  font-style: normal;
}

.barlow-condensed-thin {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.barlow-condensed-extralight {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.barlow-condensed-light {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.barlow-condensed-regular {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.barlow-condensed-medium {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.barlow-condensed-semibold {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.barlow-condensed-bold {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.barlow-condensed-extrabold {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.barlow-condensed-black {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.barlow-condensed-thin-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.barlow-condensed-extralight-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.barlow-condensed-light-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.barlow-condensed-regular-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.barlow-condensed-medium-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.barlow-condensed-semibold-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.barlow-condensed-bold-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.barlow-condensed-extrabold-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.barlow-condensed-black-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-style: italic;
}

body {
    font-family: "Barlow", sans-serif;
    background:
    linear-gradient(
      rgba(255, 243, 222, 0.7),
      rgba(255, 243, 222, 0.7)
    ),
    url("assets/images/leaves.webp") center repeat;
}
.Barlow {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}

img {
    min-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.clear {
    clear: both;
}

.iconRounded {
    border: 1px solid #0033a7;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #0033a7;
    padding: 6px;
    letter-spacing: normal;
    vertical-align: middle;
}


/* Main Css */

.sidebar-open {
    overflow: hidden;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}
.sidebar-open .overlay {
    opacity: 1;
    visibility: visible;
}
.header {
  /*  padding: 30px 0;
    background-color: #311432;*/
    box-shadow: 3px 3px 3px #ccc;
    z-index: 99;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
}
.logo {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
}
/*.container {
    padding: 0 15px;
}*/
.row-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.nav-list {
    display: flex;
    align-items: center;
}
.nav-list li {
    padding: 0 20px;
}
.nav-list li a {
    color: #15516f;
    font-size: 20px;
    text-decoration: none;
    padding: 10px 0;
    position: relative;
    display: block;
    font-weight: 500;
}
.nav-list li a::after {
    content: "";
    background-color: #ffffff;
    width: 0;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.3s linear;
}
.nav-list li a:hover::after {
    width: 100%;
}
.nav-list li.active a::after {
    width: 100%;
}
.nav-list li.with-submenu {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.nav-list li.with-submenu > a {
    margin-right: 10px;
}
.nav-list li.with-submenu::after {
    content: "";
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    width: 5px;
    height: 5px;
    transform: rotate(45deg);
    right: 0;
    margin-bottom: 5px;
    transition: all 0.3s;
}
.nav-list li.with-submenu:hover::after {
    transform: rotate(225deg);
    margin-top: 10px;
}
.nav-list li.with-submenu .submenu {
    position: absolute;
    left: 50%;
    top: 100%;
    background: #ffffff;
    border-radius: 10px;
    transform: translateX(-50%);
    box-shadow: 2px 2px 1px 2px #ccc;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}
.nav-list li.with-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
}
.nav-list li.with-submenu .submenu li {
    padding: 0;
}
.nav-list li.with-submenu .submenu a {
    color: #000000;
    display: block;
    padding: 8px 15px;
    transition: all 0.3s;
}

.nav-list li.with-submenu .submenu a:hover {
    background-color: rgba(49, 20, 50, 0.3);
}
/* .nav-list li.with-submenu .submenu a::after {
    display: none;
} */
.nav-list li.with-submenu > a {
    position: relative;
    z-index: 1;
}
.hamburger {
    display: none;
    z-index: 99;
}
.hamburger .line {
    width: 25px;
    height: 1.5px;
    background-color: #000;
    display: block;
    margin: 5px 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.hamburger .line:nth-child(2) {
    width: 15px;
}
.hamburger:hover {
    cursor: pointer;
}
.hamburger.is-active .line {
    background-color: #311432;
}
.hamburger.is-active .line:nth-child(2) {
    opacity: 0;
}
.hamburger.is-active .line:nth-child(1) {
    -webkit-transform: translateY(6.5px) rotate(45deg);
    -ms-transform: translateY(6.5px) rotate(45deg);
    -o-transform: translateY(6.5px) rotate(45deg);
    transform: translateY(6.5px) rotate(45deg);
}
.hamburger.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-6.5px) rotate(-45deg);
    -ms-transform: translateY(-6.5px) rotate(-45deg);
    -o-transform: translateY(-6.5px) rotate(-45deg);
    transform: translateY(-6.5px) rotate(-45deg);
}
@media (max-width: 768px) {
    .header {
        padding: 10px 0;
    }
    .hamburger {
        display: block;
    }
    .nav-wrap {
        position: fixed;
        top: 0;
        right: -100%;
        transform: translateX(100%);
        background-color: #ffffff;
        transition: all 0.5s linear;
        max-width: 300px;
        width: 100%;
        height: 100%;
        box-shadow: 2px -5px 5px 3px #ccc;
        opacity: 0;
        visibility: hidden;
        z-index: 0;
    }
    .nav-wrap.is-open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        right: 0;
        z-index: 9;
    }
    .nav-list {
        flex-direction: column;
        align-items: unset;
        opacity: 0;
        visibility: hidden;
        transition-delay: 0.5s;
        transition-duration: 1s;
        transition-property: all;
        padding: 10px;
    }
    .nav-wrap.is-open .nav-list {
        opacity: 1;
        visibility: visible;
    }
    .nav-list li {
        padding: 7px 10px;
    }
    .nav-list li a {
        color: #311432;
        text-align: left;
        display: inline-block;
        padding: 2px 0;
    }
    .nav-list li a::after {
        background-color: #311432;
    }
    .nav-list li.with-submenu {
        display: block;
    }
    .nav-list li.with-submenu::after {
        border-color: #311432;
        right: 10px;
        top: 12px;
    }
    .nav-list li.with-submenu:hover::after {
        transform: rotate(45deg);
        margin-top: 0;
    }
    .nav-list li.with-submenu.is-open::after {
        transform: rotate(225deg);
        margin-top: 5px;
    }
    .nav-list li.with-submenu .submenu {
        position: static;
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border-radius: 0;
        border-top: 1px solid #ccc;
        display: none;
        transition: auto;
        margin: 10px 0;
    }
    .nav-list li.with-submenu .submenu li {
        padding: 7px 10px;
    }
    .nav-list li.with-submenu .submenu li:hover a {
        background-color: transparent;
    }
    .nav-list li.with-submenu .submenu li a {
        display: inline-block;
        padding: 2px 0;
    }
    .nav-list li.with-submenu .submenu li a::after {
        display: block;
    }
    .row-wrap {
      display: flex;
      flex-wrap: inherit;
      align-items: center;
      justify-content: space-between;
    }
}


/*Header Section Css*/

.logo img{
    width: 30%;
    min-width: 30%;
}

.avboutuscontainer{
    margin: 50px 0 0 0;
}

.aboutrightimg img{
    width: 100%;
}

.aboutleftpanel{
    position: relative;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.aboutleftpanel h1{
    font-size: 40px;
    color: #15516f;
      font-family: "Gilda Display", serif;
  font-weight: 700;
}

.aboutleftpanel h2{
    font-size: 25px;
    color: #15516f;
      font-family: "Gilda Display", serif;
  font-weight: 600;
}

.aboutleftpanel p{
    font-size: 18px;
    font-weight: 400;
    color: #000;
    line-height: 28px;
}

.aboutbtn a{
    background: #15516f;
    color: #fff;
    padding: 12px 25px;
    font-size: 18px;
    border-radius: 5px;
    font-weight: 600;
}
.aboutbtn{
    margin: 30px 0 0 0;
}

.aboutbtn a:hover{
/*    background: #f69726;*/
    color: #15516f;
    transition: all 0.8s ease-in-out;
    text-decoration: none;
}

.amenitiescontainer{
    margin: 50px 0 0 0;
}

.amenitiescontainer h2{
    text-align: center;
    font-size: 40px;
    color: #15516f;
    font-weight: bold;
    font-family: "Gilda Display", serif;
}

.amenitiescontainer p{
    font-size: 18px;
    font-weight: 400;
    color: #000;
    line-height: 28px;
    text-align: center;
}

.amenitiesicon h3{
     font-size: 16px;
    font-weight: 600;
    color: #000;
    line-height: 24px;
    text-align: center;
}

.amenitiesicon img{
    width: 60px;
    min-width: auto;
    display: block;
    margin: 0 auto 10px;
}

.amenitiesicon{
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    min-height: 185px;
    padding: 10px;
}
.amenitiesicon:hover{
    background: #f69726;
    transition: all 0.8s ease-in-out;
    text-decoration: none;
}

.whychooseuscontainer{
    margin: 50px 0 0 0;
}

.whychooseusimg img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.whychooseus h2{
    text-align: left;
    font-size: 40px;
    color: #15516f;
    font-weight: bold;
    font-family: "Gilda Display", serif;
}

.whychooseus ul li{
    list-style: disc;
    font-size: 16px;
    font-weight: 400;
    color: ##4b5563;
    line-height: 28px;
    text-align: left;
}

.whychooseus ul{
    margin: 0 30px;
    padding-bottom: 20px;
}

.whychooseus{
    position: relative;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.whychooseus p{
    text-align: left;
    font-size: 18px;
    font-weight: 400;
    color: #000;
    line-height: 28px;
}

.roomtypecontainer{
    margin: 50px 0 0 0;
}

.roombgimg{
    background-image: linear-gradient(rgb(0 0 0 / 53%), rgb(0 0 0)), url(assets/images/homestickbg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    height: 350px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
    padding: 60px 20px 0 20px;
}

.roombgimg:hover{
    box-shadow: rgba(0, 0, 0, 0.2) 0px 60px 40px -7px;
    transition: all 0.6s ease-in;
}

.roombgimg p a{
    font-weight: 600;
    color: #fff;
}
.roombgimg h2{
    text-align: center;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 30px;
    font-family: "Gilda Display", serif;
}
.roombgimg p{
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    line-height: 28px;
}

.bookingbtn{
    text-align: center;
    margin: 30px 0 0 0;
}

/*.bookingbtn a{
    background: #e36414;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.bookingbtn a:hover{
    background: #0b4f6c;
}*/

.reviewcontainer{
    margin: 50px 0 0 0;
    padding: 50px 0;
    background: #0000000d;
}

.reviewcontainer h2{
    text-align: center;
    font-size: 40px;
    color: #15516f;
    font-weight: bold;
    margin-bottom: 30px;
    font-family: "Gilda Display", serif;
}

.reviewbox h3{
    font-size: 20px;
    font-weight: 600;
    color: #000;
    line-height: 28px;
    text-align: left;
}

.reviewbox p{
    font-size: 18px;
    font-weight: 400;
    color: #000;
    line-height: 28px;
}

.owl-dots {
    text-align: center;
}
.owl-dots button.owl-dot.active span, 
.owl-dots button.owl-dot:hover span {
  background-color: #15516f;
  border-radius: 50%;
  height: 12px;
  width: 12px;
  position: absolute;
  top: 1px;
  left:1px;
}
.owl-dots button.owl-dot{
  background: #15516f !important;
   border-radius: 50%;
   height: 16px;
   width: 16px;
   position: relative;
   margin: 0 5px;
}

.reviewbox{
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    padding: 10px;
    min-height: 250px;
}

.blogcontainer{
    margin: 50px 0 0 0;
}
.bloginnersec img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    margin: 0 0 10px;
}

.bloginnersec h3{
    font-size: 25px;
    font-weight: 600;
    color: #0b4f6c;
    line-height: 28px;
    text-align: left;
    margin: 10px 0 10px 0;
}
.bloginnersec p{
    font-size: 18px;
    font-weight: 400;
    color: #000;
    line-height: 28px;
    margin-bottom: 0px;
}
.bloginnersec{
    margin-bottom: 30px;
}

.bloginnersec p span{
    font-size: 13px;
    font-weight: 400;
    color: #000;
    line-height: 28px;
}

.bloginnersec a{
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    color: #4b5563;
    line-height: 28px;
}

.blogcontainer h2{
    text-align: center;
    font-size: 40px;
    color: #15516f;
    font-weight: bold;
    margin-bottom: 30px;
    font-family: "Gilda Display", serif;
}

.footercontainer{
    margin: 50px 0 0 0;
    background: #15516f;
    padding: 30px 0 0 0;
}

.footercontainer{
    background-image: linear-gradient(rgb(0 0 0 / 53%), rgb(0 0 0)), url(assets/images/footerbgA.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
}
.footersociaal ul li{
    display: inline-block;
    padding: 0 5px;

}

.footersociaal ul li a{
    color: #fff;
    font-size: 18px;
}

.footerlogo img{
    width: 45%;
    min-width: 45%;
}

.quicklinks h2{
    text-align: left;
    font-size: 30px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
}

.quicklinks ul li{
    padding-bottom: 15px;
}

.quicklinks ul li:hover{
    transition: all 0.8s ease-in;
    transform: translateX(1em);
}

.quicklinks ul li a{
    color: #fff;
    font-size: 18px;
}

.quicklinks ul li a:hover{
    color: #e36414;
    text-decoration: none;
}

.footercontact h2{
    text-align: left;
    font-size: 30px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
}

.footercontact ul li p{
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    line-height: 20px;
    margin-bottom: 20px;
}

.footercontact ul li p a{
    color: #fff;
}

.footercontact ul li p a:hover{
    text-decoration: none;
}

.copyrightrs{
    text-align: center;
    margin: 10px 0 0 0;
}

.copyrightrs p{
    color: #fff;
    font-weight: 400;
    font-size: 16px;
}

.footersociaal{
    margin: 20px 0 0 0;
}

.footersociaal ul li i{
    font-size: 25px;
}

.footersociaal ul li a:hover{
    color: #f69726;
    transition: all 0.6s ease-in;
}

.blogleftpanel img {
    width: 100%;
    height: 850px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.innerpagecontainer img{
    width: 100%;
}

.contactpagecontaiber{
    margin: 50px 0 0 0;
}

.contactpagecontaiber h1{
    text-align: left;
    font-size: 40px;
    color: #15516f;
    font-weight: bold;
    margin-bottom: 30px;
}

.contactbox i{
    font-size: 18px;
    color: #fff;
    width: 35px;
    height: 35px;
    background: #15516f;
    padding: 10px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.contactbox{
    box-shadow: rgba(14, 63, 126, 0.06) 0px 0px 0px 1px, rgba(42, 51, 70, 0.03) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 2px 2px -1px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px, rgba(42, 51, 70, 0.03) 0px 10px 10px -5px, rgba(42, 51, 70, 0.03) 0px 24px 24px -8px;
    padding: 10px;
    height: 140px;
}

.contactbox:hover{
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
    transition: all 0.6s ease-in-out;
}

.contactbox p{
    font-size: 18px;
    font-weight: 400;
    color: #000;
    line-height: 28px;
    margin-bottom: 10px;
}

.contactbox p a{
    color: #4b5563;
    text-decoration: none;
}

.contactformcontainer{
    margin: 50px 0 0 0;
}

.aboutuscontaiber{
    margin: 50px 0 0 0;
}

.aboutuscontaiber h1{
    text-align: left;
    font-size: 40px;
    color: #15516f;
    font-weight: bold;
    margin-bottom: 30px;
}

.aboutbox p{
    font-size: 18px;
    font-weight: 400;
    color: #000;
    line-height: 28px;
    margin-bottom: 10px;
}

.ourcollaboration{
    margin: 50px 0 0 0;
}

.ourcollaboration h2{
    text-align: center;
    font-size: 40px;
    color: #15516f;
    font-weight: bold;
}

.ourcollaboration p {
    font-size: 18px;
    font-weight: 400;
    color: #4b5563;
    line-height: 28px;
    text-align: center;
}

.collaborationtext p{
    font-size: 18px;
    font-weight: 400;
    color: #000;
    line-height: 28px;
    text-align: left;
}

.collaborationtext ul li{
    font-size: 16px;
    font-weight: 400;
    color: #4b5563;
    line-height: 28px;
    text-align: left;
}

.collaborationtext ul li::before{
  position: relative;
  top: calc(50% - 4px); /* half font-size */
  left: 0px;
  font-family: "Font Awesome 5 Free";
  content: "\f058";
  font-size: 15px;
  font-weight: 900;
  color: #15516f;
  margin: 0 10px;
}

.collaborationright img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    border-radius: 5px;
}

.purposecontainer{
    margin: 50px 0 0 0;
}

.purposebox h2{
    text-align: left;
    font-size: 40px;
    color: #15516f;
    font-weight: bold;
}

.purposebox h3{
    text-align: left;
    font-size: 20px;
    color: #15516f;
    font-weight: 600;
}

.purposebox ul li{
    font-weight: 400;
    color: #4b5563;
    font-size: 16px;
    line-height: 28px;
    text-align: left;
}

.purposebox ul li::before{
  position: relative;
  top: calc(50% - 4px); /* half font-size */
  left: 0px;
  font-family: "Font Awesome 5 Free";
  content: "\f058";
  font-size: 15px;
  font-weight: 900;
  color: #15516f;
  margin: 0 10px;
}
.purposebox p{
    font-size: 18px;
    font-weight: 400;
    color: #000;
    line-height: 28px;
    text-align: left;
}
.ourcommitment h2{
    text-align: left;
    font-size: 40px;
    color: #15516f;
    font-weight: bold;
}

.ourcommitment h3{
    text-align: left;
    font-size: 20px;
    color: #15516f;
    font-weight: 600;
}

.ourcommitment ul li{
    font-size: 16px;
    font-weight: 400;
    color: #4b5563;
    line-height: 28px;
    text-align: left;
}

.ourcommitment ul li::before{
  position: relative;
  top: calc(50% - 4px); /* half font-size */
  left: 0px;
  font-family: "Font Awesome 5 Free";
  content: "\f058";
  font-size: 15px;
  font-weight: 900;
  color: #15516f;
  margin: 0 10px;
}

.ourcommitment p{
    font-size: 18px;
    font-weight: 400;
    color: #000;
    line-height: 28px;
    text-align: left;
}

.ourcommitment,
.purposebox{
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 20px;
    height: 400px;
}

.ourcommitment:hover,
.purposebox:hover{
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    transition: all 0.6s ease-in;
}

.blogFeaturedImage img{
    width: 100%;
}

.blogpagecontainer{
    margin: 30px 0 0 0;
}

.blogpagecontainer h1{
    text-align: left;
    font-size: 40px;
    color: #15516f;
    font-weight: bold;
    margin-bottom: 30px;
}

.postEntry h2,
.postEntry h2 a{
    text-align: left;
    font-size: 25px;
    color: #15516f;
    font-weight: 600;
    margin-bottom: 30px;
}

.postEntry p{
    font-size: 18px;
    font-weight: 400;
    color: #000;
    line-height: 28px;
    text-align: left;
}

.postEntry{
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 20px 10px;
    margin-bottom: 20px;
}

.more a{
    background: #15516f;
    color: #fff;
    padding: 12px 25px;
    font-size: 18px;
    border-radius: 5px;
    font-weight: 600;
}

.more a:hover {
    background: #f69726;
    color: #15516f;
    transition: all 0.8s ease-in-out;
    text-decoration: none;
}

.blogSidebar ul li{
    list-style: disc;
}

.blogSidebar ul li a{
    color: #4b5563;;
}

.blogSidebar ul{
    margin: 0 15px;
}

.blogSidebar h2{
    text-align: left;
    font-size: 20px;
    color: #15516f;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 10px;
}

.blogsingletitile h1{
    text-align: left;
    font-size: 40px;
    color: #15516f;
    font-weight: bold;
    margin-bottom: 20px;
}

.blogsingletitile{
    margin: 30px 0 0 0;
}

.blogdetailscontent p{
     font-size: 18px;
    font-weight: 400;
    color: #000;
    line-height: 28px;
    text-align: left;
}

.innertitle{
    margin: 50px 0 0 0;
}

.innertitle h1{
    text-align: left;
    font-size: 40px;
    color: #15516f;
    font-weight: bold;
    margin-bottom: 30px;
}


/* ==================================================
   BOUTINDIA STYLE REFINEMENT OVERRIDES
   (Appended to original CSS – nothing removed)
================================================== */

/* FONT + BASE COLOR */
body {
    font-family: "Barlow", sans-serif;
    color: #4b5563;
    line-height: 1.7;
}

/* MAX WIDTH ALIGNMENT */
.row-wrap,
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* HEADER CLEANUP */
.header {
    box-shadow: none;
    border-top: 4px solid #f69726;
    border-bottom: 1px solid #0b4f6c;
/*    background: #ffffff;*/
background: rgb(251 227 184);;
}

/* NAVIGATION */
.nav-list li a {
    font-size: 17px;
    color: #1f2933;
    font-family: "Barlow Condensed", sans-serif;
    text-transform: uppercase;
}

.nav-list li a::after {
    background-color: #e36414;
}

/* PRIMARY HEADING COLOR */
.aboutleftpanel h1,
.amenitiescontainer h2,
.whychooseus h2,
.reviewcontainer h2,
.blogcontainer h2,
.contactpagecontaiber h1,
.aboutuscontaiber h1,
.ourcollaboration h2,
.purposebox h2,
.ourcommitment h2,
.blogpagecontainer h1,
.blogsingletitile h1,
.innertitle h1 {
    color: #0b4f6c;
}

/* PARAGRAPH REFINEMENT */
.aboutleftpanel p,
.amenitiescontainer p,
.whychooseus p,
.reviewbox p,
.bloginnersec p,
.contactbox p,
.aboutbox p,
.collaborationtext p,
.purposebox p,
.ourcommitment p,
.postEntry p,
.blogdetailscontent p {
    color: #4b5563;
    font-size: 16px;
}

/* BUTTON STYLE UPDATE */
.aboutbtn a,
.bookingbtn a,
.more a {
    background: #f69726;
  color: #ffffff;
  padding: 14px 34px;
  border-radius: 40px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.35s ease;
  border: none;
}

/* Arrow */
/*.aboutbtn a::after,
.bookingbtn a::after,
.more a::after {
    content: "→";
    font-size: 16px;
    transition: transform 0.3s ease;
}*/

/* Hover Effect */
.aboutbtn a:hover,
.bookingbtn a:hover,
.more a:hover {
    background: #0b4f6c;
    color: #f69726;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.aboutbtn a:hover::after,
.bookingbtn a:hover::after,
.more a:hover::after {
    transform: translateX(6px);
}

/* SECTION SPACING IMPROVEMENT */
.avboutuscontainer,
.amenitiescontainer,
.whychooseuscontainer,
.roomtypecontainer,
.reviewcontainer,
.blogcontainer,
.contactpagecontaiber,
.aboutuscontaiber,
.ourcollaboration,
.purposecontainer {
    margin-top: 40px;
}

/* SOFT SECTION BACKGROUND */
.reviewcontainer {
    background: #ddcfb3;
}

/* CARD REFINEMENT */
.amenitiesicon,
.reviewbox,
.postEntry,
.contactbox,
.purposebox,
.ourcommitment {
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
    min-height: 180px;
}

.amenitiesicon:hover,
.reviewbox:hover,
.postEntry:hover {
    transform: translateY(-6px);
}

/* FOOTER UPDATE */
.footercontainer {
    background-color: #0b4f6c;
}

.footercontainer a:hover {
    color: #e36414;
}

.blogdetailscontent ul li{
    list-style: disc;
}

.blogdetailscontent ul{
    padding: 0 20px;
}

.aboutwhoweare h3{
    text-align: left;
    font-size: 20px;
    color: #15516f;
    font-weight: 600;
}

.misionvisonimg img{
    width: 100%;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    border-radius: 10px;
}

.misionvisioncontainer{
    margin: 50px 0 0 0;
}

.misionbox h2{
    text-align: left;
    font-size: 40px;
    color: #0b4f6c;
    font-weight: bold;
    font-family: "Gilda Display", serif;
}

.misionbox{
    position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}




.collaborationroombgimg{
    background-image: linear-gradient(rgb(0 0 0 / 53%), rgb(0 0 0)), url(assets/images/booknowbg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 350px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
    padding: 60px 20px 0 20px;
}

.collaborationroombgimg:hover{
    box-shadow: rgba(0, 0, 0, 0.2) 0px 60px 40px -7px;
    transition: all 0.6s ease-in;
}

.collaborationroombgimg h2{
    text-align: center;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 30px;
    font-family: "Gilda Display", serif;
}
.collaborationroombgimg p{
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    line-height: 28px;
}

.chetryhomeimg img{
    width: 100%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    border-radius: 5px;
}

.destinibellagallerycon{
    margin: 100px 0 0 0;
}

.destinoimg img{
    height: 500px;
    object-fit: cover;
    border-radius: 5px;
}

.destinogallery-slider .owl-nav{
    margin: 15px 5px;
    text-align: center;
}

.destinibellagallerycon h2{
    text-align: center;
    font-size: 40px;
    padding-bottom: 10px;
    color: #0b4f6c;
    font-weight: bold;
    font-family: "Gilda Display", serif;
}

.whatsappiconsticky {
    position: fixed; /* Fixes the button to the viewport */
    right: 20px;     /* Positions it 20px from the right edge */
    bottom: 20px;    /* Positions it 20px from the bottom edge */
    background-color: #25d366; /* WhatsApp brand color */
    color: white;    /* Icon color */
    width: 60px;     /* Button width */
    height: 60px;    /* Button height */
    border-radius: 50%; /* Makes it a circle */
    text-align: center; /* Centers the icon */
    font-size: 30px; /* Icon size */
    line-height: 60px; /* Centers the icon vertically */
    z-index: 1000;   /* Ensures it's above other elements */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow */
    transition: transform 0.3s ease-in-out;
}

.whatsappiconsticky a:hover {
    transform: scale(1.1); /* Optional: Adds a slight animation on hover */
}

.whatsappiconsticky a{
    color: #fff;
}