/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: #5A7A8A;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #E85A5A;
}

em {
    font-style: italic;
    color: #5A7A8A;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #666;
}

/* Navigation */
.navbar {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #7BCCC4;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 200px;
}

/* Program Images */
.program-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Ecosystem Images */
.ecosystem-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #7BCCC4;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.ecosystem-img:hover {
    transform: scale(1.1);
    border-color: #E85A5A;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #E85A5A;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 80px;
    min-height: 600px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    object-fit: cover;
    transition: transform 0.3s ease;
}
.story-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    object-fit: cover;
    transition: transform 0.3s ease;
}
.hero-photo:hover {
    transform: scale(1.02);
}

.hero-content h1 {
    color: #333;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.1rem;
    color: #666;
    max-width: 400px;
}

/* Quote Section */
.quote-section {
    background: #E85A5A;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.quote-section h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.quote-section p {
    color: white;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Success Journey Section */
.success-journey {
    padding: 80px 0;
    background: #f8f9fa;
}

.success-journey h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.journey-card {
    background: #7BCCC4;
    padding: 2rem;
    border-radius: 8px;
    color: white;
}

.journey-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.journey-card p {
    color: white;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cta-button {
    text-align: center;
}

.btn-primary {
    background: transparent;
    border: 2px solid #5A7A8A;
    color: #5A7A8A;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #5A7A8A;
    color: white;
}

/* Ready Section */
.ready-section {
    background: #5A7A8A;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.ready-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.ready-section p {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: white;
    color: #5A7A8A;
}

/* My Story Page Styles */
.story-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 80px;
}

.story-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.story-image {
    text-align: center;
}

.story-text {
    padding-top: 2rem;
}

.story-text h2 {
    color: #5A7A8A;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Programs Page Styles */
.programs-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 40px;
    text-align: center;
}

.programs-grid {
    padding: 60px 0;
}

.program-item {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.program-item:nth-child(even) {
    grid-template-columns: 300px 1fr;
}

.program-item:nth-child(even) .program-content {
    order: 2;
}

.program-item:nth-child(even) .program-image {
    order: 1;
}

.program-content h3 {
    color: #7BCCC4;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.program-content h4 {
    color: #E85A5A;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.program-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.program-content li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.program-content li:before {
    content: "•";
    color: #7BCCC4;
    position: absolute;
    left: 0;
}

.program-image {
    background: #7BCCC4;
    height: 250px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-program {
    background: transparent;
    border: 2px solid #7BCCC4;
    color: #7BCCC4;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.9rem;
}

.btn-program:hover {
    background: #7BCCC4;
    color: white;
}

/* Resources Page Styles */
.resources-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 40px;
    text-align: center;
}

.sanctuary-section {
    padding: 60px 0;
}

.sanctuary-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.sanctuary-text h3 {
    color: #5A7A8A;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.sanctuary-text h4 {
    color: #E85A5A;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.sanctuary-features {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
}

.ecosystem-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.ecosystem-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ecosystem-header h2 {
    color: #5A7A8A;
    margin-bottom: 1rem;
}

.ecosystem-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.ecosystem-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ecosystem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.ecosystem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7BCCC4, #E85A5A);
}

.ecosystem-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #E85A5A;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 40px;
    margin-bottom: 1.5rem;
}

.ecosystem-icon {
    margin-bottom: 1.5rem;
}

.ecosystem-card h3 {
    color: #5A7A8A;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.ecosystem-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.ecosystem-link {
    color: #7BCCC4;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.ecosystem-link:hover {
    color: #E85A5A;
}

.ecosystem-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(123, 204, 196, 0.1);
    border-radius: 12px;
}

.ecosystem-note {
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 80px;
    text-align: center;
}

/* Certifications Section */
.certifications-section {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.certifications-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.certifications-section p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.certification-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certification-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.certification-logo {
    width: 100%;
    height: auto;
    max-width: 200px;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .journey-grid {
        grid-template-columns: 1fr;
    }
    
    .story-content,
    .program-item,
    .sanctuary-content,
    .sanctuary-features {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .program-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ecosystem-card {
        padding: 2rem 1.5rem;
    }
    
    .ecosystem-cta {
        padding: 1.5rem;
    }
    
    .ecosystem-subtitle {
        font-size: 1.1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .certification-item {
        padding: 1.5rem;
    }
}

/* Footer Styles */
.footer {
    background: white;
    color: #333;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #666;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border: 2px solid #7BCCC4;
    border-radius: 50%;
    color: #7BCCC4;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #7BCCC4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(123, 204, 196, 0.3);
}

.footer-nav ul {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-nav a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-nav a:hover {
    color: #7BCCC4;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.contact-info i {
    margin-right: 0.5rem;
    color: #7BCCC4;
}

.footer-cta {
    background: linear-gradient(135deg, #7BCCC4 0%, #5fb3ac 100%);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(123, 204, 196, 0.2);
}

.footer-cta h4 {
    margin-bottom: 0.5rem;
    color: white;
}

.footer-cta p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding-top: 1rem;
    text-align: center;
    font-size: 0.8rem;
    color: #999;
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-logo {
        max-width: 150px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-cta {
        padding: 1rem;
    }
}