/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    /* Font stack using Lato for body, Playfair Display for headings */
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.7;
    color: #4a4a4a; /* Dark grey for text */
    background-color: #fdfbf7; /* Off-white/light beige background */
}

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

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: #6b4f4f; /* Muted brown/earthy tone for headings */
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
}

h2 {
    font-size: 2.2rem;
    font-weight: 600;
    border-bottom: 2px solid #e0ddd5; /* Lighter beige accent */
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    color: #8f7b7b; /* Lighter earthy tone */
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    color: #5a5a5a; /* Slightly darker grey for better readability */
    font-weight: 300; /* Lighter weight for body */
}

a {
    color: #20B2AA; /* Teal/Turquoise accent */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a8f89; /* Darker teal */
}

ul, ol {
    padding-left: 25px;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.6rem;
}

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

/* Navbar */
.navbar {
    background: rgba(253, 251, 247, 0.9); /* Semi-transparent off-white */
    padding: 1.3rem 0; /* Slightly increased vertical padding */
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo img {
    max-height: 65px; /* Significantly increased logo max height */
    display: block; /* Ensure it behaves as a block element */
}

.navbar .nav-links {
    list-style: none;
    display: flex;
}

.navbar .nav-links li {
    margin-left: 1.8rem;
    margin-bottom: 0;
}

.navbar .nav-links a {
    color: #6b4f4f; /* Earthy tone for links */
    font-weight: 400; /* Regular weight */
    font-size: 0.95rem;
    text-transform: uppercase; /* Match reference style */
    letter-spacing: 0.5px;
}

.navbar .nav-links a:hover {
    color: #20B2AA; /* Teal on hover */
    text-decoration: none;
}

/* Hero Section */
.hero {
    /* --- Use the websafe image from the Images subfolder --- */
    background: url('./Images/websafe_DJI_20250422204907_0269_D.jpg') no-repeat center center;
    background-size: cover; /* Ensure image covers the area */
    background-attachment: fixed; /* <-- Add this for parallax effect */
    /* --- --- */
    padding: 8rem 0;
    position: relative;
    text-align: center;
}

/* Overlay for text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1); /* Further reduced opacity for more vibrancy */
    /* Or a darker overlay: background: rgba(0, 0, 0, 0.3); */
    z-index: 1;
}

/* Position hero content above the overlay */
.hero .container {
    position: relative;
    z-index: 2;
    background: rgba(253, 251, 247, 0.85); /* Semi-transparent box like reference */
    padding: 3rem 2rem;
    display: inline-block; /* Center the box */
    border-radius: 5px;
    max-width: 800px; /* Limit width of text box */
}

.hero h1 {
    font-size: 3.2rem; /* Adjust size */
    color: #6b4f4f; /* Earthy tone */
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hero .subtitle {
    font-family: 'Lato', sans-serif; /* Use body font for subtitle */
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #8f7b7b; /* Lighter earthy tone */
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    font-size: 1rem;
    padding: 0.8rem 1.8rem;
}

/* Content Sections */
.content-section {
    padding: 5rem 0;
    /* Add scroll margin for fixed navbar offset */
    scroll-margin-top: 5rem; /* Adjust value as needed based on actual navbar height */
}

/* Add scroll-margin to the footer as well since it's a target */
footer#contact {
    scroll-margin-top: 5rem; /* Consistent offset */
}

.content-section.light-bg {
    background-color: #fff; /* Use white for contrast sections */
}

.content-section.urgent-bg {
    background-color: #fff3e0; /* Light orange/amber */
    border-top: none; /* Remove borders, use background color */
    border-bottom: none;
    color: #a0522d; /* Darker text for this section */
    /* Center text and inline/inline-block elements within this section */
    text-align: center;
}

.content-section.urgent-bg h2 {
    color: #e65100; /* Strong Orange for urgent heading */
    border-bottom-color: #ffe0b2;
}

.urgent-flag {
    background-color: #c62828; /* Red */
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: bold;
    margin-right: 0.5rem;
    display: inline-block;
}

