@font-face {
  font-family: 'CustomFont';
  src: url('../fonts/CustomFont.ttf') format('truetype');
}

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #f3eee8;
  --white-color-transparent:                  #f3eee85e;
  --primary-color:                #432f1f;
  --secondary-color:              #88b4cc;
  --section-bg-color:             #efe3d9;
  --custom-btn-bg-color:          #8d7159f6;
  --custom-btn-bg-hover-color:    #aa8f77;
  --dark-color:                   #432f1f;
  --p-color:                      #432f1f;
  --link-hover-color:             #d7b193;
  --carousel-text:                #815f42f6;
  --carousel-initial-color:       #e9d6c5;
  --active-link-color:            #815f42f6;
  --copyright-color:               #75573f;
  --brown-color:               #997b61;
  

  --body-font-family:             'DM Sans', sans-serif;
  --body-font-family:             'Open Sans', sans-serif;
  --body-font-family:             'Bookman Old Style', serif;


  

  --header-font-family:           'Cormorant', sans-serif;


  /* --body-font-family:             'Cormorant', sans-serif; */

  --h1-font-size:                 42px;
  --h2-font-size:                 36px;
  --h3-font-size:                 28px;
  --h4-font-size:                 24px;
  --h5-font-size:                 22px;
  --h6-font-size:                 20px;
  --p-font-size:                  20px;
  --menu-font-size:               20px;
  --btn-font-size:                14px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-normal:           400;
  --font-weight-light:            300;
  --font-weight-medium:           500;
  --font-weight-bold:             600;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 

}


.blur-section {
  position: relative;
  overflow: hidden;
}

.blur-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white-color-transparent);
  backdrop-filter: blur(1px); 
  z-index: 1; 
  pointer-events: none; /* Allows interaction with elements below */
}




hr{
  width: 60%;
  margin: 16px auto;
  border-top: 3px solid var(--brown-color);
  border-radius: 1.5px;
  opacity: 0.5;

}

@media screen and (max-width:  768px) {
  hr{
      display: none;
  
  }
}




/*---------------------------------------
  RESPONSIVE STYLES
-----------------------------------------*/

@media screen and (max-width:  768px) {
  .no-mobile {
    display: none;
  }
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
  font-family: var(--header-font-family); 
  font-weight: var(--font-weight-light);

}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-medium);
  letter-spacing: -1px;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
  color: var(--white-color);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
}

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);
  hyphens: auto;

}

.big-text{
  font-size: 50px;
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.white-text {
  color: var(--white-color);
  font-weight: var(--font-weight-light) !important;
}

.dark-text {
  color: var(--dark-color);
}

.coming-soon-text {
  color: var(--secondary-color);
  border-radius: 10px;
  padding: 10px 20px;
  border: solid 2px var(--secondary-color);
  font-size: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-10deg);
  opacity: 0.9;
  z-index: 3;
  background-color: var(--white-color-transparent);

}

@media screen and (max-width:  768px) {
  .coming-soon-text {
    font-size: 30px;
  }
  
}

.coming-soon-text-container {
  position: relative;

}


.justify-text {
  text-align: justify;
}

.center-text {
  text-align: center;
}

.right-text {
  text-align: right;
}

.bigger-p{
  font-size: var(--h5-font-size);
}



.page-title h1{
  color: var(--primary-color);
  font-size: 35px;
  font-weight: var(--font-weight-light);
  
}

/*---------------------------------------
  IMAGES
-----------------------------------------*/


