/* Desert Acres — Custom Styles */
/* These styles complement the inline styles in index.html */

/* Smooth scroll offset for fixed nav */
section[id] {
    scroll-margin-top: 80px;
}

/* Selection color */
::selection {
    background: rgba(20, 184, 166, 0.3);
    color: #0f172a;
}

/* Focus visible for keyboard users */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid #14b8a6;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .hero, .mobile-menu, #navbar { display: none; }
    body { color: #000; background: #fff; }
    .section { padding: 2rem 1rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .fade-in {
        opacity: 1;
        transform: none;
    }
    .btn-pulse { animation: none; }
}

/* Extra-small screens */
@media (max-width: 359px) {
    .hero__content h1 {
        font-size: 2rem;
    }
    .section {
        padding: 4rem 1rem;
    }
}

/* Tablet portrait */
@media (max-width: 767px) {
    .section {
        padding: 4rem 1.25rem;
    }
    .hero__content h1 {
        font-size: 2.25rem;
    }
}

/* Large desktop */
@media (min-width: 1920px) {
    .hero__content h1 {
        font-size: 4.5rem;
    }
    .section {
        padding: 8rem 2rem;
    }
}
