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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Custom Text Section (Intro) */
.CourseMap .custom-text {
  padding: 40px 20px;
  text-align: left;
}

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

.CourseMap .custom-text h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #555;
  margin-bottom: 20px;
  text-align: left;
}

.CourseMap .custom-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  text-align: left;
}

/* Custom HTML Section (Button) */
.CourseMap .custom-html {
  padding: 30px 20px;
  text-align: left;
}

.CourseMap .btn-field-card {
  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;
  min-width: 200px;
  height: 55px;
  line-height: 25px;
  text-align: center;
}

.CourseMap .btn-field-card:hover {
  background-color: #008aa8;
}

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

/* Hole Section */
.CourseMap .hole-section {
  padding: 40px 20px;
}

.CourseMap .hole-section .hole-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Image Left Layout (Even holes: 0, 2, 4...) */
.CourseMap .hole-section.image-left .hole-content {
  grid-template-areas: "image text";
}

.CourseMap .hole-section.image-left .hole-image {
  grid-area: image;
}

.CourseMap .hole-section.image-left .hole-text {
  grid-area: text;
}

/* Image Right Layout (Odd holes: 1, 3, 5...) */
.CourseMap .hole-section.image-right .hole-content {
  grid-template-areas: "text image";
}

.CourseMap .hole-section.image-right .hole-image {
  grid-area: image;
}

.CourseMap .hole-section.image-right .hole-text {
  grid-area: text;
}

/* Hole Image */
.CourseMap .hole-image img {
  width: 555px;
  height: 311px;
  max-width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Hole Text */
.CourseMap .hole-text h2 {
  font-size: 2rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  color: #333;
  margin-bottom: 15px;
}

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

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

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

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

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

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

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

  .CourseMap .container {
    padding: 0;
  }

  .CourseMap .hole-section .hole-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .CourseMap .hole-section.image-left .hole-content,
  .CourseMap .hole-section.image-right .hole-content {
    grid-template-areas:
      "image"
      "text";
  }

  .CourseMap .hole-image img {
    width: 100%;
    height: auto;
  }

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

  .CourseMap .container hr {
    margin: 20px 0;
  }
}

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

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

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

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

  .CourseMap .btn-field-card {
    width: 100%;
    text-align: center;
  }

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

  .CourseMap .hole-text p,
  .CourseMap .custom-text p {
    font-size: 1rem;
  }
}


/*# sourceMappingURL=357.76e37104.chunk.css.map*/