/*

TemplateMo 587 Tiya Golf Club

https://templatemo.com/tm-587-tiya-golf-club

*/


/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #81B29A;
  --secondary-color:              #3D405B;
  --section-bg-color:             #F4F1DE;
  --custom-btn-bg-color:          #F2CC8F;
  --custom-btn-bg-hover-color:    #E07A5F;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --link-hover-color:             #F2CC8F;

  --body-font-family:             'DM Sans', 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:                  18px;
  --menu-font-size:               16px;
  --btn-font-size:                14px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-bold:             700;
}

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-medium);
  letter-spacing: -1px;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

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);
}

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 {
  display: inline-block;
  color: var(--secondary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-bg {
  background-color: var(--section-bg-color);
}

.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-overlay {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
      to right,
      rgba(30, 69, 159, 0.3),
      rgba(207, 42, 42, 0.25),
      rgba(250, 189, 50, 0.2)
    );
}

/* ensure hero text sits above overlay */
.hero-section .container,
.hero-section .row,
.hero-section .col-lg-6 {
  position: relative;
  z-index: 2;
}

::selection {
  background-color: var(--primary-color);
  color: var(--white-color);
}


/*---------------------------------------
  ANIMATED HEADLINE               
-----------------------------------------*/
.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper b {
  color: var(--link-hover-color);
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}

.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;
}

.cd-headline.rotate-1 .cd-words-wrapper {
  -webkit-perspective: 300px;
  -moz-perspective: 300px;
  perspective: 300px;
}
.cd-headline.rotate-1 b {
  opacity: 0;
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
}
.cd-headline.rotate-1 b.is-visible {
  opacity: 1;
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-animation: cd-rotate-1-in 1.2s;
  -moz-animation: cd-rotate-1-in 1.2s;
  animation: cd-rotate-1-in 1.2s;
}
.cd-headline.rotate-1 b.is-hidden {
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
  -webkit-animation: cd-rotate-1-out 1.2s;
  -moz-animation: cd-rotate-1-out 1.2s;
  animation: cd-rotate-1-out 1.2s;
}

@-webkit-keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -webkit-transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(360deg);
    opacity: 1;
  }
}
@-moz-keyframes cd-rotate-1-in {
  0% {
    -moz-transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -moz-transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -moz-transform: rotateX(360deg);
    opacity: 1;
  }
}
@keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -webkit-transform: rotateX(120deg);
    -moz-transform: rotateX(120deg);
    -ms-transform: rotateX(120deg);
    -o-transform: rotateX(120deg);
    transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(360deg);
    -moz-transform: rotateX(360deg);
    -ms-transform: rotateX(360deg);
    -o-transform: rotateX(360deg);
    transform: rotateX(360deg);
    opacity: 1;
  }
}
@-webkit-keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -webkit-transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }
}
@-moz-keyframes cd-rotate-1-out {
  0% {
    -moz-transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -moz-transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -moz-transform: rotateX(180deg);
    opacity: 0;
  }
}
@keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -webkit-transform: rotateX(-40deg);
    -moz-transform: rotateX(-40deg);
    -ms-transform: rotateX(-40deg);
    -o-transform: rotateX(-40deg);
    transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    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 Navbar Background */
