/**
 * Mindful Brian Website Styles
 * Matches the ESRT website design with blue color scheme
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.header {
    background: linear-gradient(135deg, #2780DF, #4B86C6);
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem auto;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.header-logo img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000;
}

.header p {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.intro {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
    text-align: center;
}

.intro h2 {
    color: #2780DF;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.steps {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
}

.steps h2 {
    color: #2780DF;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
}

.step {
    margin-bottom: 3rem;
    padding: 1.5rem;
    border-left: 4px solid #2780DF;
    background: #f0f7ff;
    border-radius: 0 8px 8px 0;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    display: inline-block;
    background: #2780DF;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.step h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.screenshot {
    text-align: center;
    margin: 2rem 0;
}

.screenshot img {
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border: 1px solid #e0e0e0;
}

.screenshot-placeholder {
    max-width: 300px;
    height: 400px;
    margin: 0 auto;
    background: #f0f0f0;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.screenshot-placeholder p:first-child {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.screenshot-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.highlight-box {
    background: #e8f3ff;
    border: 1px solid #2780DF;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.highlight-box h4 {
    color: #2780DF;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.highlight-box p {
    color: #333;
    margin: 0;
}

.app-download {
    text-align: center;
    margin: 1.5rem 0;
}

.app-badge {
    display: inline-block;
    text-decoration: none;
    margin: 0 10px;
}

.app-badge img {
    transition: transform 0.2s ease;
}

.app-badge:hover img {
    transform: scale(1.05);
}

.footer {
    background: #2780DF;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 3rem;
}

.footer p {
    margin-bottom: 1rem;
}

.footer a {
    color: #b8d4f5;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }

    .header p {
        font-size: 1rem;
    }

    .container {
        padding: 1rem;
    }

    .intro, .steps {
        padding: 1.5rem;
    }

    .step {
        padding: 1rem;
    }

    .app-badge {
        display: block;
        margin: 10px auto;
    }
}