/* ============================================================================
   LUPONCIO - COMMON STYLES
   ============================================================================
   
   Estilos base compartidos por todas las páginas.
   
   ============================================================================ */

/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

/* ============================================================================
   CSS CUSTOM PROPERTIES
   ============================================================================ */
:root {
    --lpn-white: #FFFFFF;
    --lpn-black: #111111;
    --lpn-gray: #666666;
    --lpn-gray-light: #F5F5F5;
    --lpn-border: rgba(0, 0, 0, 0.1);
    --lpn-font: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --lpn-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --lpn-gap: 40px;
}

/* ============================================================================
   RESET & BASE
   ============================================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--lpn-font);
    background-color: var(--lpn-white);
    color: var(--lpn-black);
    line-height: 1.5;
}

/* ============================================================================
   LINKS
   ============================================================================ */
a {
    color: inherit;
    text-decoration: none;
    transition: opacity var(--lpn-transition);
}

a:hover {
    opacity: 0.7;
}

/* ============================================================================
   IMAGES
   ============================================================================ */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================================================
   BUTTONS
   ============================================================================ */
button {
    font-family: inherit;
    cursor: pointer;
}

/* ============================================================================
   ACCESSIBILITY
   ============================================================================ */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--lpn-black);
    outline-offset: 4px;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================================================
   MAIN CONTENT WRAPPER
   ============================================================================ */
.lpn-main {
    min-height: calc(100vh - 200px);
}
