
/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #005b0f;
  --secondary-color:              #75b242;
  --section-bg-color:             #75b242;
  --custom-btn-bg-color:          #e7e7e7;
  --custom-btn-bg-hover-color:    #DDA15E;
  --dark-color:                   #000000;
  --p-color:                      #777777;
  --border-color:                 #7fffd4;
  --link-hover-color:             #E76F51;

  --body-font-family:             'Montserrat', sans-serif;

  --h1-font-size:                 35px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  16px;
  --btn-font-size:                16px;
  --form-btn-font-size:           18px;
  --menu-font-size:               16px;
  --nav-font-size:                12px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-thin:             200;
  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-bold:             700;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: 600;
  color: #ffffff;
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 50px;
}

.section-bg {
  background-color: #005b0f;
  position: relative;
  z-index: 1;
  max-height: 520px;
}

.section-bg2 {
  background-color: #ffffff;
  position: relative;
  height: 150px;
  z-index: 0;
}

.section-overlay {
  background-color:#ffffff;
  position: absolute;
  z-index: 9;
  width: 100%;
  height: 100%;
}

.section-overlay + .container {
  position: relative;
  z-index: 22;
}

.back-top-icon {
  font-size: var(--h2-font-size);
}

@media screen and (max-width: 767px) {

  .section-bg {
    background-color: #005b0f;
    position: relative;
    z-index: 1;
    max-height: fit-content;
  }

}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-small);
  color: var(--white-color);
  font-size: var(--nav-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 8px 10px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: #75b242;
  border: 2px solid var(--white-color);
  color: var(--white-color);
}

.custom-border-btn:hover {
  background: var(--white-color);
  color: var(--secondary-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

.custom-btn-italic {
  font-style: italic;
}


/*---------------------------------------
  NAVIGATION BAR & OFFCANVAS              
-----------------------------------------*/

.navbar { /* background color */
  background: transparent; 
  z-index: 999999;
  padding-top: 50px;
}

.navbar-nav { /* margin arrangement */
  margin-left: auto;
  z-index: 999999;
  margin-right: auto;
}

.navbar .container {
  background: #ffffff;
  border-radius: var(--border-radius-large);
  padding: 5px 30px;
  z-index: 999999;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5); /* Added shadow */
  margin-left: 250px;
  margin-right: 250px;
}

.navbar-brand,
.navbar-brand:hover {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
  display: block;
  color: var(--dark-color);
}

.navbar-brand-image {
  width: 80px;
  height: auto;
  margin-left: 20px;
}

.navbar .custom-btn {
  padding: 10px 20px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 5px;
}

.navbar-nav .nav-link { /* menu text config */
  display: inline-block;
  color: var();
  font-size: var(--nav-font-size);
  font-weight: var(--font-weight-bold);
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}

.navbar .dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border: 0;
  display: inherit;
  opacity: 0;
  min-width: 9rem;
  margin-top: 20px;
  padding: 13px 0 10px 0;
  transition: all 0.3s;
  pointer-events: none;
}

.navbar .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--white-color);
  position: absolute;
  top: -10px;
  left: 10px;
}

