/* Global Styles & Variables */
:root {
    --primary-color: #1E3F20;       /* Deep Forest Green */
    --secondary-color: #FFD166;     /* Sunrise Gold */
    --accent-color: #D56C2C;       /* Rust Red */
    --text-color: #212529;          /* Almost Black */
    --light-text-color: #F8F9FA;    /* Off-White */
    --background-color: #F8F9FA;    /* Light Warm Gray */
    --card-background: #ffffff;     /* Pure White */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}



body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 20px 0;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
}

ul {
    list-style: none;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

/* Navigation Bar */
#navbar {
    background: var(--card-background);
    color: var(--primary-color);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#navbar nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    /* max-width: 1100px; */
    max-width: 66%;
    margin: auto;
}

#navbar .logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
}

#header-logo {
    max-height: 90px; /* Adjust as needed */
    vertical-align: middle; /* Helps align image with any adjacent text/elements if they existed */
}

#navbar ul {
    display: flex;
    align-items: center;
}

#navbar ul li {
    margin-left: 20px;
}

#navbar ul li a {
    color: var(--primary-color);
    padding: 0.5rem;
    transition: color 0.3s ease;
}

#navbar ul li a:hover {
    color: var(--accent-color);
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--light-text-color) !important; /* Important to override link color */
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #d35400; /* Darker shade of accent */
}

/* Hero Section */
#hero {
    background: url('../images/hero-background.jpg') no-repeat center center/cover; /* Placeholder image */
    color: var(--light-text-color);
    height: 100vh; /* Full viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    margin-top: 60px; /* Adjust based on navbar height */
}

#hero .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--light-text-color);
}

@media (min-width: 992px) {
  /* No special alignment for .hero-content: keep centered */
}

#hero .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


#hero .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto; /* Center the block */
    margin-right: auto; /* Center the block */
    text-shadow: 2px 2px 5px rgba(0,0,0,0.8), 0px 0px 2px  rgba(0,0,0,1);
}

#hero .hero-cta {
    font-size: 1.1rem;
    padding: 15px 30px;
}

/* General Section Styling */
section {
    padding: 60px 0;
    text-align: center;
}

section:nth-child(even) {
    background-color: var(--card-background);
}

/* Problem/Solution Section */
#problem-solution p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Program Overview Section */
#program p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 2rem;
    text-align: left;
}

.benefit-card {
    box-sizing: border-box; /* Ensures padding is included in the element's total width/height */
    background: var(--card-background);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.benefit-card .benefit-icon {
    font-size: 2.5rem; /* Placeholder for actual icon styling */
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-align: center;
}

.benefit-card h3, .benefit-card h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.benefit-card h4 {
    font-size: 1.25rem; /* Slightly smaller than h3 */
    font-family: var(--font-heading);
}

.benefit-card p {
    text-align: center; /* Center paragraph text in cards */
}

/* Coach Section */
#coach {
    background-color: var(--card-background);
}
.coach-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.coach-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--accent-color);
}

.coach-info {
    max-width: 600px;
}

.coach-info .certification {
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.coach-info blockquote {
    font-style: italic;
    margin-top: 1rem;
    padding: 1rem;
    background: var(--background-color);
    border-left: 5px solid var(--accent-color);
    border-radius: 5px;
}

/* Achieve Section */
#achieve ul {
    list-style: disc;
    padding-left: 20px;
    max-width: 600px;
    margin: 1rem auto;
    text-align: left;
}

#achieve ul li {
    margin-bottom: 0.75rem;
}

/* Waitlist Section */
/* #waitlist-form {
    max-width: 500px;
    margin: 2rem auto 0;
    background: var(--card-background);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: left;
} */

/* .form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

#waitlist-form .cta-button {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
} */

.privacy-note {
    font-size: 0.9rem;
    color: #777;
    text-align: center;
    margin-top: 1rem;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--light-text-color);
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin-bottom: 0.5rem;
}

footer a {
    color: var(--light-text-color);
    text-decoration: underline;
}

footer a:hover {
    color: var(--accent-color);
}

/* Burger Menu Styles */
.burger {
    display: none; /* Hidden by default on larger screens, shown via responsive.css */
    cursor: pointer;
    margin-right: 10px; /* Add some spacing if needed when visible */
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0; /* Adjusted margin for vertical spacing only */
    transition: all 0.3s ease;
}

/* Animation for burger to 'X' (when .toggle class is added to .burger by JS) */
.burger.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.toggle .line2 {
    opacity: 0;
}

.burger.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}
