/* Tenant-specific styles for statmike_com */

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    background: white;
    padding: 2rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-width: 600px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #222;
}

.tagline {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.cta {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.cta a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

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

hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 1.5rem 0;
}

#font-toggle {
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

#font-toggle:hover {
    background-color: #555;
}

/* Emphasis mode: changes font and size for tagline and cta */
.tagline,
.cta {
    transition: all 0.3s ease;
}

.emphasis-mode .tagline,
.emphasis-mode .cta {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.75rem;
    font-weight: bold;
    color: #222;
}
