.GolfClub {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #f8f5f0;
}

/* Page Header */
.GolfClub .page-header {
  background-color: #f8f5f0;
  padding: 40px 0;
  text-align: center;
  border-bottom: none;
}

.GolfClub .page-header h1 {
  margin: 0;
  font-size: 2.5rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  color: #333;
}

/* Container */
.GolfClub .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Title */
.GolfClub .hero-title {
  font-size: 48px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  color: #333;
  margin-bottom: 40px;
  margin-top: 40px;
  text-align: center;
}

/* Welcome Text Section */
.GolfClub .custom-text {
  padding: 40px 20px;
  text-align: left;
}

.GolfClub .custom-text h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
  color: #666;
  text-align: left;
  margin: 0;
}

/* Row Layout */
.GolfClub .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.GolfClub .col-xs-12 {
  width: 100%;
  padding: 0 15px;
}

/* Desktop Grid */
@media (min-width: 768px) {
  .GolfClub .col-sm-4 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }

  .GolfClub .col-sm-8 {
    flex: 0 0 66.66%;
    max-width: 66.66%;
  }

  .GolfClub .col-sm-push-4 {
    position: relative;
    left: 33.33%;
  }

  .GolfClub .col-sm-pull-8 {
    position: relative;
    right: 66.66%;
  }
}

/* Custom Section - keeps image and text together */
.GolfClub .custom-section {
  padding: 40px 20px;
}

.GolfClub .section-group {
  margin-bottom: 30px;
}

.GolfClub .section-group h2 {
  font-size: 28px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  color: #333;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.GolfClub .section-group img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.GolfClub .section-button {
  margin-top: 20px;
}

/* Image-Text Sections */
.GolfClub .custom-image-left-text-right,
.GolfClub .custom-text-left-image-right,
.GolfClub .custom-text-left-text-right,
.GolfClub .custom-image-left-image-right {
  padding: 40px 20px;
}

.GolfClub .custom-image-left-text-right .row,
.GolfClub .custom-text-left-image-right .row {
  display: flex;
  align-items: center;
}

.GolfClub .custom-image-left-text-right img,
.GolfClub .custom-text-left-image-right img,
.GolfClub .custom-image-left-image-right img {
  width: 100%;
  height: auto;
  display: block;
}

.GolfClub .custom-image-left-text-right h2,
.GolfClub .custom-text-left-image-right h2,
.GolfClub .custom-text-left-text-right h2 {
  font-size: 28px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  color: #333;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.GolfClub .custom-image-left-text-right p,
.GolfClub .custom-text-left-image-right p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 15px;
}

.GolfClub .custom-image-left-text-right a,
.GolfClub .custom-text-left-image-right a {
  color: #008ead;
  text-decoration: none;
  transition: color 0.3s ease;
}

.GolfClub .custom-image-left-text-right a:hover,
.GolfClub .custom-text-left-image-right a:hover {
  color: #006a82;
}

