/* Hide the GitHub repository link/icon in the header */
.md-header__source {
    display: none !important;
}

.md-source {
    display: none !important;
}

/* Hero section styles */
.hero {
    background-color: var(--md-primary-fg-color);
    color: var(--md-primary-bg-color);
    padding: 4rem 1rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Ensure hero h1 text is always light, overriding theme defaults */
[data-md-color-scheme="default"] .md-typeset .hero h1,
[data-md-color-scheme="slate"] .md-typeset .hero h1 {
    color: var(--md-primary-bg-color);
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero .md-button {
    margin: 0 0.5rem;
}

.hero-status {
    font-size: 0.85rem !important;
    max-width: none !important;
    margin: -0.5rem 0 1.5rem !important;
}

.hero-status a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--md-primary-bg-color);
    text-decoration: none;
    letter-spacing: 0.01em;
}

.hero-status a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.hero-status-dot {
    color: #4ade80;
    font-size: 0.7em;
}

.hero-links {
    font-size: 0.8rem !important;
    max-width: none !important;
    margin: 1.5rem 0 0 !important;
    opacity: 0.75;
}

.hero-links a {
    color: var(--md-primary-bg-color);
    text-decoration: underline;
    text-underline-offset: 0.2em;
    text-decoration-color: rgba(255, 255, 255, 0.4);
}

.hero-links a:hover {
    text-decoration-color: var(--md-primary-bg-color);
}

.hero-links-sep {
    margin: 0 0.5em;
    opacity: 0.5;
}


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

.quote-card {
    border-left: 4px solid var(--md-primary-fg-color);
    padding: 1rem;
    background-color: var(--md-code-bg-color);
    border-radius: 4px;
}

.quote-card blockquote {
    margin: 0;
    font-style: italic;
}

.quote-card footer {
    margin-top: 1rem;
    font-weight: bold;
    text-align: right;
}
