/* Home/Index page specific styles - subtle additions to app.css */

.home-landing {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 2rem;
    align-items: stretch;
    padding: 2rem 1rem;
}

.home-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.home-copy h1 {
    margin-bottom: 0;
}

.eyebrow {
    color: var(--bs-primary);
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 0;
    text-transform: uppercase;
}

.home-instructions {
    padding: 1.25rem;
}

.home-instructions h2,
.home-map-placeholder h2 {
    font-size: 1.25rem;
}

.home-instructions ol {
    margin-bottom: 0;
    padding-left: 1.25rem;
}

.home-important-rule {
    background: #fff7d6;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    color: #6b3f00;
    font-weight: 700;
    margin-bottom: 0.65rem;
    padding: 0.55rem 0.7rem;
}

.home-primary-action {
    align-self: flex-start;
}

.home-map-placeholder {
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(13, 110, 253, 0.35);
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.06), rgba(25, 135, 84, 0.06));
}

.map-placeholder-inner {
    max-width: 320px;
    text-align: center;
    color: var(--bs-secondary-color);
}

.map-icon {
    display: block;
    font-size: 3rem;
    margin-bottom: 1rem;
}

@media (max-width: 900px) {
    .home-landing {
        grid-template-columns: 1fr;
    }

    .home-primary-action {
        align-self: stretch;
    }
}
