/* ------------------------------
   PALETA DE CULORI & VARIABILE
--------------------------------*/
:root {
    --bg: #0f0f11;
    --bg-alt: #17171b;
    --accent: #ff4f9a;
    --accent-soft: rgba(255, 79, 154, 0.15);
    --text: #f7f7f8;
    --muted: #a0a0aa;
    --card: #1f1f24;
    --border: #2a2a31;
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 999px;
    --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.45);
}

/* ------------------------------
   RESET
--------------------------------*/
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: radial-gradient(circle at top left, #1b1b22, #050507);
    color: var(--text);
    line-height: 1.6;
}

/* ------------------------------
   LAYOUT
--------------------------------*/
.container {
    width: min(1120px, 100% - 2.5rem);
    margin-inline: auto;
}

.section {
    padding: 5rem 0;
}

.section-alt {
    background: radial-gradient(circle at top right, #222230, #101018);
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
}

.section-subtitle {
    color: var(--muted);
    max-width: 32rem;
    margin-bottom: 2.2rem;
}

/* ------------------------------
   HEADER
--------------------------------*/
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(5, 5, 8, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffb3d6, #ff4f9a);
    color: #0b0b0d;
    font-weight: 700;
    font-size: 1.1rem;
}

.logo-text {
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--muted);
}

/* ------------------------------
   NAV
--------------------------------*/
.nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-list a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.nav-list a:hover {
    color: var(--text);
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    font-size: 1.1rem;
}

/* ------------------------------
   BUTOANE
--------------------------------*/
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.4rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #ff4f9a, #ffb3d6);
    color: #0b0b0d;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 12px 30px rgba(255, 79, 154, 0.35);
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 40px rgba(255, 79, 154, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* ------------------------------
   HERO
--------------------------------*/
.hero {
    padding: 6rem 0 4rem;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.2rem, 3vw, 2.8rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-text p {
    color: var(--muted);
    max-width: 32rem;
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.hero-badges span {
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 79, 154, 0.12);
    font-size: 0.75rem;
    color: var(--muted);
}

.hero-card {
    background: radial-gradient(circle at top left, #262633, #14141b);
    border-radius: 26px;
    padding: 1.8rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.06);
    max-width: 320px;
}

.hero-tag {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.7rem;
}

/* ------------------------------
   SERVICII
--------------------------------*/
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.5rem;
    border: 1px solid var(--border);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

/* ------------------------------
   GALERIE
--------------------------------*/
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
}

.lightbox.active {
    display: flex;
}

#lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(255, 79, 154, 0.4);
}

#lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
}

/* ------------------------------
   LISTĂ DE PREȚURI — ULTRA MINIMAL
--------------------------------*/
.price-list {
    display: grid;
    gap: 0.6rem;
    max-width: 520px;
    margin: 0 auto;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.95rem;
}

.price-row span:last-child {
    font-weight: 600;
    color: var(--accent);
}

.price-row.highlight span:last-child {
    color: #ff7abf;
    font-weight: 700;
}

/* ------------------------------
   SHOP
--------------------------------*/
.shop-coming-soon {
    background: radial-gradient(circle at top left, rgba(255, 79, 154, 0.18), rgba(15, 15, 20, 0.95));
    border-radius: 24px;
    padding: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    max-width: 520px;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: var(--accent-soft);
    color: #ffb3d6;
    font-size: 0.75rem;
    margin-bottom: 0.6rem;
}

/* ------------------------------
   COLABORĂRI
--------------------------------*/
.contact-form {
    display: grid;
    gap: 1rem;
    max-width: 500px;
}

.form-group {
    display: grid;
    gap: 0.3rem;
}

label {
    font-size: 0.85rem;
    color: var(--muted);
}

input,
textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 0.7rem;
    color: var(--text);
    font-size: 0.9rem;
}

textarea {
    resize: vertical;
}

/* ------------------------------
   CONTACT
--------------------------------*/
.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 1.2rem;
    transition: .2s;
}

.social-btn:hover {
    background: var(--accent);
    color: #000;
}

.map-box {
    width: 100%;
    height: 260px;
    border-radius: 18px;
    overflow: hidden;
}

/* ------------------------------
   FOOTER
--------------------------------*/
.footer {
    padding: 1.4rem 0;
    background: #050507;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    color: var(--muted);
}

/* ------------------------------
   ANIMAȚII
--------------------------------*/
.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: all .8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ------------------------------
   RESPONSIVE
--------------------------------*/
@media (max-width: 840px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-list {
        position: absolute;
        top: 60px;
        right: 1.25rem;
        flex-direction: column;
        background: #050507;
        padding: 1rem;
        border-radius: 16px;
        border: 1px solid rgba(255,255,255,0.1);
        display: none;
    }

    .nav-list.nav-open {
        display: flex;
    }

    .header-cta {
        display: none;
    }
}
/* ------------------------------
   OFERTE
--------------------------------*/
.offers-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 18px;
    text-align: center;
}

.no-offers {
    color: var(--muted);
    font-size: 1rem;
}

/* ------------------------------
   WHATSAPP FLOATING BUTTON
--------------------------------*/
.whatsapp-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    z-index: 999;
    transition: transform .2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ------------------------------
   LOADER
--------------------------------*/
#loader {
    position: fixed;
    inset: 0;
    background: #0f0f11;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.loader-circle {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255,255,255,0.2);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ------------------------------
   MOBILE OPTIMIZATION
--------------------------------*/
@media (max-width: 600px) {

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .hero-text h1 {
        font-size: 1.9rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.6rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 1.8rem;
    }
}
