/* SAGE SPARK - MASTER STYLESHEET
    Primary Colors: 
    Sage (Green/Blue): #5e8d89
    Spark (Orange/Gold): #f0a34b
*/

:root {
    --color-sage: #5e8d89;
    --color-spark: #f0a34b;
    --color-dark: #2c3e50;
    --color-light: #f9f9f9;
    --color-white: #ffffff;
    --transition: all 0.3s ease;
}

/* --- Global Reset & Typography --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
}

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

/* --- Hero Section --- */
.hero {
    height: 70vh;
    min-height: 500px;
    /* Using a gradient while the banner image is being finalized */
    background: linear-gradient(135deg, var(--color-sage) 0%, #466b68 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.spark-text {
    color: var(--color-spark);
}

.tagline {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px auto;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--color-spark);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background-color: #e0923a;
}

/* --- About Section --- */
.about-section {
    padding: 100px 0;
    text-align: center;
}

.about-section h2 {
    font-size: 2.5rem;
    color: var(--color-sage);
    margin-bottom: 25px;
}

.about-section p {
    font-size: 1.1rem;
    color: #555;
    max-width: 850px;
    margin: 0 auto;
}

/* --- Business Grid --- */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.grid-item {
    background-color: var(--color-light);
    padding: 50px 30px;
    text-align: center;
    border-radius: 15px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    border-bottom: 5px solid transparent;
    display: block;
}

.grid-item:hover {
    background-color: var(--color-white);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-bottom-color: var(--color-spark);
}

.icon-xl {
    font-size: 3.5rem;
    color: var(--color-sage);
    margin-bottom: 20px;
    display: block;
}

.grid-item h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: var(--color-dark);
}

.grid-item p {
    color: #666;
    font-size: 0.95rem;
}

/* --- Experts Section --- */
.experts-section {
    padding: 100px 0;
    background-color: #f0f4f4;
    text-align: center;
}

.experts-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.experts-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.expert-card {
    background: var(--color-white);
    padding: 50px 40px;
    border-radius: 20px;
    flex: 1;
    min-width: 320px;
    max-width: 450px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.expert-avatar {
    font-size: 4rem;
    color: #cbd5e0;
    margin-bottom: 20px;
}

.expert-card h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.expert-card p {
    color: #777;
    margin-bottom: 25px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
}

.btn-sophie {
    background-color: var(--color-sage);
    color: var(--color-white);
}

.btn-michael {
    background-color: var(--color-dark);
    color: var(--color-white);
}

.btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* --- Footer --- */
footer {
    background-color: var(--color-dark);
    color: #a0aec0;
    text-align: center;
    padding: 60px 20px;
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 10px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .hero {
        height: 50vh;
    }
    
    .about-section {
        padding: 60px 0;
    }

    .experts-container {
        flex-direction: column;
        align-items: center;
    }
    
    .expert-card {
        width: 100%;
    }
}