.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #000000cc, #014421cc); /* black to forest green */
}

.hero-overlay {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  filter: blur(1px);
  z-index: 1;
}

.hero-text {
  position: absolute;
  bottom: 30px;
  left: 5%;
  z-index: 2;
  text-align: left;
  color: white;
  background: rgba(0, 0, 0, 0.45);
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  max-width: 300px;
  font-size: 0.9rem;
  backdrop-filter: blur(4px);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.25);
}

.hero-text h1 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-text p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.cta-button {
  background-color: #014421;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #0b5c3d;
}

/* Reset and base */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #000000;
  color: #ffffff;
  line-height: 1.6;
}

a {
  color: #b7ffb1;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header */
header {
  background-color: #003300;
  padding: 20px;
  text-align: center;
  border-bottom: 4px solid #00ff99;
}

header h1 {
  font-size: 2.5rem;
  margin: 0;
  color: #ccffcc;
  text-shadow: 0 0 8px #66ff66;
}

header p {
  font-size: 1.2rem;
  color: #99ffcc;
}

nav a {
  margin: 0 15px;
  font-weight: bold;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(145deg, #003300, #001a00);
}

.hero h1 {
  font-size: 3rem;
  color: #ccffcc;
  text-shadow: 0 0 10px #66ff66;
}

.hero p {
  font-size: 1.2rem;
  color: #d4fcd1;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #66ff66;
  color: #000;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #99ff99;
}

/* Section Layouts */
section {
  padding: 50px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.topics ul {
  list-style-type: square;
  padding-left: 20px;
}

.testimonial blockquote {
  font-style: italic;
  font-size: 1.4rem;
  color: #b3ffb3;
  border-left: 5px solid #66ff66;
  padding-left: 20px;
}

/* Lead Magnet Section */
.lead-magnet {
  background-color: #002200;
  text-align: center;
  padding: 60px 20px;
  margin-top: 40px;
  border-top: 2px solid #66ff66;
}

.lead-magnet h2 {
  color: #ccffcc;
  font-size: 2rem;
  margin-bottom: 20px;
}

.lead-magnet input[type="email"] {
  padding: 12px;
  width: 60%;
  max-width: 300px;
  border: none;
  border-radius: 30px;
  margin-right: 10px;
}

.lead-magnet button {
  padding: 12px 20px;
  background-color: #66ff66;
  color: #000;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

.lead-magnet button:hover {
  background-color: #99ff99;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #001a00;
  font-size: 0.9rem;
  color: #88cc88;
}
/* General Section Styling */
section {
  padding: 50px 20px;
  max-width: 900px;
  margin: 0 auto;
}

/* Section Titles */
h2 {
  font-size: 2rem;
  color: #ccffcc;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 0 8px #66ff66;
}

/* Paragraphs */
p {
  color: #f0f0f0;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* List Styling (Topics, Bullets) */
ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 12px;
  color: #d4fcd1;
} 
.booking-form-section {
  background-color: black;
  border: 2px solid #006400; /* forest green */
  padding: 40px 20px;
  border-radius: 15px;
  margin: 40px auto;
  max-width: 900px;
  color: white;
}

.booking-form-section h3 {
  color: #90ee90;
  text-align: center;
  margin-bottom: 20px;
}.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #000000cc, #014421cc); /* black to forest green */
}

.hero-overlay {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  filter: blur(1px);
  z-index: 1;
}

.hero-text {
  position: absolute;
  bottom: 30px;
  left: 5%;
  z-index: 2;
  text-align: left;
  color: white;
  background: rgba(0, 0, 0, 0.45);
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  max-width: 300px;
  font-size: 0.9rem;
  backdrop-filter: blur(4px);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.25);
}

.hero-text h1 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-text p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.cta-button {
  background-color: #014421;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #0b5c3d;
}

/* Reset and base */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #000000;
  color: #ffffff;
  line-height: 1.6;
}

a {
  color: #b7ffb1;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header */
header {
  background-color: #003300;
  padding: 20px;
  text-align: center;
  border-bottom: 4px solid #00ff99;
}

header h1 {
  font-size: 2.5rem;
  margin: 0;
  color: #ccffcc;
  text-shadow: 0 0 8px #66ff66;
}

header p {
  font-size: 1.2rem;
  color: #99ffcc;
}

nav a {
  margin: 0 15px;
  font-weight: bold;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(145deg, #003300, #001a00);
}

.hero h1 {
  font-size: 3rem;
  color: #ccffcc;
  text-shadow: 0 0 10px #66ff66;
}

.hero p {
  font-size: 1.2rem;
  color: #d4fcd1;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #66ff66;
  color: #000;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #99ff99;
}

/* Section Layouts */
section {
  padding: 50px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.topics ul {
  list-style-type: square;
  padding-left: 20px;
}

.testimonial blockquote {
  font-style: italic;
  font-size: 1.4rem;
  color: #b3ffb3;
  border-left: 5px solid #66ff66;
  padding-left: 20px;
}

/* Lead Magnet Section */
.lead-magnet {
  background-color: #002200;
  text-align: center;
  padding: 60px 20px;
  margin-top: 40px;
  border-top: 2px solid #66ff66;
}

.lead-magnet h2 {
  color: #ccffcc;
  font-size: 2rem;
  margin-bottom: 20px;
}

.lead-magnet input[type="email"] {
  padding: 12px;
  width: 60%;
  max-width: 300px;
  border: none;
  border-radius: 30px;
  margin-right: 10px;
}

.lead-magnet button {
  padding: 12px 20px;
  background-color: #66ff66;
  color: #000;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

.lead-magnet button:hover {
  background-color: #99ff99;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #001a00;
  font-size: 0.9rem;
  color: #88cc88;
}
/* General Section Styling */
section {
  padding: 50px 20px;
  max-width: 900px;
  margin: 0 auto;
}

/* Section Titles */
h2 {
  font-size: 2rem;
  color: #ccffcc;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 0 8px #66ff66;
}

/* Paragraphs */
p {
  color: #f0f0f0;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* List Styling (Topics, Bullets) */
ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 12px;
  color: #d4fcd1;
} 
.booking-form-section {
  background-color: black;
  border: 2px solid #006400; /* forest green */
  padding: 40px 20px;
  border-radius: 15px;
  margin: 40px auto;
  max-width: 900px;
  color: white;
}

.booking-form-section h3 {
  color: #90ee90;
  text-align: center;
  margin-bottom: 20px;
}
 /* Mobile Styling: Make floated image stack above text on small screens */
@media screen and (max-width: 768px) {
  #about-me img {
    float: none !important;
    display: block;
    margin: 0 auto 20px auto !important;
    max-width: 90%;
  }
} 
.main-header {
  background-color: #003300;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  border-bottom: 4px solid #66ff66;
}

.site-logo {
  height: 60px;
  width: auto;
}

.main-nav a {
  margin-left: 20px;
  font-weight: bold;
  color: #ccffcc;
  text-shadow: 0 0 6px #66ff66;
  text-decoration: none;
}

.main-nav a:hover {
  text-decoration: underline;
}
.site-logo {
  height: 80px;
  width: auto;
  display: block;
}
.about-image {
  float: left;
  max-width: 300px;
  margin: 0 20px 20px 0;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

@media screen and (max-width: 768px) {
  .about-image {
    float: none;
    display: block;
    margin: 0 auto 20px auto;
    max-width: 90%;
  }
}
.social-links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.social-icon:hover {
  transform: scale(1.2);
}

@media (max-width: 600px) {
  body {
    font-size: 18px !important;
    padding: 10px;
  }

  header h1 {
    font-size: 1.8rem !important;
  }

  header p {
    font-size: 1rem !important;
  }

  .main-nav a {
    font-size: 1.2rem !important;
    display: block;
    margin: 10px 0;
    text-align: center;
  }

  .site-logo {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
  }

  .hero h1 {
    font-size: 2rem !important;
  }

  .hero p {
    font-size: 1rem !important;
  }

  .cta-button {
    font-size: 1rem;
    padding: 12px 24px;
    display: block;
    margin: 0 auto;
  }

  .social-icon {
    width: 50px !important;
    height: auto;
  }

  section {
    padding: 30px 15px;
  }
}

