﻿/* =========================================
   LUNA BOUTIQUE
   Identidad visual
   Negro + Lila
   ========================================= */

:root {
    --luna-black: #111111;
    --luna-black-soft: #1b1b1b;
    --luna-lilac: #9b7ede;
    --luna-lilac-dark: #8065c5;
    --luna-background: #faf9fc;
    --luna-text: #222222;
    --luna-muted: #777777;
    --luna-white: #ffffff;
}


/* =========================================
   GENERAL
   ========================================= */

html {
    font-size: 16px;
    min-height: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    background-color: #111111;
    color: var(--luna-text);
    font-family: "Segoe UI", Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

    a:hover {
        color: inherit;
    }


/* =========================================
   NAVBAR
   ========================================= */

.luna-navbar {
    background-color: var(--luna-black);
    padding: 16px 0;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.12);
}

.navbar-container {
    display: flex;
    align-items: center;
}


/* LOGO */

.luna-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--luna-white) !important;
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: 3px;
    transition: 0.2s ease;
}

    .luna-brand i {
        color: var(--luna-lilac);
        font-size: 1.5rem;
    }

    .luna-brand:hover {
        color: var(--luna-lilac) !important;
    }


/* MENU */

.luna-navbar .navbar-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.luna-navbar .nav-link {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #eeeeee !important;
    padding: 8px 15px !important;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

    .luna-navbar .nav-link:hover {
        color: var(--luna-white) !important;
        background-color: var(--luna-lilac);
    }

    .luna-navbar .nav-link i {
        font-size: 0.95rem;
    }


/* =========================================
   FOOTER
   ========================================= */

.luna-footer {
    margin-top: 0;
    padding: 35px 0;
    background-color: var(--luna-black);
    color: #dddddd;
}

.footer-brand {
    color: var(--luna-white);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

    .footer-brand i {
        color: var(--luna-lilac);
    }

.luna-footer p {
    color: #999999;
    margin-top: 8px;
}


/* =========================================
   WHATSAPP
   ========================================= */

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    font-size: 29px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.22);
    z-index: 1000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .whatsapp-float:hover {
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
    }


/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 767px) {

    .luna-navbar {
        padding: 13px 0;
    }

    .navbar-container {
        flex-direction: column;
    }

    .luna-brand {
        margin-bottom: 10px;
    }

    .luna-navbar .navbar-nav {
        justify-content: center;
        flex-wrap: wrap;
    }

    .luna-navbar .nav-link {
        padding: 7px 12px !important;
        font-size: 0.95rem;
    }

    .luna-footer {
        text-align: center;
    }

    .whatsapp-float {
        right: 18px;
        bottom: 18px;
        width: 52px;
        height: 52px;
        font-size: 27px;
    }
}
