/* ========================================
   PlanWealth Institutional Website
   Stylesheet - Minimal, Professional Design
   ======================================== */

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

html, body {
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, Garamond, serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

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

h2 {
    font-size: 1.8rem;
    font-weight: 700;
}

h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

a {
    color: #663399;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a1a1a;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-size: 1rem;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #1a1a1a;
    font-weight: 600;
}

/* Hero Section */
.hero {
    background-color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Page Title Section */
.page-title {
    background-color: #ffffff;
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.page-title .title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-title .subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Section Styling */
.capabilities-section,
.outcomes-section,
.engagement-content,
.contact-content {
    padding: 3rem 0;
}

.capabilities-section {
    background-color: #ffffff;
}

.outcomes-section {
    background-color: #f8f8f8;
}

.engagement-content {
    background-color: #ffffff;
}

.contact-content {
    background-color: #ffffff;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-intro {
    font-size: 1rem;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

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

.capability-card {
    background-color: #f8f8f8;
    padding: 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.capability-card:hover {
    border-color: #663399;
    background-color: #fafafa;
}

.capability-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.capability-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

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

.outcome-card {
    background-color: #ffffff;
    padding: 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.outcome-card:hover {
    border-color: #663399;
    box-shadow: 0 2px 8px rgba(102, 51, 153, 0.1);
}

.outcome-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.outcome-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

/* Capability Detail Items */
.capabilities-detail {
    padding: 3rem 0;
}

.capability-detail-item {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.capability-detail-item:last-child {
    border-bottom: none;
}

.capability-detail-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.capability-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.detail-block {
    background-color: #f8f8f8;
    padding: 1.5rem;
    border-radius: 4px;
}

.detail-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

/* Engagement Model */
.core-statement {
    background-color: #f8f8f8;
    padding: 2rem;
    border-left: 4px solid #663399;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-style: italic;
}

.approach-section {
    margin-top: 2rem;
}

.approach-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.approach-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Contact Content */
.contact-statement {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.contact-email {
    font-size: 1.2rem;
    font-weight: 600;
    color: #663399;
    margin-top: 2rem;
}

.contact-email a {
    color: #663399;
    text-decoration: underline;
}

.contact-email a:hover {
    color: #1a1a1a;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-text {
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: #ffffff;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .page-title .title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .nav {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .capabilities-grid,
    .outcomes-grid {
        grid-template-columns: 1fr;
    }

    .capability-detail-content {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 2rem 0;
    }

    .capabilities-section,
    .outcomes-section,
    .engagement-content,
    .contact-content {
        padding: 2rem 0;
    }

    .capability-card,
    .outcome-card,
    .detail-block {
        padding: 1.5rem;
    }

    .core-statement {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .page-title .title {
        font-size: 1.5rem;
    }

    .page-title .subtitle {
        font-size: 0.95rem;
    }

    .nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .section-intro {
        font-size: 0.9rem;
    }

    .contact-text {
        font-size: 0.9rem;
    }

    .contact-email {
        font-size: 1rem;
    }
}
