/* FRONT PAGE HERO SECTION */
.hero {
  background: var(--fgt-white);
  padding: 3em 2em 2em 2em;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 2em;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5em;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5em;
}

/* FRONT PAGE SERVICES / WHAT WE OFFER SECTION */
.features {
  margin: 3em 0;
  text-align: left;
}
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
  margin-bottom: 2em;
}
.feature {
  flex: 1 1 300px;
  min-width: 250px;
  max-width: 350px;
  background: var(--fgt-white);
  border-radius: 8px;
  border: 1.5px solid var(--fgt-primary-color); /* Thin green border on box */
  padding: 1.5em;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10); /* Shadow cast outside border */
  text-align: center;
}

/* FRONT PAGE ABOUT SECTION */
.about {
  margin: 3em 0;
}
.about-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  align-items: center;
}

.about-imagecolumn {
  flex: 1 1 350px;
  min-width: 250px;
}

.about-image {
  width: 100%;
  border-radius: 8px;
}

.about-contentcolumn {
  flex: 2 1 400px;
  min-width: 250px;
  text-align: left;
}

.about h2 {
  font-size: 1.75rem;
  font-weight: var(--fgt-primary-font-weight);
  color: var(--fgt-heading-text-color);
  line-height: 1.16;
  margin: 0 0 0.83em 0; /* shorthand: top right bottom left */
  text-align: left;
  word-break: break-word;
  unicode-bidi: isolate; /* Prevents adjacent text from affecting layout */
}

/* FRONT PAGE WHY CHOOSE US SECTION */

.why-choose-us {
  background: var(--fgt-bg-accent-color);
  border-radius: 12px;
  padding: 2em;
  margin-bottom: 2em;
}



.why-choose-us-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
}

 .why-choose-us-feature {
  flex: 1 1 250px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1em;
  text-align: left;
}

.why-choose-us-feature p {
  text-align: justify;
}
.why-choose-us-feature h3 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.25em;
  margin-top: 0.2em;
  margin-bottom: 0.2em;
  text-align: left;
  font-size: 1.25rem;
  font-weight: 600;
  white-space: nowrap;
  word-break: normal;
}
.golf-ball-wrap {
  position: relative;
  display: inline-block;
}
.golf-ball-icon {
  width: 50px;
  max-width: 50px;
  height: 50px;
  margin-bottom: 0;
  margin-top: 0;
  vertical-align: middle;
  display: inline-block;
}
.golf-ball-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.1rem;
  font-weight: bold;
  color: #377A00;
  background: transparent;
  border-radius: 50%;
  padding: 0;
  box-shadow: none;
  pointer-events: none;
}

/* Front Page Call To Action Section */
.call-to-action {
  text-align: center;
  margin: 1.5em 0;
  padding: 1.5em 0;                 /* top/bottom spacing */
}

.call-to-action-inner {
  max-width: 1030px;               /* keeps text at readable width */
  margin: 0 auto;                 /* centers the block */
  padding: 0 1.5em;               /* side padding so text never touches edge */
}

.call-to-action h2 {
  margin-bottom: 1em;
  text-align: center;
}

.call-to-action p {
  margin-bottom: 1.5em;
  line-height: 1.6;
}

.feature-link {
  color: var(--fgt-primary-color); /* dark green */
  background: none;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 0;
  box-shadow: none;
  transition: color 0.2s;
}
.feature-link:hover,
.feature-link:focus {
  color: var(--fgt-accent-color); /* accent green */
  text-decoration: none;
}