@charset "UTF-8";

/* ==========================================================================
   THEME LAYOUT STYLES - NEHORAY LAW
   ==========================================================================
   Version: 1.0
   Description: Core structural styles (Header, Footer, Navigation, Base)
   ========================================================================== */

/* --------------------------------------------------------------------------
   TABLE OF CONTENTS
   --------------------------------------------------------------------------
   1. RESET & BASE ........ Typography, Variables, Global Resets
   2. NAVIGATION .......... Header, Menu, Links
   3. HERO ................ Hero Sections (Global)
   4. FOOTER .............. Site Footer, Copyright
   5. RESPONSIVE .......... Mobile adjustments
   -------------------------------------------------------------------------- */


/* =========================================
   1. RESET & BASE
   ========================================= */
/* (Pega aquí los estilos de variables :root, body, resets, titles...) */



/* =========================================
   2. NAVIGATION
   ========================================= */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* =========================================
   3. HERO SECTIONS
   ========================================= */
/* (Pega aquí los estilos del .hero si son globales...) */



/* =========================================
   4. FOOTER
   ========================================= */
footer {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 40px 20px;
}

footer p {
    font-size: 0.8rem;
    opacity: 0.6;
}

.site-footer {
    background: var(--primary);
    color: #94a3b8;
    padding: 60px 5% 30px;
    font-size: 0.9rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
        color: var(--primary);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   5. RESPONSIVE
   ========================================= */
/* (Pega aquí los media queries...) */