* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #333238;
    color: #ffffff;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background-color: #1e1e1e;
    padding: 20px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #ffd700;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffd700;
}

/* Header Section */
.header {
    background-image: url('dark-header-bg.jpg'); /* Optional: Add a relevant dark theme image */
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0 20px;
}

.header-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.header-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: #ffd700;
    color: #121212;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #333333;
    color: #ffd700;
}

/* Footer */
.footer {
    background-color: #1e1e1e;
    color: white;
    padding: 20px;
    text-align: center;
}

.footer p {
    margin-bottom: 10px;
}

.social-icons a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ffd700;
}
/* Base styles remain the same as the previous dark theme */

/* Health Resources Section */
.health-resources {
    background-color: #333238;
    padding: 60px 20px;
    color: #ffffff;
    text-align: center;
}

.health-resources h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffd700;
}

.health-resources p {
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #cccccc;
}

/* Resources Grid */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.resource-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: scale(1.05);
}

.resource-card i {
    font-size: 50px;
    color: #ffd700;
    margin-bottom: 20px;
}

.resource-card h2 {
    font-size: 24px;
    color: #ffd700;
    margin-bottom: 15px;
}

.resource-card p {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-secondary {
    background-color: #ffd700;
    color: #333333;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #333333;
    color: #ffd700;
}

/* Wellness Programs Section */
.wellness-programs {
    background-color: #333238;
    padding: 60px 20px;
    color: #ffffff;
    text-align: center;
}

.wellness-programs h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffd700;
}

.wellness-programs p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #cccccc;
}

/* Programs Grid */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.program-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: scale(1.05);
}

.program-card i {
    font-size: 50px;
    color: #ffd700;
    margin-bottom: 20px;
}

.program-card h2 {
    font-size: 24px;
    color: #ffd700;
    margin-bottom: 15px;
}

.program-card p {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-secondary {
    background-color: #ffd700;
    color: #333333;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #333333;
    color: #ffd700;
}

/* Support Services Section */
.support-services {
    background-color: #242425;
    padding: 60px 20px;
    text-align: center;
}

.support-services h1 {
    font-size: 36px;
    color: #5c5f1e;
    margin-bottom: 20px;
}

.support-services p {
    font-size: 18px;
    color: #0c362e;
    margin-bottom: 40px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.support-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.support-card:hover {
    transform: scale(1.05);
}

.support-card i {
    font-size: 50px;
    color: #ff9800;
    margin-bottom: 20px;
}

.support-card h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.support-card p {
    color: #666;
    margin-bottom: 20px;
}

.btn-secondary {
    background-color: #ff9800;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #e68900;
}

/* Contact Section */
.contact-section {
    background-color: #1e1e1e;
    padding: 60px 20px;
    color: #fff;
    text-align: center;
}

.contact-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ff9800;
}

.contact-section p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.contact-item {
    text-align: center;
}

.contact-item i {
    font-size: 40px;
    color: #ff9800;
    margin-bottom: 10px;
}

.contact-item h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 16px;
    color: #ddd;
}

/* Footer */
.footer {
    background-color: #0e0101;
    padding: 20px;
    text-align: center;
    color: #fff;
}

.footer .social-icons a {
    color: #ff9800;
    margin: 0 10px;
    font-size: 20px;
}

.footer p {
    font-size: 14px;
}

/* Community Feedback Section */
.community-feedback {
    background-color: #575555;
    padding: 60px 20px;
    text-align: center;
}

.community-feedback h1 {
    font-size: 36px;
    color: #bd7903;
    margin-bottom: 20px;
}

.community-feedback p {
    font-size: 18px;
    color: #9e8f06;
    margin-bottom: 40px;
}

.feedback-form {
    background-color: #849292;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.feedback-form h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.feedback-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #e3d97f;
    font-size: 16px;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #ff9800;
    color: #fff;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #e68900;
}

