/* Custom styles for Administración de Fincas Fernando Moliner */

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: #d1fae5;
    color: #064e3b;
}

/* Body */
body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: #fefdf8;
    color: #1f2937;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Font family for serif elements */
.font-serif {
    font-family: 'DM Serif Display', Georgia, serif;
}

/* Focus styles */
:focus-visible {
    outline: 2px solid #10b981;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Remove default button styles */
button {
    cursor: pointer;
    border: none;
    background: none;
}

/* Image responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Print styles */
@media print {
    nav, #backToTop, .mobile-menu {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .hero-gradient, .cta-gradient {
        background: #064e3b !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .font-serif {
        font-size: 1.125rem;
    }
}