/* Vision Grid */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.vision-item {
    text-align: center;
    background: #fdfbf7; /* Off-white cards */
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.vision-item:hover {
    transform: translateY(-5px);
}

.vision-item img.vision-image {
    border-radius: 5px;
    margin: 0 auto 1.5rem auto; /* Center image */
    background-color: #e0ddd5; /* Placeholder background */
    border: 1px solid #e0ddd5;
}

.vision-item h3 {
    margin-bottom: 0.5rem;
    color: #6b4f4f; /* Match main heading color */
}

/* Phased Goals List */
.phased-goals {
    list-style-type: none;
    padding-left: 0;
    counter-reset: goal-counter;
}

.phased-goals li {
    counter-increment: goal-counter;
    margin-bottom: 1.5rem;
    padding: 1rem 1rem 1rem 3.5rem; /* Add padding for background */
    position: relative;
    background: #f8f5f0; /* Lighter beige background for items */
    border-radius: 5px;
}

.phased-goals li::before {
    content: counter(goal-counter);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    background-color: #20B2AA; /* Teal circle */
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.phased-goals li strong {
    color: #6b4f4f; /* Earthy tone */
}

.phased-goals em {
    display: block;
    font-size: 0.9rem;
    color: #8f7b7b;
    margin-top: 0.3rem;
}

/* CTA Section */
.cta-bg {
    background-color: #8fbc8f; /* Dark Sea Green / Muted Teal */
    color: #fff;
    padding: 4rem 0;
}

.cta-bg h2 {
    color: #fff;
    border-bottom-color: #a7d7a7; /* Lighter shade */
}

.cta-bg p {
    color: #f0fff0; /* Honeydew / very light green */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: #ff8c69; /* Salmon/Coral color button */
    color: #fff;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 30px; /* Rounded button */
    font-weight: 700; /* Bolder font */
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Lato', sans-serif;
}

.cta-button:hover {
    background: #e57a5f; /* Darker shade */
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.cta-button.large-cta {
    font-size: 1.1rem;
    padding: 1.1rem 2.8rem;
}

/* Rewards List */
.rewards-list {
    list-style: none;
    padding-left: 0;
}

.rewards-list li {
    background: #fff;
    padding: 1rem 1.5rem;
    margin-bottom: 0.8rem;
    border-radius: 5px;
    border-left: 5px solid #20B2AA; /* Teal accent */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.rewards-list li strong {
    color: #6b4f4f;
}

/* Footer */
footer {
    background: #e0ddd5; /* Light beige */
    color: #5a5a5a; /* Dark grey text */
    padding: 3rem 0 1.5rem 0;
    margin-top: 4rem;
}

footer a {
    color: #20B2AA; /* Teal links */
}

footer a:hover {
    color: #1a8f89;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-info h3,
.footer-social h3 {
    color: #6b4f4f; /* Earthy headings */
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-info p,
.footer-social a {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-social a {
    margin: 0 0.5rem;
    display: inline-block;
    /* Add icons later if needed */
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #d3cec3; /* Slightly darker beige border */
    font-size: 0.9rem;
    color: #8f7b7b;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .hero { padding: 6rem 0; }
    .hero .container { padding: 2rem 1rem; max-width: 95%; }
    .hero h1 { font-size: 2.5rem; }
    .hero .subtitle { font-size: 1rem; }

    .navbar .container {
        flex-direction: column;
    }
    .navbar .logo img {
        margin-bottom: 0.5rem;
    }
    .navbar .nav-links {
        margin-top: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .navbar .nav-links li {
        margin: 0.3rem 0.5rem;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Video Container Styling */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #eee; /* Placeholder background */
    margin: 2rem auto; /* Centering and spacing */
    border-radius: 5px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Style for Text-Based Video Placeholders */
.video-placeholder {
    border: 2px dashed #ff8c69; /* Use button color for border */
    background-color: #fffaf0; /* Floral white background */
    padding: 1rem 1.5rem;
    margin: 2rem auto;
    border-radius: 5px;
    text-align: left; /* Override section centering if needed */
}

.video-placeholder h4 {
    color: #6b4f4f; /* Earthy tone */
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.video-placeholder p {
    font-style: italic;
    color: #8f7b7b; /* Lighter earthy tone */
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Modifier for smaller placeholders within grid items */
.video-placeholder.small-placeholder {
    margin: 1.5rem 0 0 0; /* Adjust margin for inside grid */
    padding: 0.8rem 1rem;
}

/* Content Sections */
.content-section {
    padding: 5rem 0;
    /* Add scroll margin for fixed navbar offset */
    scroll-margin-top: 5rem; /* Adjust value as needed based on actual navbar height */
}

/* Add scroll-margin to the footer as well since it's a target */
footer#contact {
    scroll-margin-top: 5rem; /* Consistent offset */
}

.content-section.light-bg {
    background-color: #fff; /* Use white for contrast sections */
}

.content-section.urgent-bg {
    background-color: #fff3e0; /* Light orange/amber */
    border-top: none; /* Remove borders, use background color */
    border-bottom: none;
    color: #a0522d; /* Darker text for this section */
    /* Center text and inline/inline-block elements within this section */
    text-align: center;
}

.content-section.urgent-bg h2 {
    color: #e65100; /* Strong Orange for urgent heading */
    border-bottom-color: #ffe0b2;
}

.urgent-flag {
    background-color: #c62828; /* Red */
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: bold;
    margin-right: 0.5rem;
    display: inline-block;
}

/* Vision Grid */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.vision-item {
    text-align: center;
    background: #fdfbf7; /* Off-white cards */
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.vision-item:hover {
    transform: translateY(-5px);
}

.vision-item img.vision-image {
    border-radius: 5px;
    margin: 0 auto 1.5rem auto; /* Center image */
    background-color: #e0ddd5; /* Placeholder background */
    border: 1px solid #e0ddd5;
}

.vision-item h3 {
    margin-bottom: 0.5rem;
    color: #6b4f4f; /* Match main heading color */
}

/* Phased Goals List */
.phased-goals {
    list-style-type: none;
    padding-left: 0;
    counter-reset: goal-counter;
}

.phased-goals li {
    counter-increment: goal-counter;
    margin-bottom: 1.5rem;
    padding: 1rem 1rem 1rem 3.5rem; /* Add padding for background */
    position: relative;
    background: #f8f5f0; /* Lighter beige background for items */
    border-radius: 5px;
}

.phased-goals li::before {
    content: counter(goal-counter);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    background-color: #20B2AA; /* Teal circle */
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.phased-goals li strong {
    color: #6b4f4f; /* Earthy tone */
}

.phased-goals em {
    display: block;
    font-size: 0.9rem;
    color: #8f7b7b;
    margin-top: 0.3rem;
}

/* CTA Section */
.cta-bg {
    background-color: #8fbc8f; /* Dark Sea Green / Muted Teal */
    color: #fff;
    padding: 4rem 0;
}

.cta-bg h2 {
    color: #fff;
    border-bottom-color: #a7d7a7; /* Lighter shade */
}

.cta-bg p {
    color: #f0fff0; /* Honeydew / very light green */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: #ff8c69; /* Salmon/Coral color button */
    color: #fff;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 30px; /* Rounded button */
    font-weight: 700; /* Bolder font */
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Lato', sans-serif;
}

.cta-button:hover {
    background: #e57a5f; /* Darker shade */
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.cta-button.large-cta {
    font-size: 1.1rem;
    padding: 1.1rem 2.8rem;
}

/* Rewards List */
.rewards-list {
    list-style: none;
    padding-left: 0;
}

.rewards-list li {
    background: #fff;
    padding: 1rem 1.5rem;
    margin-bottom: 0.8rem;
    border-radius: 5px;
    border-left: 5px solid #20B2AA; /* Teal accent */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.rewards-list li strong {
    color: #6b4f4f;
}

/* Footer */
footer {
    background: #e0ddd5; /* Light beige */
    color: #5a5a5a; /* Dark grey text */
    padding: 3rem 0 1.5rem 0;
    margin-top: 4rem;
}

footer a {
    color: #20B2AA; /* Teal links */
}

footer a:hover {
    color: #1a8f89;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-info h3,
.footer-social h3 {
    color: #6b4f4f; /* Earthy headings */
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-info p,
.footer-social a {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-social a {
    margin: 0 0.5rem;
    display: inline-block;
    /* Add icons later if needed */
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #d3cec3; /* Slightly darker beige border */
    font-size: 0.9rem;
    color: #8f7b7b;
} 