/* Custom styles for Stewardship HOA site */

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', system-ui, sans-serif;
    background: #faf9fc;
    color: #1a1c1e;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Headlines use Libre Caslon Text */
.font-display-lg,
.font-headline-lg,
.font-headline-lg-mobile,
.font-headline-md {
    font-family: 'Libre Caslon Text', Georgia, serif;
}

/* Card hover effect */
.card-hover {
    transition: all 0.2s ease-in-out;
}
.card-hover:hover {
    box-shadow: 0 4px 20px rgba(10, 31, 68, 0.04);
    transform: translateY(-2px);
}

/* Gold glow effect */
.gold-glow {
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

/* Section padding */
.section-padding {
    padding-top: 72px;
    padding-bottom: 72px;
}

@media (max-width: 768px) {
    .section-padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/* Header shadow on scroll */
header.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Smooth fade-in for sections */
section {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form input focus */
input:focus,
select:focus,
textarea:focus {
    border-color: #0A1F44 !important;
}