/* YesMillburn — Custom Styles */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
    font-size: 18px;
}

/* FAQ accordion animation */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-content.open {
    max-height: 2000px;
}

.faq-chevron.rotated {
    transform: rotate(180deg);
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #2d6a2e;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Skip to content link for accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    padding: 0.75rem 1.5rem;
    background: #24561f;
    color: white;
    font-weight: 600;
    z-index: 100;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}