.rounded {
  border-radius: var(--border-radius-large);
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-bg {
  background-color: var(--section-bg-color);
}


.section-padding-top {
  padding-top: 100px;
  padding-bottom: 0px;
}

.section-padding-top-extra {
  padding-top: 150px;
  padding-bottom: 0px;
}

.section-padding-y {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-padding-bot {
  padding-top: 0;
  padding-bottom: 100px;
}

.section-padding-bot-extra {
  padding-top: 0;
  padding-bottom: 100px;
}




@media (max-width: 768px) {
  .section-padding-top {
    padding-top: 20px;
  }
  
  .section-padding-top-extra {
    padding-top: 30px;
  }
  
  .section-padding-y {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  
  .section-padding-bot {
    padding-bottom: 20px;
  }

}

.section-overlay {
  z-index: 0;
  content: "";
  background: rgba(172, 189, 197, 0.623) linear-gradient(rgba(231, 206, 183, 0.01) 0%, rgba(184, 143, 96, 0.801) 100%) repeat scroll 0% 0%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

::selection {
  background-color: var(--primary-color);
  color: var(--white-color);
}

/*---------------------------------------
  WAVY ELEMENTS               
-----------------------------------------*/

.light-wave path{
  fill: var(--white-color);
  z-index: -1;
}

.light-wave{
  z-index: 5;
}

.blue-wave path{
  fill: var(--secondary-color);
}

.dark-wave path{
  fill: var(--primary-color);
}

.brown-wave path{
  fill: var(--brown-color);
}

.light-brown-wave path{
  fill: var(--carousel-initial-color);
}

.move-up{
  transform: translateY(-1px);
}

.move-down{

  transform: translateY(1px);
}

.rotate-180{
  transform: rotate(180deg);
}

.move-down-rotate {
  transform: translateY(1px) rotate(180deg);
}


.mirror{
  transform: scaleX(-1);
}


/*---------------------------------------
  BACKGROUND COLORS             
-----------------------------------------*/

.brown-background{
  background-color: var(--brown-color);
}

.blue-background{
  background-color: var(--secondary-color);
}

.light-brown-background{
  background-color: var(--carousel-initial-color  );
}

/*---------------------------------------
  MAP CONTAINER            
-----------------------------------------*/

.rounded-map {
  border-radius: 15px; /* Adjust radius as needed */
  overflow: hidden; /* Ensures the rounded effect applies to content inside */
}


/*---------------------------------------
  QUOTE CONTAINER              
-----------------------------------------*/

.quote-container {
  position: relative;
  overflow: visible;
}

.quote-container .bi-quote {
  position: absolute;
  font-size: 100px;
  color: rgba(78, 70, 59, 0.199);
  z-index: 1;
}

.quote-container .bi-quote.top-left {
  top: -20px;
  left: -10px;
  transform: rotate(0deg);
}

.quote-container .bi-quote.bottom-right {
  bottom: -20px;
  right: -10px;
}

.quote-container p {
  position: relative;
  z-index: 2;
  margin: 0;
}


/*---------------------------------------
  ANIMATED HEADLINE               
-----------------------------------------*/

/* General Styling */
.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper b {
  color: var(--white-color);
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}

.initial {
  color: var(--carousel-text);
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

/* Desktop Animation Styles */
.cd-headline.rotate-1 .cd-words-wrapper {
  perspective: 300px;
}

.cd-headline.rotate-1 b {
  opacity: 0;
  transform-origin: 50% 100%;
  transform: rotateX(180deg);
  will-change: opacity, transform; /* Performance optimization */
}

.cd-headline.rotate-1 b.is-visible {
  opacity: 1;
  transform: rotateX(0deg);
  animation: cd-rotate-1-in 1.2s ease-out;
}

.cd-headline.rotate-1 b.is-hidden {
  transform: rotateX(180deg);
  animation: cd-rotate-1-out 1.2s ease-out;
}

/* Desktop Keyframes */
@keyframes cd-rotate-1-in {
  0% {
    transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    transform: rotateX(360deg);
    opacity: 1;
  }
}

@keyframes cd-rotate-1-out {
  0% {
    transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    transform: rotateX(180deg);
    opacity: 0;
  }
}

/* Mobile Animation Styles */
@media (max-width: 768px) {
  .cd-headline.rotate-1 b {
    opacity: 0;
    transform: none !important; /* Force reset transformations */
    will-change: opacity; /* Optimize for opacity changes */
  }

  .cd-headline.rotate-1 b.is-visible {
    opacity: 1;
    transform: none !important; /* Reset any inherited transformations */
    animation: mobile-fade-in 0.8s ease-out;
  }

  .cd-headline.rotate-1 b.is-hidden {
    opacity: 0;
    transform: none !important; /* Reset any inherited transformations */
    animation: mobile-fade-out 0.8s ease-out;
  }

  /* Mobile Keyframes */
  @keyframes mobile-fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  @keyframes mobile-fade-out {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
}




/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
  background: var(--custom-btn-bg-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

.custom-btn-group .link {
  color: var(--white-color);
  font-weight: var(--font-weight-medium);
}

.custom-btn-group .link:hover {
  color: var(--link-hover-color);
}


/*---------------------------------------
  NAVIGATION BAR & OFFCANVAS              
-----------------------------------------*/
.offcanvas {
  background-color: var(--primary-color);
  padding: 30px;
}

.offcanvas.offcanvas-end {
  border-left: 0;
}

.offcanvas-header .btn-close {
  transition: all 0.3s;
}

.offcanvas-header .btn-close:hover {
  transform: rotate(180deg);
}

.offcanvas svg {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: var(--secondary-color);
}

.navbar {
  background: transparent;
  z-index: 99;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-brand,
.navbar-brand:hover {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
  display: block;
  color: var(--dark-color);
  max-width:65px;
}

.navbar .navbar-brand,
.navbar .navbar-brand:hover {
  color: var(--white-color);
}

.navbar .navbar-brand-image {
  filter: brightness(0) invert(1);
}

.navbar-brand-image {
  width: 65px;
  height: 65px;
}

.navbar-brand-text {
  line-height: normal;
  margin-left: 10px;
  font-size: 30px;
  position: relative;
  bottom: 5px;
}

.navbar-brand-text small {
  display: block;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--menu-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(--active-link-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(--copyright-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: 768px) {
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    margin-top: 0;
    pointer-events: auto;
  }
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  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(--white-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(--white-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 {
  background-image: url('../images/background_hands.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  height: 100vh;
  min-height: 1100px;
}

@media (max-width: 768px) {
  .hero-section h1{
    font-size: 32px;
  }

  .hero-section {
    min-height: 600px;
  }
}

.hero-50 {
  height: auto;
  min-height: 540px;

}

.hero-50 .container + svg {
  transform: rotate(180deg);
}

.hero-section .ratio {
  border-radius: var(--border-radius-medium);
  overflow: hidden;
}

.hero-section svg {
  position: absolute;
  right: 0;
  left: 0;
}

.hero-section > svg {
  top: 0;
}

.hero-section .container + svg {
  top: auto;
  bottom: -1px;
}

.hero-section .row {
  position: relative;
  z-index: 22;
}


/*---------------------------------------
  BACKGROUND IMAGE SECTION        
-----------------------------------------*/
.bg-image-salon{
  background-image: url('../images/salon.jpg');
}

.bg-image-water{
  background-image: url('../images/sunset_water.jpg');
}




.bg-image-clouds{
  background-image: url('../images/background_clouds.jpg');
}

.section-bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}


.placeholder {
  height: 400px;
}




.section-bg-image-block {
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: var(--border-radius-medium);
  border: 1px solid rgba(209, 213, 219, 0.3);
  border-radius: var(--border-radius-medium);
  padding: 50px;
}


/*---------------------------------------
  ABOUT SECTION              
-----------------------------------------*/
.about-section {
  padding-bottom: 70px;
}

.member-block-image-wrap {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.member-block-image-wrap:hover .member-block-image {
  transform: scale(1.2);
}

.member-block-image-wrap:hover .social-icon {
  opacity: 1;
}

.member-block-image-wrap .social-icon {
  background-color: var(--white-color);
  border-radius: var(--border-radius-large);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.5s;
  padding: 15px 20px;
  width: auto;
}

.member-block-image {
  transition: all 0.3s;
}

.member-block-info {
  padding: 10px;
}

.member-block-info h4,
.member-block-info p {
  margin-bottom: 0;
}


/*---------------------------------------
  CUSTOM BLOCK              
-----------------------------------------*/
.custom-block {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 30px 20px;
}

.custom-block-bg {
  background: var(--white-color);
}

.custom-block-date-wrap {
  background-color: var(--primary-color);
  border-radius: var(--border-radius-medium);
  text-align: center;
  padding: 20px 30px;
}

.custom-block-date {
  font-size: var(--h1-font-size);
}

.custom-block-image-wrap {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.custom-block-image-wrap:hover .custom-block-image {
  transform: scale(1.2);
}

.custom-block-image-wrap:hover .custom-block-icon {
  opacity: 1;
}

.custom-block-image {
  transition: all 0.3s;
}

.custom-block-image-wrap .custom-block-date-wrap,
.custom-block-image-wrap .custom-btn-wrap {
  position: absolute;
  bottom: 0;
}

.custom-block-image-wrap .custom-block-date-wrap {
  border-radius: 0;
  left: 0;
  width: 50%;
  padding: 12.30px 20px;
}

.custom-block-image-wrap .custom-btn-wrap {
  right: 0;
  width: 50%;
}

.custom-block-image-wrap .custom-btn  {
  border-radius: 0;
  display: block;
  padding: 15px 20px;
}

.custom-block-info {
  padding-top: 10px;
}

.custom-block-image-wrap + .custom-block-info {
  padding-top: 20px;
}

.custom-block-span {
  color: var(--secondary-color);
  font-weight: var(--font-weight-bold);
  min-width: 110px;
  margin-right: 10px;
}

.custom-block-icon {
  background: var(--custom-btn-bg-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: var(--h3-font-size);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.5s;
}

.custom-block-icon:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}


/*---------------------------------------
  EVENTS SECTION            
-----------------------------------------*/
.events-section.section-bg .container > .row {
  margin-right: 5px;
  margin-left: 5px;
}

.events-section.section-bg .container > .row .row {
  margin: auto;
}

.events-listing-section {
  margin-bottom: 100px;
}

.events-detail-section .custom-block-info {
  padding: 40px 60px;
}

.events-detail-info {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-medium);
  padding: 50px 25px;
}

.events-title {
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-medium);
}


/*---------------------------------------
  MEMBERSHIP SECTION            
-----------------------------------------*/
.membership-section .container {
  position: relative;
  z-index: 2;
}

.table-responsive {
  border-radius: var(--border-radius-medium);
}

.table-responsive tbody, 
.table-responsive td, 
.table-responsive tfoot, 
.table-responsive th, 
.table-responsive thead, 
.table-responsive tr {
  border: 0;
}

.table-responsive thead tr {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.table-responsive thead th {
  padding: 22px 16px !important;
}

.table-responsive tbody tr:nth-child(even) {
  background-color: var(--section-bg-color);
}

.table>:not(caption)>*>* {
  padding: 18px 16px;
}

.table-responsive .bi-check-circle-fill {
  color: var(--primary-color);
}

.table-responsive .bi-x-circle-fill {
  color: var(--custom-btn-bg-hover-color);
}

.membership-form {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-medium);
  padding: 35px;
}

.membership-form .form-floating>textarea {
  border-radius: var(--border-radius-medium);
  height: 100px;
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-form .form-floating>textarea {
  border-radius: var(--border-radius-medium);
  height: 120px;
}

.contact-info {
  position: relative;
}

.contact-info-item {
  background-color: #88b4cce8;
  border-radius: var(--border-radius-medium);
  position: absolute;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}


.contact-info-body {
  padding: 20px 30px;
}

.contact-info-body strong,
.contact-info-item a {
  color: var(--white-color);
}

.contact-info-footer {
  background-color: var(--custom-btn-bg-hover-color);
  padding: 10px 20px;
  transition: all 0.3s;
}

.contact-info-footer:hover {
  background-color: var(--custom-btn-bg-color);
}

.contact-info-footer a {
  display: block;
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  PRICE LIST
-----------------------------------------*/


.header {
  margin-bottom: 40px;
}


.price-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
.price-item {
  margin-bottom: 40px;
  padding: 10px;
  border: 1px solid transparent;


  
}

.price-item:hover {
  border-radius: 10px;
  background-color: var(--section-bg-color);
}

.price-item h4 {
  margin-bottom: 5px;
  margin-top: 10px;
}
.price-item p {
  line-height: 1.5;
  margin: 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--brown-color);
  padding-bottom: 5px;
}
.price {
  font-weight: var(--font-weight-normal);
}

.price-item {
  margin-bottom: 40px;
  padding: 10px;
  border: 1px solid transparent;
  position: relative; 
}

/* Button Styling (Initially Hidden) */
.price-item .hover-btn {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--secondary-color); 
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;
}

/* Show Button on Hover */
.price-item:hover .hover-btn {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1.1);
  transition: opacity 0.3s ease, transform 0.3s ease;
}



/*---------------------------------------
  GALLERY
-----------------------------------------*/



.place-address {
  padding: 20px 30px;
  
}

.place-address p {
  color: var(--p-color);
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 0 10px; /* Padding to prevent images from touching the edges */
  box-sizing: border-box; /* Ensures padding is included in the width calculation */
}

.gallery img {
  max-width: 100%; /* Ensures images are responsive */
  width: 100%; /* Makes images fit within their container */
  height: auto; /* Keeps the aspect ratio */
  max-width: 400px; /* Limits image size, adjust as needed */
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .gallery img {
      max-width: 300px; /* Reduce size on smaller screens */
  }
  .gallery {
      gap: 15px; /* Adjust the gap for smaller screens */
      padding: 0 10px; /* Ensure padding on smaller screens */
  }
}




/*---------------------------------------
  CONTACTS
-----------------------------------------*/

.contacts p span i{
  font-weight: var(--font-weight-bold);
  font-size: var(--h4-font-size);
  margin-right: 30px
}


/*---------------------------------------
  SITE FOOTER            F
-----------------------------------------*/


.site-footer p {
  color: var(--p-color);
}

.footer-icons  .social-icon-link {
    background: var(--p-color);
    
  }
  
.footer-icons .social-icon-link:hover {
    background: var(--secondary-color);
    color: var(--white-color);
  }

@media screen and (max-width:  768px) {
  .footer-icons .social-icon-link{
    font-size: var(--p-font-size);
    width: 40px;
    height: 40px;
    line-height: 40px;

  }
}
  



/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  border-radius: var(--border-radius-large);
  border-width: 2px;
  box-shadow: none;
  color: var(--p-color);
  margin-bottom: 20px;
  padding: 10px;
  padding-left: 20px;
  outline: none;
}

.custom-form .form-control:focus,
.custom-form .form-control:hover {
  border-color: var(--dark-color);
}

.form-floating>label {
  padding-left: 20px;
}

.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(--p-font-size);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s;
  margin-bottom: 0;
  padding-left: 10px;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}

.header-form {
  position: relative;
}

.header-form .form-control {
  padding-left: 42px;
}

.header-form-icon {
  width: 24px;
  position: absolute;
  top: 0;
  margin: 12px;
  margin-left: 15px;
}


/*---------------------------------------
  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(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--h4-font-size);
  display: flex; /* Flexbox */
  align-items: center; /* Vertical centering */
  justify-content: center; /* Horizontal centering */
  margin-right: 5px;
  width: 55px;
  height: 55px;
  transition: background 0.2s, color 0.2s;
}


.social-icon-link:hover {
  background: var(--custom-btn-bg-color);
  color: var(--white-color);
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width:  768px) {
  p{
    font-size: 18px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }



  
  .navbar {
    background-color: var(--secondary-color);
  }

  .navbar-nav .dropdown-menu {
    position: relative;
    left: 10px;
    opacity: 1;
    pointer-events: auto;
    max-width: 155px;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .navbar-expand-lg .navbar-nav {
    padding-top: 15px;
    padding-bottom: 10px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    margin: 5px;
    padding: 0;
  }

  .hero-section {
    position: relative;
    top: 82px;
    margin-bottom: 82px;
  }

  .first-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .events-listing-section {
    margin-bottom: 50px;
  }

  .events-detail-section .custom-block-info {
    padding: 40px;
  }

  .events-detail-info {
    padding: 35px 25px;
  }

  .contact-info-item {
    width: 60%;
  }

  .events-detail-section .contact-info-item {
    width: 70%;
  }

  .section-bg-image {
    margin-bottom: 0;
  }

  .section-bg-image-block {
    padding: 30px;
  }

}

@media screen and (max-width: 480px) {
  .navbar-brand {
    font-size: var(--p-font-size);
  }

  .navbar-brand-icon {
    width: 30px;
    height: 30px;
  }

  .navbar-brand-icon::after {
    top: 5px;
  }

  .section-bg-image-block {
    padding: 30px;
  }

  .contact-info-item {
    width: 72%;
  }
}

@media screen and (max-width: 360px) {
  .custom-btn {
    font-size: 12px;
    padding: 4px 12px;
  }
}