.posts-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.post {
    background-color: #e0d593;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    text-align: left;
}

.post-header {
    display: flex;
    align-items: center;
}

.post-header .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.post h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.post .post-date {
    font-size: 14px;
    color: #777;
}

.post-content {
    font-size: 16px;
    color: #555;
    margin: 20px 0;
}

.post-replies .reply {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reply .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.reply h4 {
    font-size: 18px;
    color: #333;
}

.reply-content {
    font-size: 15px;
    color: #666;
}

.reply-form {
    display: flex;
    margin-top: 15px;
}

.reply-form input[type="text"] {
    flex: 1;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 15px;
    margin-right: 10px;
}

.btn-secondary {
    background-color: #989b51;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #45a049;
}

.load-more {
    padding: 12px 25px;
    font-size: 16px;
}



/* Hero Section */
.about-hero {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    color: #e99e4d;
    padding: 100px 20px;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: #ff9800;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #e68900;
}

/* About Details Section */
.about-details {
    background-color: #575353;
    padding: 80px 20px;
    text-align: center;
}

.section-header h2 {
    font-size: 36px;
    color: #df9424;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 18px;
    color: #e6cc79;
    margin-bottom: 50px;
}

.about-mission,
.about-programs {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}

.about-mission .image,
.about-programs .image {
    flex: 1;
}

.about-mission .text,
.about-programs .text {
    flex: 1;
    padding: 0 20px;
    text-align: left;
}

.about-mission img,
.about-programs img {
    max-width: 100%;
    border-radius: 10px;
}

.about-mission h3,
.about-programs h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.about-mission p,
.about-programs p {
    font-size: 16px;
    color: #d3a85f;
}

.about-programs ul {
    list-style-type: none;
    padding-left: 0;
}

.about-programs ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

/* Team Section */
.about-team {
    background-color: #876969;
    padding: 60px 20px;
    text-align: center;
}

.about-team h3 {
    font-size: 30px;
    margin-bottom: 40px;
}

.team-cards {
    display: flex;
    justify-content: space-around;
}

.team-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    width: 30%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.team-card img {
    width: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.team-card h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 16px;
    color: #555;
}

/* Timeline Section */
.journey-timeline {
    background-color: #554c4c;
    padding: 80px 20px;
    text-align: center;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-item {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.timeline-item h4 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

.timeline-item p {
    font-size: 16px;
    color: #555;
}

/* Footer */
.footer {
    background-color: #181515;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.footer p {
    margin-bottom: 20px;
}

.footer .social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 24px;
}

.footer .social-icons a:hover {
    color: #ff9800;
}

/* Authentication Section */
.auth-section {
    background-color: #333238;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-container {
    background-color: #2a2a2a;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 500px;
    color: #ffffff;
}

.auth-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.auth-toggle button {
    background-color: transparent;
    border: none;
    color: #ffffff;
    font-size: 18px;
    padding: 10px 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.auth-toggle button.active,
.auth-toggle button:hover {
    color: #ffd700;
    border-bottom: 2px solid #ffd700;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.auth-form h2 {
    margin-bottom: 20px;
    color: #ffd700;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #ffffff;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #555555;
    border-radius: 5px;
    background-color: #444444;
    color: #ffffff;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: #ffd700;
    outline: none;
}

.btn-primary {
    width: 100%;
    background-color: #ffd700;
    color: #121212;
    padding: 15px;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #e68900;
    color: #ffffff;
}

.redirect-text {
    margin-top: 15px;
    font-size: 14px;
    color: #cccccc;
    text-align: center;
}

.redirect-text a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.redirect-text a:hover {
    color: #ffffff;
}

/* Signup Form Specific Styles */
#signup-form .form-group:last-child {
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 600px) {
    .auth-container {
        padding: 30px;
    }

    .auth-toggle button {
        font-size: 16px;
        padding: 8px 15px;
    }

    .auth-form h2 {
        font-size: 24px;
    }
}