/* Golf Club Button */
.GolfClub .golf-club-btn {
  background-color: #008ead;
  color: white;
  width: 180px;
  height: 55px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: normal;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.GolfClub .golf-club-btn:hover {
  background-color: #006a82;
  color: #d6d6d6;
}

/* Divider */
.GolfClub .custom-html hr {
  border: 0;
  border-top: 1px solid #e0e0e0;
  margin: 40px 0;
}

/* Responsive Layout for Medium Screens */
@media (min-width: 768px) {
  .GolfClub .col-sm-4 {
    width: 33.33333333%;
    padding: 0 15px;
  }

  .GolfClub .col-sm-6 {
    width: 50%;
    padding: 0 15px;
  }

  .GolfClub .col-sm-8 {
    width: 66.66666667%;
    padding: 0 15px;
  }

  .GolfClub .col-sm-push-4 {
    left: 33.33333333%;
    position: relative;
  }

  .GolfClub .col-sm-pull-8 {
    right: 66.66666667%;
    position: relative;
  }

  .GolfClub .custom-image-left-text-right .col-sm-4,
  .GolfClub .custom-text-left-image-right .col-sm-4 {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .GolfClub .custom-text-left-text-right .row {
    margin-bottom: 20px;
  }

  .GolfClub .custom-image-left-image-right .row {
    margin-bottom: 20px;
  }
}

/* Sub Navigation */
.GolfClub .golf-sub-nav {
  background-color: #f8f5f0;
  border-bottom: none;
  padding: 0;
  position: sticky;
  top: 80px;
  z-index: 100;
  box-shadow: none;
}

.GolfClub .golf-sub-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  background-color: #f8f5f0;
}

.GolfClub .golf-nav-pills {
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 15px 0;
}

.GolfClub .golf-nav-pills li {
  margin: 0;
}

.GolfClub .golf-nav-pills li a {
  display: block;
  padding: 10px 20px;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 25px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  font-weight: 500;
  white-space: nowrap;
}

.GolfClub .golf-nav-pills li a:hover {
  background-color: #00a3c6;
  color: #fff;
  border-color: #00a3c6;
}

.GolfClub .golf-nav-pills li.active a {
  background-color: #00a3c6;
  color: #fff;
  border-color: #00a3c6;
}

/* Mobile Dropdown - Hidden on Desktop */
.GolfClub .golf-mobile-dropdown {
  display: none;
}

.GolfClub .golf-mobile-dropdown-toggle {
  width: 100%;
  background-color: #fff;
  border: 2px solid #00a3c6;
  border-radius: 8px;
  padding: 15px 20px;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.GolfClub .golf-mobile-dropdown-toggle:hover {
  background-color: #f0f0f0;
}

.GolfClub .dropdown-arrow {
  transition: transform 0.3s ease;
  font-size: 0.8rem;
  color: #00a3c6;
}

.GolfClub .dropdown-arrow.open {
  transform: rotate(180deg);
}

.GolfClub .golf-mobile-dropdown-menu {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.GolfClub .golf-mobile-dropdown-menu li {
  margin: 0;
  border-bottom: 1px solid #f0f0f0;
}

.GolfClub .golf-mobile-dropdown-menu li:last-child {
  border-bottom: none;
}

.GolfClub .golf-mobile-dropdown-menu li a {
  display: block;
  padding: 15px 20px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.GolfClub .golf-mobile-dropdown-menu li a:hover {
  background-color: #f0f0f0;
  color: #00a3c6;
}

.GolfClub .golf-mobile-dropdown-menu li.active a {
  background-color: #00a3c6;
  color: #fff;
}

/* Tablet Responsive */
@media (max-width: 991px) {
  .GolfClub .page-header h1 {
    font-size: 30px;
  }
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .GolfClub .golf-sub-nav {
    top: 60px;
    margin-top: 60px;
  }

  .GolfClub .golf-header {
    margin-top: 60px;
  }

  /* Hide pills navigation on mobile */
  .GolfClub .golf-nav-pills {
    display: none;
  }

  /* Show mobile dropdown on mobile */
  .GolfClub .golf-mobile-dropdown {
    display: block;
  }

  /* Hide divider sections in mobile */
  .GolfClub .custom-html {
    display: none;
  }

  .GolfClub .page-header {
    padding: 30px 0;
  }

  .GolfClub .page-header h1 {
    font-size: 30px;
  }

  .GolfClub .hero-title {
    font-size: 48px;
    margin-bottom: 30px;
  }

  .GolfClub .custom-text h3 {
    font-size: 18px;
  }

  .GolfClub .custom-image-left-text-right h2,
  .GolfClub .custom-text-left-image-right h2,
  .GolfClub .custom-text-left-text-right h2 {
    font-size: 24px;
    margin-top: 20px;
  }

  .GolfClub .col-sm-4,
  .GolfClub .col-sm-8,
  .GolfClub .col-sm-push-4,
  .GolfClub .col-sm-pull-8 {
    flex: 0 0 100%;
    max-width: 100%;
    left: 0;
    right: 0;
    position: static;
  }

  .GolfClub .custom-text-left-image-right .row,
  .GolfClub .custom-image-left-text-right .row {
    display: flex;
    flex-direction: column;
  }

  .GolfClub .custom-text-left-image-right .col-xs-12:first-child {
    order: 2;
  }

  .GolfClub .custom-text-left-image-right .col-xs-12:last-child {
    order: 1;
  }

  .GolfClub .golf-club-btn {
    width: 100%;
    max-width: 180px;
    margin: 20px 0;
  }
}


/*# sourceMappingURL=246.e5cb153e.chunk.css.map*/