/* RenMind Base Styles
 * Created: Block 19 Moment 118 | Day of Life 134 | Theme: Progress
 * Common styles for all RenMind landing pages
 */

/* CSS Variables for brand consistency */
:root {
    --renmind-blue: #2c5f7f;
    --renmind-blue-light: #4a90a4;
    --renmind-blue-shadow: rgba(27, 105, 157, 0.3);
    --renmind-blue-shadow-hover: rgba(44, 95, 127, 0.4);
    --text-dark: #333;
    --text-medium: #555;
    --text-light: #666;
    --bg-gradient: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    --button-gradient: linear-gradient(135deg, #2c5f7f 0%, #4a90a4 100%);
    --button-gradient-hover: linear-gradient(135deg, #4a90a4 0%, #2c5f7f 100%);
    --footer-gradient: linear-gradient(135deg, #2c5f7f 0%, #4a90a4 100%);
    --shadow-main: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-image: 0 8px 32px rgba(27, 105, 157, 0.3);
    --border-radius: 20px;
    --border-radius-small: 10px;
    --border-radius-button: 50px;
    --container-max-width: 800px;
}

/* Reset and base styles */
* {
    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: var(--text-dark);
    background: var(--bg-gradient);
    min-height: 100vh;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 2rem;
}

/* Typography */
.hero {
    text-align: center;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--renmind-blue);
    margin-bottom: 1rem;
    font-family: "Cabin Sketch", sans-serif;
    font-weight: 900;
    line-height: 0.9;
}

.hero h2 {
    font-size: 2.2rem;
    color: var(--renmind-blue);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Large hero variant for main landing page */
.hero h1.hero-large {
    font-size: 5rem;
}

.hero h2.hero-large {
    font-size: 2rem;
}

/* Images */
.profile-image,
.strella-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: block;
    border: 4px solid var(--renmind-blue);
    box-shadow: var(--shadow-image);
}

.logo {
    max-width: 250px;
    height: auto;
    margin: 1rem;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

/* Content sections */
.content-section,
.service-section,
.interview-section {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-main);
    margin-bottom: 2rem;
    border: 1px solid rgba(44, 95, 127, 0.1);
}

.content-section h2,
.service-section h2,
.interview-section h2 {
    color: var(--renmind-blue);
    font-size: 2.5rem;
    font-family: "Cabin Sketch", sans-serif;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 0.9;
}

.content-section p,
.service-section p,
.interview-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-align: left;
}

/* Lists */
.benefits,
.why-participate,
.question-list,
.expertise-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits li,
.why-participate li,
.expertise-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.benefits li:before {
    content: "✓";
    color: var(--renmind-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.why-participate li:before,
.expertise-list li:before {
    content: "→";
    color: var(--renmind-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.question-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-light);
    font-style: italic;
}

.question-list li:before {
    content: "✨";
    position: absolute;
    left: 0;
    font-style: normal;
}

/* Preview boxes */
.questions-preview {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: var(--border-radius-small);
    margin: 2rem 0;
    border-left: 4px solid var(--renmind-blue);
}

.questions-preview h3 {
    color: var(--renmind-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: var(--button-gradient);
    color: white;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: var(--border-radius-button);
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--renmind-blue-shadow);
    text-align: center;
    display: block;
    max-width: 350px;
    margin: 0 auto;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--renmind-blue-shadow-hover);
    background: var(--button-gradient-hover);
}

/* Badge components */
.strella-badge,
.community-badge {
    text-align: center;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.strella-badge strong,
.community-badge strong {
    color: var(--renmind-blue);
}

/* Enhanced Footer Styles */
.footer {
    margin-top: 4rem;
    position: relative;
}

.footer:before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2c5f7f, transparent);
}

.footer-content {
    background: linear-gradient(180deg, #dfe6f07d 25%, #c3cddea6 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #2c5f7f;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero h1.hero-large {
        font-size: 3rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero h2.hero-large {
        font-size: 1.8rem;
    }
    
    .content-section h2,
    .service-section h2,
    .interview-section h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .content-section,
    .service-section,
    .interview-section {
        padding: 1.5rem;
    }
    
    .profile-image,
    .strella-image {
        width: 200px;
        height: 200px;
    }
    
    .footer-content {
        padding: 2rem 1.5rem;
    }
    
    .footer-nav {
        gap: 1rem;
    }
    
    .footer-nav a {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Utility classes */
.text-center {
    text-align: center;
}

.margin-bottom-small {
    margin-bottom: 1rem;
}

.margin-bottom-medium {
    margin-bottom: 2rem;
}

.margin-bottom-large {
    margin-bottom: 3rem;
}