.Golf {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.golf-main {
  flex: 1;
  background-color: #f8f5f0;
}

/* Sub Navigation */
.golf-header {
  background-color: #f8f5f0;
  padding: 20px 0;
  border-bottom: none;
}

.golf-header .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sub-nav {
  margin: 0;
  padding: 0;
  text-align: center;
}

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

.nav-pills li {
  margin: 0;
}

.nav-pills li a {
  display: block;
  padding: 12px 25px;
  text-decoration: none;
  color: #2c2c2c;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-radius: 25px;
  border: 1px solid transparent;
}

.nav-pills li a:hover {
  background-color: #f8f5f0;
  color: #0ca2c6;
}

.nav-pills li.active a {
  background-color: #0ca2c6;
  color: #ffffff;
  border-color: #0ca2c6;
}

/* Mobile Select */
.mobile-select {
  padding: 0 20px;
}

.mobile-select-control {
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  background-color: #ffffff;
  color: #2c2c2c;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 viewBox=%270 0 12 12%27%3E%3Cpath fill=%27%232c2c2c%27 d=%27M6 9L1 4h10z%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

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

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

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

.Golf .container.custom-image {
  padding: 0 20px;
}

.Golf .container.custom-text {
  padding: 40px 20px;
  text-align: left !important;
  display: block;
}

.Golf .container.custom-text * {
  text-align: left !important;
  display: block;
}

.Golf .container.custom-text a {
  display: inline !important;
}

.Golf .container.custom-html {
  padding: 30px 20px;
}

.Golf .container hr {
  border: 0;
  border-top: 2px solid #d0d0d0;
  margin: 50px 0;
}

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

/* Responsive Utilities */
@media (min-width: 768px) {
  .hidden-sm,
  .hidden-md,
  .hidden-lg {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }

  .page-header {
    margin-top: 0 !important;
    padding: 20px 30px 15px !important;
  }

  .page-header h1 {
    font-size: 1.75rem !important;
  }
}

/* Golf Carousel - Unique to Golf page */
.Golf .carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
}

.Golf .carousel-inner {
  position: relative;
  width: 100%;
  height: 760px;
  max-width: 1140px;
}

.Golf .carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.Golf .carousel-item.active {
  opacity: 1;
  position: relative;
}

.Golf .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.Golf .carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffff !important;
  border: none;
  color: #2c2c2c;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-weight: 300;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
  padding: 0 0 4px 0;
}

.Golf .carousel-control:hover {
  background-color: #00a3c6 !important;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 163, 198, 0.4) !important;
}

.Golf .carousel-control.prev {
  left: 15px;
}

.Golf .carousel-control.next {
  right: 15px;
}

/* Text Sections */
.Golf .custom-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.Golf .custom-text h2 {
  font-size: 2rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  color: #333;
  margin-bottom: 20px;
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.Golf .custom-text a {
  color: #00a3c6;
  text-decoration: none;
  font-weight: 500;
}

.Golf .custom-text a:hover {
  color: #008aa8;
  text-decoration: underline;
}

/* Override container centering for contact section */
.Golf .container.contact-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}
/* Force the contact block to align left like the button */
.Golf .contact-section,
.Golf .contact-section * {
  text-align: left !important;
}

.Golf .contact-section {
  display: flex;
  justify-content: flex-start;
}

.Golf .contact-section .contact-content-wrapper {
  width: 100%;
  margin: 0;
}
.contact-content-wrapper {
  margin: 0;
  padding: 0;
  text-align: left;
}

.contact-content-wrapper h2,
.contact-content-wrapper p {
  text-align: left !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
}

/* Reserve Section */
.reserve-section {
  text-align: left;
}

.btn-reserve {
  display: inline-block;
  background-color: #00a3c6;
  color: #fff;
  padding: 15px 40px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  margin-bottom: 20px;
}

.btn-reserve:hover {
  background-color: #008aa8;
}

.maintenance-notice {
  background-color: #41693d;
  color: #ffffff;
  padding: 12px 24px;
  margin: 20px 0;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
  border-radius: 4px;
}

.disclaimer {
  margin-top: 10px;
  font-size: 10pt;
  color: #666;
}

/* Image-Text Sections */
.image-text-section {
  padding: 40px 20px;
}

.image-text-section .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.image-text-section.reverse .row {
  grid-template-columns: 1fr 1fr;
}

.image-text-section.reverse .col-image {
  order: 2;
}

.image-text-section.reverse .col-text {
  order: 1;
}

.col-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.col-text h2 {
  font-size: 2rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  color: #333;
  margin-bottom: 20px;
}

.col-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.col-text a {
  color: #00a3c6;
  text-decoration: none;
  font-weight: 500;
}

.col-text a:hover {
  color: #008aa8;
  text-decoration: underline;
}

.btn-price {
  display: inline-block;
  background-color: #00a3c6;
  color: #fff !important;
  padding: 15px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  text-align: center;
}

.btn-price:hover {
  background-color: #008aa8;
  color: #fff !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .golf-sub-nav {
    top: 60px;
  }

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

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

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

  .Golf .page-header h1 {
    font-size: 2rem;
  }

  .Golf .carousel-inner {
    height: 500px;
  }

  .image-text-section .row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .image-text-section.reverse .row {
    grid-template-columns: 1fr;
  }

  .image-text-section.reverse .col-image {
    order: 1;
  }

  .image-text-section.reverse .col-text {
    order: 2;
  }

  .col-text h2 {
    font-size: 1.75rem;
  }

  .Golf .carousel-control {
    width: 38px;
    height: 38px;
    font-size: 1.8rem;
  }

  .Golf .carousel-control.prev {
    left: 10px;
  }

  .Golf .carousel-control.next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .golf-nav-pills li a {
    padding: 8px 15px;
    font-size: 0.9rem;
  }

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

  .Golf .page-header h1 {
    font-size: 1.75rem;
  }

  .Golf .carousel-inner {
    height: 300px;
  }

  .Golf .carousel-control {
    width: 32px;
    height: 32px;
    font-size: 28px;
  }

  .Golf .carousel-control.prev {
    left: 8px;
  }

  .Golf .carousel-control.next {
    right: 8px;
  }

  .btn-reserve,
  .btn-price {
    width: 100%;
    text-align: center;
  }

  .maintenance-notice {
    font-size: 12px;
    padding: 10px 15px;
  }

  .col-text h2 {
    font-size: 1.5rem;
  }

  .col-text p,
  .Golf .custom-text p {
    font-size: 1rem;
  }
}


/*# sourceMappingURL=220.429532df.chunk.css.map*/