.sticky-wrapper.is-sticky .navbar {
  background: rgba(244, 126, 251, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Default Navbar */
.navbar {
  background: transparent;
  z-index: 99;
  padding-top: 15px;
  padding-bottom: 15px;
  transition: background 0.3s ease;
}

/* Logo and Brand */
.navbar-brand,
.navbar-brand:hover {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
  display: flex;
  align-items: center;
  color: var(--white-color);
}

.navbar .navbar-brand-image {
  width: 48px;
  height: 48px;
  /* filter: brightness(0) invert(1); */
  margin-right: 10px;
}

.navbar-brand-text {
  line-height: 1.2;
  position: relative;
  bottom: 2px;
  color: var(--white-color);
}

.navbar-brand-text small {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffd5f3;
}

/* Nav Links */
.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: 15px;
  font-weight: 500;
  margin: 10px 12px;
  padding: 8px 16px;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background: linear-gradient(45deg, #f64f59, #f64f59);
  color: #fff !important; 
  box-shadow: 0 4px 12px rgba(246, 79, 89, 0.3);
}

/* Dropdown */
.navbar .dropdown-menu {
  background: #fff;
  border: none;
  box-shadow: 0 1rem 3rem rgba(0,0,0,0.1);
  padding: 10px;
  opacity: 0;
  margin-top: 20px;
  pointer-events: none;
  transition: all 0.3s;
}

.navbar .dropdown:hover .dropdown-menu {
  opacity: 1;
  margin-top: 10px;
  pointer-events: auto;
}

.navbar .dropdown-item {
  color: #333;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 8px;
}

.navbar .dropdown-item:hover {
  background-color: #f64f59;
  color: #fff;
}

/* Login Button */
.custom-border-btn {
  background-color: transparent;
  border: 2px solid #f64f59;
  color: #f64f59;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.custom-border-btn:hover {
  background: #f64f59;
  color: #fff;
  box-shadow: 0 4px 15px rgba(246, 79, 89, 0.3);
}

/* Toggler Icon */
.navbar-toggler {
  border: 0;
  background: transparent;
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--white-color);
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

/* Responsive - Dropdown on hover for desktop */
@media screen and (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    margin-top: 0;
  }
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  background-image: url('../images/1.png'); /* Your image path */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  position: relative;
  padding: 160px 0 160px;
  min-height: 900px;
  z-index: 1;
  overflow: hidden;
  /* margin-top: 80px;  */
}

.section-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2)); */
  /* backdrop-filter: blur(1px); */
  z-index: 1;
}

.hero-section .container,
.hero-section .row {
  position: relative;
  z-index: 2;
}

.hero-section h1,
.hero-section h2,
.hero-section p {
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.custom-btn-group .btn {
  background: #f64f59;
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 8px 20px rgba(246, 79, 89, 0.3);
}

.custom-btn-group .btn:hover {
  background: #b02a55;
  box-shadow: 0 8px 30px rgba(176, 42, 85, 0.4);
}

.link {
  font-weight: 500;
  color: #fff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.link:hover {
  color: #ffe8f0;
  border-color: #fff;
}

/* Zigzag Wrappers */
.zigzag-top-wrapper,
.zigzag-bottom-wrapper {
  width: 100%;
  overflow: hidden;
  /* background: #bb6ca2; */
  position: relative;
  z-index: 3;
}

.zigzag-top {
  display: block;
  position: relative;
  top: -1px;
}

.zigzag-bottom {
  display: block;
  position: relative;
  bottom: -1px;
}





/*---------------------------------------
  BACKGROUND IMAGE SECTION        
-----------------------------------------*/
.section-bg-image {
  background-image: url('https://ik.imagekit.io/kgrarhxkv/hernher/hernher-banner1.jpg'); 
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  position: relative;
  height: 993px;
  padding: 0;
  display: flex;
  align-items: center;
  z-index: 1;
  overflow: hidden;
}

/* Zigzag top-right shape */
.section-bg-image::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 150px;
  background: white;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  z-index: 2;
}

/* Zigzag bottom-left shape */
.section-bg-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: white;
  clip-path: polygon(0 100%, 0 0, 100% 100%);
  z-index: 2;
}

.section-bg-image .container,
.section-bg-image .row,
.section-bg-image .section-bg-image-block {
  position: relative;
  z-index: 3; /* Above zigzags */
}

