/* Shared Golf Sub Navigation Styles */
/* This file should be imported in all Golf-related pages */

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

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

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

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

.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;
}

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

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

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

.golf-mobile-dropdown-toggle {
  width: 100%;
  background-color: #fff;
  border: 2px solid #00bcd4;
  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;
}

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

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

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

.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;
}

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

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

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

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

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

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

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

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

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

/* Bold text styling - Shared across Golf pages */
strong {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
}

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

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

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

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

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

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

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

.Packages .page-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

/* Hero Title */
.Packages .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;
}

/* Common Row/Column Styles */
.Packages .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

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

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

  .Packages .col-sm-push-6 {
    position: relative;
    left: 50%;
  }

  .Packages .col-sm-pull-6 {
    position: relative;
    right: 50%;
  }
}

/* Text Left - Image Right Section */
.Packages .custom-text-left-image-right {
  margin: 60px auto;
  padding: 0 20px;
}

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

.Packages .custom-text-left-image-right img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}

.Packages .custom-text-left-image-right h2 {
  font-size: 1.8rem;
  font-weight: 300;
  font-family: "Source Sans Pro", sans-serif;
  color: #333;
  margin-bottom: 20px;
  margin-top: 0;
}

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

/* Image Left - Text Right Section */
.Packages .custom-image-left-text-right {
  margin: 60px auto;
  padding: 0 20px;
}

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

.Packages .custom-image-left-text-right img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}

.Packages .custom-image-left-text-right h2 {
  font-size: 1.8rem;
  font-weight: 300;
  font-family: "Source Sans Pro", sans-serif;
  color: #333;
  margin-bottom: 20px;
  margin-top: 0;
}

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

/* Custom HTML Section (Buttons & Dividers) */
.Packages .custom-html {
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}

.Packages .custom-html hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 0;
}

.Packages .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.Packages .btn-primary {
  background-color: #00bcd4;
  color: #fff;
  border: 2px solid #00bcd4;
}

.Packages .btn-primary:hover {
  background-color: #0097a7;
  border-color: #0097a7;
}

/* Custom Text Section */
.Packages .custom-text {
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

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

.Packages strong {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
}

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
  .golf-header {
    margin-top: 60px;
  }

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

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

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

  .Packages .col-sm-6,
  .Packages .col-sm-push-6,
  .Packages .col-sm-pull-6 {
    flex: 0 0 100%;
    max-width: 100%;
    order: unset;
    position: static;
    left: 0;
    right: 0;
  }

  .Packages .custom-text-left-image-right,
  .Packages .custom-image-left-text-right {
    margin: 40px auto;
  }

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

  .Packages .custom-text-left-image-right h2,
  .Packages .custom-image-left-text-right h2 {
    font-size: 1.5rem;
  }

  .Packages .custom-text-left-image-right p,
  .Packages .custom-image-left-text-right p {
    font-size: 0.95rem;
  }

  .Packages .custom-text {
    margin: 40px auto;
  }

  .Packages .custom-text h2 {
    font-size: 1.25rem;
  }

  .Packages .custom-text p {
    font-size: 1rem;
  }

  .Packages .btn {
    width: 100% !important;
    max-width: 210px;
  }
}


/*# sourceMappingURL=151.eea07f56.chunk.css.map*/