.navbar .dropdown-item {
  display: inline-block;
  color: var(--p-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
}

.navbar .dropdown-item.active, 
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus, 
.navbar .dropdown-item:hover {
  background: transparent;
  color: var(--link-hover-color);
}

.navbar .dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--menu-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {

  .navbar { /* background color */
  background: transparent; 
  z-index: 999999;
  padding-top: 50px;
  }

}

@media screen and (max-width: 767px) {

  .navbar {
    background: #ffffff;
    padding-top: 0px;
    box-shadow: none; /* Optional: remove shadow for simpler mobile UI */
  }

  .navbar-nav {
    margin-left: 0;
    margin-right: 0;
    flex-direction: column; /* Stack items vertically */
  }

  .navbar .container {
    margin: 0;
    padding: 10px 15px;
    border-radius: 0;
    box-shadow: none;
  }
  
}


.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 30px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--secondary-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--secondary-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

/*---------------------------------------
  HERO        
-----------------------------------------*/

.hero-section {
  position: relative;
  overflow: hidden;
  margin-left: 5%;
  margin-right: 5%;
  margin-top: -40px;
  max-height: 620px;
  background: transparent;
}

.hero-row {
  height: 100%;
}

/* LEFT SIDE */
.hero-left {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  /* Left side rounded only */
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  /* Remove right side rounding */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.hero-left .hero-content {
  position: relative;
  /* Left side rounded only */
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  padding: 15% 16%;
  text-align: left;
  /* Remove right side rounding */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 2;
  width: 100%;
  height: 450px; /* Lock this as needed */
}

.hero-left .hero-content2 {
  text-align: justify;
}

.hero-slides-left {
  position: absolute !important;
  width: 100%;
  height: 100%;
  z-index: 1;

  /* Left side rounded only */
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;

  /* Remove right side rounding */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.hero-slides-right {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;

  /* Left side rounded only */
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;

  /* Remove right side rounding */
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}


/* RIGHT SIDE */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* VIDEO WRAPPER */
.video-wrapper {
    position: relative;
    width: 95%;
    height: 450px; /* Lock this as needed */
    overflow: hidden;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

/* VIDEO */
.video-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 50px 0px;
  object-fit: cover; /* Or "contain" if you don't want any cropping */
  z-index: 2;
}

@media screen and (min-width: 991px) {
  .hero-section {
    height: 100vh;
  }

  .hero-row {
    flex-direction: column;
  }
  
  .hero-left, .hero-right {
    padding: 40px 20px;
  }

}

@media screen and (max-width: 767px) {

  .hero-section {
    position: static !important;
    overflow: visible !important;
    margin: 0 !important;
    padding: 0 !important;
    height: auto !important;
    max-height: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  .hero-row {
    flex-direction: column;
    height: fit-content;
  }

  /* LEFT SIDE */
  .hero-left {
    /* Left side rounded only */
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    /* Remove right side rounding */
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .hero-left .hero-content {
    /* Left side rounded only */
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    padding: 12% 8%;
    text-align: center;
    /* Remove right side rounding */
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    z-index: 2;
    width: 100%;
    height: auto; /* Lock this as needed */
  }

  .hero-left .hero-content2 {
    text-align: center;
  }

  .hero-slides-left {
    position: absolute !important;
    width: 100%;
    height: 100%;
    z-index: 1;

    /* Left side rounded only */
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;

    /* Remove right side rounding */
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .hero-slides-right {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;

    /* Left side rounded only */
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;

    /* Remove right side rounding */
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }


  /* RIGHT SIDE */
  .hero-right {
    position: relative;
    display: block;
    align-items: center;
    justify-content: center;
  }

  /* VIDEO WRAPPER */
  .video-wrapper {
    position: relative;
    width: 100%;
    height: auto; /* Lock this as needed */
    overflow: visible;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px;
  }

  /* VIDEO */
  .video-content {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 10px 0px;
    object-fit: cover; /* Or "contain" if you don't want any cropping */
    z-index: 2;
  }

}

.hero-section h1 {
  color: var(--white-color);
}

.small-text {
  color: var(--secondary-color);
}

.hero-section .custom-border-btn {
  border-color: transparent;
}

.opening-hours-list {
  margin: 0;
  padding: 0;
}

/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  background-color: #ffffff;
  position: relative;
  width: 100%;
}

.about-content {
  position: relative;
  margin-left: 150px;
  z-index: 2;
  text-align: justify;
}

.img-wrapper {
  position: relative;
  margin-right: 60px;
  z-index: 2;
}

.about-image-wrap {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.about-video-info h4 {
  color: var(--white-color);
}

.about-section h6 {
  color: var(--secondary-color);
}

.team-block-wrap {
  position: relative;
  padding-left: 50px;
  padding-top: 30px;
  height: 140px;
}

.team-block-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.team-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.desktop-only {
  display: block;
}
.mobile-only {
  display: none;
}

.team-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper {
  width: 80%;
  height: auto;
}

.team-title {
  font-weight: 600;
  font-size: 16px;
  margin: 0;
}

.team-description {
  font-weight: 400;
  font-size: 10px;
  color: #e7e7e7;
  margin: 0;
}

.team-block-wrap2 {
  position: relative;
  padding-right: 50px;
  padding-top: 30px;
  max-height: 450px;
}

.team-block-wrap:hover .team-block-image {
  transform: scale(1.2);
}

.team-block-image-wrap {
  width: 100%;
}

.team-block-image {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}

@media screen and (max-width: 767px) {

  .about-section {
    background-color: #ffffff;
    position: relative;
    width: 100%;
  }

  .about-content {
    position: relative;
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 30px;
    z-index: 2;
    text-align: center;
  }

  .img-wrapper {
    position: relative;
    margin-right: 0px;
    z-index: 2;
  }

  .team-block-wrap {
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px;
    height: auto;
  }

  .team-block-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .team-header {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .team-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .icon {
    width: 50px;
    height: 50px;
    object-fit: cover;
  }

    .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }

  .team-description {
    font-weight: 400;
    font-size: 14px;
    color: #e7e7e7;
    margin: 0;
  }

  .team-block-image-wrap {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
  }

}

/*---------------------------------------
  OUR SPENDING              
-----------------------------------------*/
.spending-section {
  background-color: #ffffff;
  position: relative;
  width: 100%;
}

.spending-content {
  position: relative;
  margin-top: 100px;
  margin-left: 110px;
  margin-right: 32px;
  z-index: 2;
  text-align: left;
}

.spending-title {
  text-align: center;
  font-size: 37px;
}

.spending-title1 {
  text-align: left;
  font-size: 37px;
}

.question-title {
  text-align: left;
  font-size: 35px;
}

.spending-content2 {
  position: relative;
  margin-left: 150px;
  margin-right: 100px;
  z-index: 2;
  text-align: left;
}

.spending-content3 {
  position: relative;
  margin-left: 200px;
  margin-right: 250px;
  z-index: 2;
  text-align: left;
}

.faq-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-text {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}
.arrow-icon {
  width: 25px;
  height: 25px;
  margin-right: 20px;
}
.divider {
  height: 1.5px;
  background-color: #898787;
  margin: 10px auto;
}

input::placeholder {
    color: #08520e;
}
form input:focus {
    outline: none;
    box-shadow: none;
}

@media screen and (max-width: 767px) {

  .spending-section {
    background-color: #ffffff;
    position: relative;
    height: auto;
    width: 100%;
  }

  .spending-content {
    position: relative;
    margin-top: 0px;
    margin-left: 20px;
    margin-right: 20px;
    z-index: 2;
    text-align: center;
  }

  .spending-title {
    text-align: center;
    font-size: 25px;
  }

  .spending-title1 {
    text-align: center;
    font-size: 25px;
  }

  .question-title {
    font-size: 25px;
  }

  .spending-content2 {
    position: relative;
    margin-left: 20px;
    margin-right: 20px;
    z-index: 2;
    text-align: left;
  }

  .spending-content3 {
    position: relative;
    margin-top: 50px;
    margin-left: 20px;
    margin-right: 20px;
    z-index: 2;
    text-align: left;
  }

}


/*---------------------------------------
  REVIEWS              
-----------------------------------------*/
.reviews-section {
  background: linear-gradient(to bottom, #b5fab5, white); /* #90ee90 is a light green */
}

.container-plan {
  padding-bottom: 5%;
  padding-left: 11%;
  padding-right: 11%;
}

.customplan-col {
  width: 100%;
  padding-left: 230px;
  padding-right: 230px;
}

.plan-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.d-desktop {
    display: block;
}
.d-mobile {
    display: none;
}

@media screen and (max-width: 767px) {

  .container-plan {
    padding-bottom: 5%;
    padding-left: 15%;
    padding-right: 15%;
  }

  .customplan-col {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
  }

  .d-desktop {
    display: none;
  }
  
  .d-mobile {
    display: block;
  }

}

/*---------------------------------------
  BOOKING SECTION              
-----------------------------------------*/
.booking-section {
  background-image: url('../images/young-female-barista-wear-face-mask-serving-take-away-hot-coffee-paper-cup-consumer-cafe.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.booking-form-wrap {
  background-color: rgba(0, 0, 0, 0.65);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  margin-top: 100px;
}

.booking-form {
  padding: 55px 65px;
}

.booking-form-image-wrap {
  position: relative;
  height: 100%;
}

.booking-form-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-form-text span {
  color: var(--white-color);
  font-size: var(--btn-font-size);
}

.reservation-page .custom-border-btn {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.reservation-page .custom-border-btn:hover {
  border-color: transparent;
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-section {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.container-team {
  background-color: #e7e7e7;
  padding-top: 5%;
  padding-bottom: 5%;
  padding-left: 13%;
  padding-right: 13%;
}

.customteam-col {
  width: 20%;
  margin-top: 20px;
}

.customteam2-col {
  width: 100%;
  padding-left: 100px;
  padding-right: 100px;
}

.google-map {
  border-radius: var(--border-radius-medium);
  filter: grayscale(100);
}

.contact-block-wrap {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  padding: 0;
  min-height: 200px;
}

.contact-block {
  background: var(--secondary-color);
  border-radius: var(--border-radius-medium);
  transform: rotate(8deg);
  height: 100%;
  padding: 20px 40px;
}

.contact-block h6 {
  transform: rotate(-8deg);
}

.contact-block .custom-icon {
  background: var(--primary-color);
  border-radius: var(--border-radius-large);
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  position: relative;
}

.contact-block strong {
  display: block;
  color: var(--white-color);
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {

  .container-team {
    background-color: #e7e7e7;
    padding-top: 5%;
    padding-bottom: 5%;
    padding-left: 5%;
    padding-right: 5%;
  }

  .customteam2-col {
    width: 100%;
    padding-top: 20px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .customteam-col {
    width: 50%;
    margin-top: 10px;
  }

}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  color: var(--p-color);
  border-radius: var(--border-radius-small);
  margin-bottom: 30px;
  padding-top: 13px;
  padding-bottom: 13px;
  box-shadow: none;
  outline: none;
  transition: all 0.3s;
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  background: var(--primary-color);
  border-color: transparent;
}

.custom-form .form-label {
  color: var(--white-color);
  font-style: italic;
  margin-bottom: 15px;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--form-btn-font-size);
  font-weight: var(--font-weight-bold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--white-color);
  border-color: transparent;
  color: var(--primary-color);
}

.contact-form .form-control,
.booking-form .form-control {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.25);
}

.booking-form .form-control {
  color: var(--white-color);
}

.custom-form input::-webkit-input-placeholder,
.custom-form textarea::-webkit-input-placeholder {
   color: var(--white-color);
}

.booking-form input:-moz-placeholder,
.booking-form textarea:-moz-placeholder {
  color: var(--white-color);
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  padding-top: 100px;
}

.container-footer {
  background-color: #e7e7e7;
  margin-left: 50px;
  margin-right: 50px;
    /* Left side rounded only */
  border-top-left-radius: 40px;
  border-bottom-left-radius: 0px;
  padding-top: 5%;
  padding-bottom: 2%;
  padding-left: 5%;
  padding-right: 5%;
  /* Remove right side rounding */
  border-top-right-radius: 40px;
  border-bottom-right-radius: 0;
}

.custom-col {
  width: 29.17%;
}

.custom-col2 {
  width: 20.5%;
}

.custom-col3 {
  width: 100%;
  margin-top: 2%;
  padding-left: 5%;
  padding-right: 5%;
}

.footer-image {
  width: 80px;
  height: auto;
  margin-top: -30px;
  padding-bottom: 10px;
}

.site-footer strong {
  color: var(--white-color);
}

.site-footer p,
.site-footer-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--btn-font-size);
}

.site-footer-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--btn-font-size);
  transition: all 0.3s;
}

.site-footer-link:hover {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
}

.copyright-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--menu-font-size);
}

.copyright-text a {
	color: rgba(255, 200, 160, 0.75);
}

@media (max-width: 992px) {
  .custom-col {
    width: 100%;
    padding-bottom: 20px;
  }

  .custom-col2 {
    width: 100%;
  }

}

@media screen and (max-width: 767px) {

  .container-footer {
    margin-left: 0px;
    margin-right: 0px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    padding-top: 5%;
    padding-bottom: 2%;
    padding-left: 10%;
    padding-right: 10%;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0;
  }

  .footer-image {
    width: 80px;
    height: auto;
    margin-top: 20px;
    padding-bottom: 10px;
  }

}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--primary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--menu-font-size);
  display: block;
  margin: 0 2px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 35px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--white-color);
  color: var(--primary-color);
}

.social-icon-link span {
  display: block;
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 1200px) {
  h1 {
    font-size: 62px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .hero-section {
    padding-top: 148px;
    padding-bottom: 100px;
  }

  .navbar-brand,
  .navbar-brand:hover {
    font-size: var(--h5-font-size);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 20px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
    margin-bottom: 0;
  }

  .navbar .custom-btn {
    margin-bottom: 10px;
  }

  .booking-form {
    padding: 45px;
  }

  .contact-section .container {
    width: auto;
    margin-right: 10px;
    margin-left: 10px;
    padding: 35px;
  }

  .site-footer {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 12px 20px;
  }
}

@media screen and (max-width: 578px) {
  .navbar .container,
  .sticky-wrapper.is-sticky .container {
    margin-right: 10px;
    margin-left: 10px;
  }
}


@media screen and (max-width: 480px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  .hero-section::after {
    width: 200px;
    height: 200px;
  }

  .booking-form {
    padding: 35px;
  }

  .opening-hours-list li {
    font-size: 12px;
  }

}