.section-bg-image-block {
  max-width: 100%;
  max-width: 550px;
  margin-top: 100px; /* Push content lower */
  backdrop-filter: blur(8px) saturate(180%);
  -webkit-backdrop-filter: blur(8px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 1.5rem;
  border: 1px solid rgba(209, 213, 219, 0.3);
  padding: 50px 30px;
  box-shadow: 0 10px 40px rgba(176, 42, 85, 0.1);
}

.section-bg-image-block .input-group {
  background-color: #fff;
  border-radius: 50px;
  padding: 10px 15px;
  gap: 10px;
}

.section-bg-image-block .input-group-text {
  background-color: transparent;
  border: 0;
  font-size: 1.3rem;
  color: #b02a55;
}

.section-bg-image-block input[type="email"] {
  border: none;
  box-shadow: none;
  padding-left: 10px;
  font-size: 1rem;
  color: #444;
  flex-grow: 1;
}

.subscribe-btn {
  background-color: #f64f59;
  border: 0;
  border-radius: 2rem !important;
  color: #fff;
  font-weight: 600;
  transition: background 0.3s ease;
  max-width: 150px;
}

.subscribe-btn:hover {
  background-color: #d63749;
}



/*---------------------------------------
  ABOUT SECTOIN              
-----------------------------------------*/
.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;
  height: 263px;
    width: 263px;
}

.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: var(--secondary-color);
  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);
}


/*---------------------------------------
  SITE FOOTER            
-----------------------------------------*/
.site-footer {
  position: relative;
  padding-bottom: 200px;
}

.site-footer .container {
  position: relative;
  z-index: 2;
}

.site-footer svg {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  pointer-events: none;
}

.site-footer-title {
  color: var(--secondary-color);
}

.site-footer p span {
  font-weight: var(--font-weight-medium);
  margin-right: auto;
}


/*---------------------------------------
  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(--btn-font-size);
  display: block;
  margin-right: 5px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .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;
  }

  .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;
  }

  .site-footer {
    padding-top: 20px;
    padding-bottom: 100px;
  }
}

@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;
  }
}
.about-her-section {
    /* background: linear-gradient(135deg, #ffe6f0, #fff5fb); */

    border: 2px solid #fcd5e8;
    color: #3d2c35;
    transition: all 0.3s ease-in-out;
    border-radius: 2rem;
    box-shadow: 0 20px 50px rgba(255, 105, 180, 0.1);
    position: relative;
    overflow: hidden;
}

.about-her-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    /* background: radial-gradient(circle, #fcd6ec 0%, transparent 70%); */
    animation: pulseGlow 5s ease-in-out infinite;
    z-index: 0;
}

.about-her-section * {
    position: relative;
    z-index: 1;
}

