/* ====================================
   🟢🟢🟢 TYPOGRAPHY VARIABLES 🟢🟢🟢
   ==================================== */
:root {
  --font-primary: 'Montserrat', sans-serif;

/* H1 */
  --h1-size: clamp(48px, 4.2vw, 80px);
  --h1-weight: 700;

/* H2 */
  --h2-size: clamp(40px, 3.3vw, 64px);
  --h2-weight: 700;

/* H3 */
  --h3-size: clamp(32px, 2.5vw, 48px);
  --h3-weight: 600;

/* H4 */
  --h4-size: clamp(24px, 2vw, 36px);
  --h4-weight: 500;

/* H5 */
  --h5-size: clamp(20px, 1.6vw, 28px);
  --h5-weight: 500;

/* H6 */
  --h6-size: clamp(18px, 1.3vw, 22px);
  --h6-weight: 400;
    
/* p */
  --p-size: clamp(16px, 1.2vw, 22px);
  --p-weight: 400;

/* BUTTON */
  --button-size: clamp(16px, 1.2vw, 22px);
  --button-weight: 500;
    
/* COLOR VARIABLES */
  --color-white: #FBF2E3;
  --color-orange: #E86918;
  --color-gray: #262628;
  --color-black: #101012;
}

/* ======================
   🟠🟠🟠 NAVBAR 🟠🟠🟠
   ====================== */

.Navbar {
    position: relative;
    z-index: 10;
    background-color: transparent;
}

/* PRIMARY CONTAINER */
.NavbarContainer {
    width: 80%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    border-bottom: 1.5px solid var(--color-gray);
    padding-bottom: 0.5rem;
}

/* LOGO */
.NavbarLogo {
    width: 90px;
    height: 35px;
    background-image: url("../Media/Logo%20Nk.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: block;
    transition: transform 0.2s ease;
}

.NavbarLogo:hover {
    transform: scale(1.03);
}

/* NAVBAR CONTENT */
.NavbarContent {
    display: flex;
    align-items: center;
    width: 100%;
}

/* CENTER-ALIGNED MENU */
.MenuCenter {
    display: flex;
    gap: 3rem;
    margin: 0 auto;
}

.nav-link {
    font-family: var(--font-primary);
    font-size: clamp(16px, 1.2vw, 22px);
    font-weight: 500; 
    color: var(--color-white);
    padding: 0;
    transition: transform 0.2s ease;
}

.nav-link:hover {
    transform: scale(1.03);
    color: var(--color-white);
}

/* BUTTON */
.NavbarBtn {
    background-color: var(--color-orange);
    color: var(--color-white);
    padding: 0.2rem 2rem;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: clamp(16px, 1.2vw, 22px);
    font-weight: var(--button-weight);
    text-decoration: none;
    transition: transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.NavbarBtn:hover {
    transform: scale(1.03);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

/* TOGGLER */
.CustomToggler {
    border: none;
    background: transparent;
    width: 40px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background-color: var(--color-white);
    margin: 3px 0;
}

/* RESPONSIVE NAVBAR */
@media (max-width: 991px) {
    .NavbarContent {
        flex-direction: column;
        align-items: flex-start; 
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    /* MENU ITEMS */
    .MenuCenter {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin: 0;
        padding-left: 0;
        align-items: flex-start;
    }

    .NavbarContent .navbar-nav {
        width: 100%;           
        justify-content: flex-start !important;
        text-align: left;
    }

    .NavbarContent .navbar-nav .nav-item {
        width: 100%;           
    }

    .NavbarBtn {
        margin-bottom: 2rem;
    }
}

/* ==============================
   🟠🟠🟠 SECTION FOOTER 🟠🟠🟠
   ============================== */
/* FOOTER BASE */
.footer {
    background-color: var(--color-gray);
    color: var(--color-white);
    padding: 5rem 0 0;
}

.footer-wrap {
    width: 80%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    align-items: end;
    gap: 4rem;
}

/* LOGO */
.footer-logo {
    align-self: end;
}

.footer-logo img {
    width: 100%;
    max-width: 600px;
    height: auto;
}

/* NAV */
.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 1rem;
}

.footer-nav a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.footer-nav a:hover {
    color: var(--color-orange);
}

.footer-nav {
    align-self: start;
    padding-top: 1rem; 
}

/* INFO */
.footer-info {
    text-align: right;
    align-self: end;
}

.footer-info a {
    color: var(--color-white);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: opacity 0.2s ease;
}

.footer-info a:hover {
    color: var(--color-orange);
}

/* FOOTER APP BUTTON */
.footer-app-btn {
    color: var(--color-white);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: opacity 0.2s ease;
    font-size: 0.9rem;
}

.footer-app-btn:hover {
    color: var(--color-orange);
}

/* COPYRIGHT + ENLACES LEGALES */
.copyright {
    margin-top: 2rem;
    font-size: 0.85rem;
    opacity: 0.7;
}

.copyright a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline;
    margin: 0;
    white-space: nowrap;
}

.copyright a:hover {
    color: var(--color-orange);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-wrap {
        grid-template-columns: 1fr 1fr;
    }

    .footer-logo {
        grid-column: 1 / -1;
        order: 3;
        margin-top: 2rem;
    }

    .footer-info {
        order: 2;
        text-align: left;
    }

    .footer-nav {
        order: 1;
        align-self: start; 
        padding-top: 0; 
    }
}

@media (max-width: 576px) {
    .footer-wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }

    .footer-logo img {
        margin: 0 auto;
    }
}
