/* Dona Horta - Custom Styles */

html {
    scroll-behavior: smooth;
}

/* Hero slideshow */
.hero-slide {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    position: absolute;
    inset: 0;
}

.hero-slide.active {
    opacity: 1;
}

/* Step numbers */
.step-number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: #4A7C59;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Feature cards hover */
.feature-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Link cards */
.link-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Prose styling for markdown content pages */
.prose h1 { font-size: 2rem; font-weight: 700; color: #5D4E37; margin-bottom: 1rem; }
.prose h2 { font-size: 1.5rem; font-weight: 700; color: #4A7C59; margin-top: 2rem; margin-bottom: 0.75rem; }
.prose h3 { font-size: 1.25rem; font-weight: 600; color: #5D4E37; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.prose p { margin-bottom: 1rem; line-height: 1.7; }
.prose ul { list-style-type: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ol { list-style-type: decimal; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose li { margin-bottom: 0.25rem; }
.prose a { color: #4A7C59; text-decoration: underline; }
.prose a:hover { color: #5D4E37; }