.text-gradient {
    background: linear-gradient(90deg, #c471ed, #f64f59);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    animation: slideInFromLeft 1s ease both;
}

.custom-quote {
    font-size: 1.2rem;
    color: #b02a55;
    border-left: 4px solid #b02a55;
    padding-left: 1rem;
    margin: 2rem auto;
    max-width: 600px;
    font-style: italic;
    background: #fff0f5;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}

.custom-quote:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(176, 42, 85, 0.1);
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

.fade-in.delay-1 { animation-delay: 0.2s; }
.fade-in.delay-2 { animation-delay: 0.4s; }
.fade-in.delay-3 { animation-delay: 0.6s; }
.fade-in.delay-4 { animation-delay: 0.8s; }
.fade-in.delay-5 { animation-delay: 1s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

@keyframes slideInFromLeft {
    0% { opacity: 0; transform: translateX(-30px); }
    100% { opacity: 1; transform: translateX(0); }
}

.btn-outline-pink {
    color: #f64f59;
    border: 2px solid #f64f59;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    transition: all 0.3s ease-in-out;
    font-weight: 600;
    background-color: transparent;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-pink:hover {
    background-color: #f64f59;
    color: white;
    box-shadow: 0 4px 15px rgba(246, 79, 89, 0.4);
}
.site-footer {
  background: linear-gradient(180deg, #fff0f6 0%, #ffffff 100%);
  color: #3d2c35;
  padding-top: 60px;
  padding-bottom: 40px;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

.site-footer-title {
  color: #b02a55;
  font-weight: 600;
  font-size: 1.2rem;
}

.navbar-brand-text {
  color: #b02a55;
  font-weight: bold;
  font-size: 1.1rem;
}

.navbar-brand-text small {
  color: #6c3d4e;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.footer-time {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.footer-link {
  color: #b02a55;
  text-decoration: none;
  transition: 0.3s;
}

.footer-link:hover {
  color: #f64f59;
  text-decoration: underline;
}

.social-icon {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
}

.social-icon-link {
  font-size: 1.2rem;
  color: #b02a55;
  background-color: #fff0f6;
  padding: 10px;
  border-radius: 50%;
  display: inline-block;
  transition: 0.3s ease;
}

.social-icon-link:hover {
  background-color: #f64f59;
  color: #fff;
}


/*---------------------------------------
  COMPREHENSIVE RESPONSIVE STYLES
  Mobile First Approach - All Screen Sizes
-----------------------------------------*/

/* Extra Small Devices (320px - 575px) */
@media screen and (max-width: 575px) {
  :root {
    --h1-font-size: 28px;
    --h2-font-size: 24px;
    --h3-font-size: 20px;
    --h4-font-size: 18px;
    --h5-font-size: 16px;
    --h6-font-size: 14px;
    --p-font-size: 14px;
    --menu-font-size: 14px;
  }

  body {
    font-size: 16px;
    line-height: 1.5;
  }

  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
  }

  p {
    margin-bottom: 12px;
  }

  .section-padding {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .row {
    margin-left: -12px;
    margin-right: -12px;
  }

  .col-xs-12,
  [class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .hero-section {
    padding: 60px 0;
    min-height: auto;
    background-size: contain;
    background-position: center;
  }

  .hero-section h1,
  .hero-section h2 {
    font-size: clamp(20px, 5vw, 28px);
    line-height: 1.2;
  }

  .hero-section p,
  .hero-section .lead {
    font-size: clamp(13px, 4vw, 14px);
  }

  .custom-btn {
    padding: 8px 16px;
    font-size: 12px;
    display: inline-block;
    width: auto;
  }

  .custom-btn-group {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .custom-btn-group a {
    width: 100%;
    max-width: 200px;
  }

  .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .navbar-brand-image {
    width: 40px;
    height: 40px;
    margin-right: 8px;
  }

  .navbar-brand-text {
    font-size: 14px;
  }

  .navbar-brand-text small {
    font-size: 8px;
  }

  .navbar-toggler {
    padding: 5px 6px;
  }

  .navbar-nav {
    gap: 5px;
  }

  .navbar-nav .nav-link {
    font-size: 12px;
    padding: 8px 12px;
    margin: 3px;
  }

  .navbar .dropdown-menu {
    max-width: 100%;
    margin-left: 0;
    left: 0;
  }

  .offcanvas {
    width: 100% !important;
    max-width: 320px;
    padding: 20px;
  }

  .navbar-expand-lg {
    position: relative;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .section-bg-image {
    height: auto;
    padding: 40px 0;
    background-size: cover;
    background-position: center;
  }

  .section-bg-image::before,
  .section-bg-image::after {
    height: 60px;
  }

  .section-bg-image-block {
    max-width: 100%;
    padding: 20px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .form-control {
    font-size: 14px;
    padding: 8px 12px;
  }

  .membership-form,
  .custom-form,
  .contact-form {
    padding: 15px;
  }

  .custom-form button[type="submit"] {
    padding: 10px 16px;
    font-size: 13px;
    width: 100%;
  }

  input[type="email"],
  input[type="text"],
  input[type="password"],
  textarea,
  select {
    width: 100%;
    max-width: 100%;
  }

  .table-responsive {
    font-size: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table>:not(caption)>*>* {
    padding: 10px 8px;
  }

  .table-responsive thead th {
    padding: 12px 8px !important;
    font-size: 12px;
  }

  .text-center {
    text-align: center;
  }

  .member-block,
  .team-card,
  .custom-block {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .member-block-image,
  .team-card-image,
  .custom-block-image {
    width: 100%;
    height: auto;
    min-height: 200px;
  }

  .member-block-info,
  .team-card-info {
    width: 100%;
    padding: 15px;
  }

  .custom-quote {
    font-size: 16px;
    padding: 15px;
    margin: 15px 0;
  }

  .custom-block-date-wrap {
    width: 100%;
    padding: 15px;
  }

  .section-bg-image-block .input-group {
    flex-direction: column;
    padding: 8px;
  }

  .section-bg-image-block .input-group-text {
    font-size: 1.1rem;
  }

  .section-bg-image-block input[type="email"] {
    font-size: 14px;
  }

  .site-footer {
    padding-top: 30px;
    padding-bottom: 20px;
  }

  .site-footer svg {
    height: 50px;
  }

  .footer-link,
  .site-footer-title,
  .site-footer p {
    font-size: 13px;
  }

  .social-icon-link {
    font-size: 14px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    padding: 0;
  }

  .btn-outline-pink {
    padding: 8px 16px;
    font-size: 12px;
  }

  .about-her-section {
    padding: 15px;
  }

  video,
  iframe {
    max-width: 100%;
    height: auto;
  }
}

/* Small Devices (576px - 767px) - Tablets */
@media screen and (min-width: 576px) and (max-width: 767px) {
  :root {
    --h1-font-size: 32px;
    --h2-font-size: 28px;
    --h3-font-size: 24px;
    --h4-font-size: 20px;
    --h5-font-size: 18px;
    --h6-font-size: 16px;
    --p-font-size: 15px;
    --menu-font-size: 14px;
  }

  .section-padding {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .container {
    max-width: 540px;
  }

  .hero-section {
    padding: 80px 0;
    min-height: auto;
  }

  .hero-section h1,
  .hero-section h2 {
    font-size: clamp(24px, 6vw, 32px);
  }

  .hero-section p,
  .hero-section .lead {
    font-size: clamp(14px, 4vw, 16px);
  }

  .custom-btn {
    padding: 10px 18px;
    font-size: 13px;
  }

  .custom-btn-group {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .custom-btn-group a {
    width: auto;
  }

  .navbar {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .navbar-brand-image {
    width: 44px;
    height: 44px;
  }

  .navbar-brand-text {
    font-size: 16px;
  }

  .navbar-nav .nav-link {
    font-size: 13px;
    padding: 8px 14px;
  }

  .offcanvas {
    max-width: 280px;
    padding: 20px;
  }

  .section-bg-image {
    height: auto;
    padding: 60px 0;
  }

  .section-bg-image-block {
    max-width: 100%;
    padding: 25px;
    margin-top: 30px;
  }

  .form-control {
    font-size: 14px;
    padding: 9px 14px;
  }

  .membership-form,
  .custom-form,
  .contact-form {
    padding: 20px;
  }

  .table-responsive {
    font-size: 13px;
  }

  .table>:not(caption)>*>* {
    padding: 12px 10px;
  }

  .member-block,
  .team-card {
    flex-direction: row;
    margin-bottom: 20px;
  }

  .member-block-image,
  .team-card-image {
    width: 40%;
    height: 100%;
  }

  .member-block-info,
  .team-card-info {
    width: 60%;
    padding: 15px;
  }

  .site-footer {
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .footer-link,
  .site-footer-title {
    font-size: 14px;
  }

  .social-icon-link {
    font-size: 16px;
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}

/* Medium Devices (768px - 991px) - Landscape Tablets & Small Desktops */
@media screen and (min-width: 768px) and (max-width: 991px) {
  :root {
    --h1-font-size: 36px;
    --h2-font-size: 30px;
    --h3-font-size: 26px;
    --h4-font-size: 22px;
    --h5-font-size: 20px;
    --h6-font-size: 18px;
    --p-font-size: 16px;
  }

  .section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .container {
    max-width: 720px;
  }

  .hero-section {
    padding: 100px 0;
    min-height: 600px;
  }

  .section-bg-image {
    height: auto;
    padding: 80px 0;
  }

  .section-bg-image-block {
    max-width: 100%;
    padding: 30px;
    margin-top: 40px;
  }

  .membership-form,
  .custom-form,
  .contact-form {
    padding: 25px;
  }

  .form-control {
    font-size: 15px;
    padding: 10px 15px;
  }

  .custom-form button[type="submit"] {
    padding: 12px 20px;
    font-size: 14px;
  }

  .table>:not(caption)>*>* {
    padding: 14px 12px;
  }

  .site-footer {
    padding-top: 50px;
    padding-bottom: 40px;
  }
}

/* Large Devices (992px - 1199px) - Desktops */
@media screen and (min-width: 992px) and (max-width: 1199px) {
  :root {
    --h1-font-size: 40px;
    --h2-font-size: 34px;
    --h3-font-size: 28px;
    --h4-font-size: 24px;
    --h5-font-size: 22px;
    --h6-font-size: 20px;
    --p-font-size: 17px;
  }

  .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .container {
    max-width: 960px;
  }

  .hero-section {
    padding: 120px 0;
    min-height: 700px;
  }

  .section-bg-image {
    height: 800px;
    padding: 80px 40px;
  }

  .section-bg-image-block {
    max-width: 500px;
    padding: 40px;
    margin-top: 50px;
  }

  .membership-form,
  .custom-form,
  .contact-form {
    padding: 30px;
  }
}

/* Extra Large Devices (1200px and above) - Large Desktops */
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }

  .hero-section {
    padding: 140px 0;
    min-height: 800px;
  }

  .section-bg-image {
    height: 900px;
    padding: 100px 40px;
  }

  .section-bg-image-block {
    max-width: 550px;
    padding: 50px;
    margin-top: 60px;
  }

  .membership-form,
  .custom-form,
  .contact-form {
    padding: 40px;
  }
}

/* Ultra Large Devices (1400px and above) - Widescreen */
@media screen and (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }

  :root {
    --h1-font-size: 48px;
    --h2-font-size: 42px;
    --h3-font-size: 32px;
  }

  .hero-section {
    min-height: 900px;
  }

  .section-bg-image {
    height: 1000px;
  }
}

/* Ultra Small - Touch Devices (max-width: 360px) */
@media screen and (max-width: 360px) {
  .navbar-brand-text {
    font-size: 12px;
  }

  .navbar-brand-image {
    width: 35px;
    height: 35px;
  }

  .hero-section h1 {
    font-size: 20px;
  }

  .hero-section h2 {
    font-size: 18px;
  }

  .custom-btn {
    min-width: 80px;
    padding: 6px 12px;
  }

  .section-bg-image-block {
    padding: 15px;
  }
}

/* Responsive Utilities */
@media screen and (max-width: 767px) {
  .d-md-block {
    display: none !important;
  }

  .d-md-none {
    display: block !important;
  }

  .text-md-center {
    text-align: center !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .m-md-0 {
    margin: 0 !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }
}

@media screen and (max-width: 575px) {
  .d-lg-block {
    display: none !important;
  }

  .d-lg-none {
    display: block !important;
  }

  .text-lg-center {
    text-align: center !important;
  }

  .p-lg-3 {
    padding: 0 !important;
  }

  .m-lg-0 {
    margin: 0 !important;
  }

  .d-flex-column {
    flex-direction: column !important;
  }

  .full-width {
    width: 100% !important;
  }

  .full-height {
    height: auto !important;
  }
}

/* Print Styles */
@media print {
  body {
    background: white;
  }

  .navbar,
  .site-footer,
  .offcanvas {
    display: none;
  }

  img {
    max-width: 100%;
  }
}
