/* Custom MoveSmart Theme for Pico.css */

:root {
    --pico-font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --pico-font-size: 100%;
    --pico-line-height: 1.7;
}

/* Nav Styles */
nav a#theme-switcher {
    padding: var(--pico-nav-link-padding);
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--pico-nav-link-color);
}

/* Hero Section Styles */
#hero {
    padding: 4rem 0;
    text-align: left;
}

#hero .grid {
    align-items: center;
}

#hero h2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--pico-primary);
}

#hero h3 {
    font-size: 1.25rem;
    color: var(--pico-muted-color);
}

#hero p {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-image svg {
    width: 100%;
    height: auto;
}

/* Section Styles */
section {
    padding: 3rem 0;
}

section h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    color: var(--pico-muted-color);
    margin-bottom: 2rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* Features & Benefits/Solution Article Styles */
#solution article, #benefits article {
    text-align: center;
    padding: 1.5rem;
    border: 1px solid var(--pico-card-border-color);
    border-radius: var(--pico-card-border-radius);
    background-color: var(--pico-card-background-color);
}

#solution article svg, #benefits article svg {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: var(--pico-primary);
}

#solution article h3, #benefits article h3 {
    font-weight: 600;
}

/* How It Works Styles */
#how-it-works article {
    padding: 1.5rem;
    text-align: center;
}
#how-it-works h4 {
    font-weight: 600;
    color: var(--pico-primary);
}

/* CTA Section */
#cta {
    text-align: center;
    background-color: var(--pico-card-background-color);
    padding: 4rem 2rem;
    border-radius: var(--pico-card-border-radius);
}
#cta h2 {
    color: var(--pico-primary);
}
#cta a {
    --pico-font-size: 1.1rem;
    --pico-padding: 1rem 2rem;
}

/* Team Section Styles */
#team article {
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: var(--pico-card-border-radius);
    border: 1px solid var(--pico-card-border-color);
}

#team article header {
    position: relative;
    margin: 0;
}

#team img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

#team .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#team article:hover .overlay {
    opacity: 1;
}

#team .overlay a {
    color: white;
}

#team .overlay svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

#team .overlay a:hover svg {
    transform: scale(1.2);
    color: var(--pico-primary);
}

#team .team-info {
    padding: 1rem;
}

#team h5 {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

#team p {
    color: var(--pico-muted-color);
    margin: 0;
}

/* Footer Styles */
footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--pico-muted-border-color);
}