@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&family=Poppins:wght@300;400;600&display=swap');
@font-face {
    font-family: 'Aileron';
    src: url('../fonts/Aileron-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Aileron';
    src: url('../fonts/Aileron-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

/* === Reset === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 200vh;
    overflow-x: hidden;
    color: #e6faff;
    font-family: 'Poppins', sans-serif;
    position: relative;
    isolation: isolate;

    background:
        linear-gradient(120deg, rgba(212, 248, 255, 0.06), rgba(0, 140, 255, 0.10), rgba(0, 70, 180, 0.10)),
        linear-gradient(135deg, hsl(215, 0%, 7%), hsl(209, 0%, 12%), hsl(211, 0%, 9%));
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

body.fade-out {
    opacity: 0;
    transform: scale(1.05);
    filter: blur(3px);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* === Background Canvas === */
#bgCanvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* conținut peste canvas */
header,
main,
section,
footer,
.hero {
    position: relative;
    z-index: 2;
}


/* =========================================
   FOOTER
========================================= */
footer {
    text-align: center;
    padding: 25px;
    border-top: 1px solid #ffffff;
    font-size: 14px;
}

/* === Header === */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 18px 40px;
    display: flex;
    justify-content: center;

    /* smooth la scroll */
    transition: padding 0.35s ease;
}

.navbar {
    width: min(1200px, 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1vh;
    padding: 14px 22px;

    /* păstrat, doar ușor ajustat */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 24px;

    /* blur puțin mai vizibil dar safe */
    backdrop-filter: blur(3px) saturate(165%);
    -webkit-backdrop-filter: blur(3px) saturate(165%);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -1px 0 rgba(255, 255, 255, 0.03),
        0 8px 24px rgba(0, 0, 0, 0.16);

    position: relative;
    overflow: hidden;

    transition:
        padding 0.35s ease,
        border-radius 0.35s ease,
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease,
        backdrop-filter 0.35s ease;
}

.navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.16),
        rgba(255,255,255,0.045) 35%,
        rgba(255,255,255,0.01)
    );
    pointer-events: none;
}

.navbar::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.18),
        transparent 40%
    );
    opacity: 0.22;
    pointer-events: none;
}

/* === Logo === */
#logo {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

#logo-img {
    height: 80px;
    width: auto;
    border-radius: 10px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

#logo-img:hover {
    transform: scale(1.08);
}

/* === Links === */
.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    position: relative;
    z-index: 1;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.88);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 15px 21px;
    border-radius: 16px;
    transition: 0.28s ease;
    border: 1px solid transparent;
}

.nav-links a:hover {
    color: white;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.16),
        0 6px 18px rgba(0,0,0,0.14);
}

.nav-links a.active {
    color: white;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
}

/* === Buttons === */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.btn-ghost,
.btn-primary {
    text-decoration: none;
    padding: 11px 18px;
    border-radius: 16px;
    font-size: 0.92rem;
    font-weight: 600;
    transition: 0.28s ease;
    border: 1px solid rgba(255,255,255,0.14);
}

.btn-ghost {
    color: white;
    background: rgba(255,255,255,0.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.14);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.12);
}

.btn-primary {
    color: #07111f;
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(220,240,255,0.84));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.85),
        0 8px 20px rgba(0,0,0,0.18);
}

.btn-primary:hover {
    transform: translateY(-1px);
}

/* === Hero === */
.hero {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 0 40px;
    z-index: 2;
    position: relative;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.hero p {
    max-width: 700px;
    font-size: 1.08rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.78);
}

/* === Responsive === */
@media (max-width: 980px) {
    .navbar {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    header {
        padding: 14px 16px;
    }

    .navbar {
        padding: 14px;
        border-radius: 20px;
        gap: 18px;
    }

    #logo {
        width: 100%;
        justify-content: center;
    }

    #logo-img {
        height: 64px;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .nav-links a {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .nav-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero {
        margin-top: 50px;
        padding: 0 18px;
    }
}


/* === Hero Section === */
#home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0px 20px 60px;
}

#home .content {
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

#home h1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    

    font-size: clamp(2.8rem, 7vw, 4.8rem);
    line-height: 1.05;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 20px;
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.12);
}
#home p {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    color: hsla(190, 0%, 90%, 0.9);
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto 30px;
}

#home .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 18px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #08111f;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.95),
        rgba(220, 240, 255, 0.86)
    );
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        inset 1px 1px 0 rgba(255,255,255,0.85),
        0 8px 20px rgba(0,0,0,0.18);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

#home .btn-primary:hover {
    transform: translateY(-2px) scale(0.98);
    box-shadow:
        inset 1px 1px 0 rgba(255,255,255,0.9),
        0 12px 24px rgba(0,0,0,0.22);
}



/* === Sections === */
section {
    padding: 80px 40px; text-align:center;
    transform: translateY(0px);
    transition: transform 0.5s ease-out;
}
section h2 {
    font-size:36px; color: rgba(255, 255, 255, 0.92); margin-bottom:40px; font-family: 'Outfit', sans-serif;
    font-weight: 600;   
}

section #photo {
    padding:  0px 40px 0px 40px;

}


section #music {
    padding:  0px 40px 80px 40px;

}

section#services {
    padding: 80px 40px 80px 40px;
}
section#home {
    padding: 80px 40px 80px 40px;
}

section#showcase {
    padding: 140px 40px 140px 40px;

}

section#clients {
    padding: 140px 40px 140px 40px;

}


/* === Cards === */
.cards {
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap:30px; max-width:1000px; margin:auto;
}
.card {
     /* MULT mai transparent */
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;

    /* blur mai mic, altfel dispar stelele */
    backdrop-filter: blur(2px) saturate(160%);
    -webkit-backdrop-filter: blur(2px) saturate(160%);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 8px 24px rgba(0, 0, 0, 0.16);

    padding:25px;
    transition:0.4s;
   
}

.card:hover { transform:translateY(-10px); }


.card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.16),
        rgba(255,255,255,0.04) 35%,
        rgba(255,255,255,0.01)
    );
    pointer-events: none;
}

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.18),
        transparent 40%
    );
    opacity: 0.25;
    pointer-events: none;
}



/* === Gallery & Lightbox === */
.gallery-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:20px; max-width:1000px; margin:auto; }
.gallery-grid img { width:100%; border-radius:15px; cursor:pointer; transition:transform 0.4s, box-shadow 0.4s; box-shadow:0 0 20px rgba(0,255,255,0.1); }
.gallery-grid img:hover { transform:scale(1.05); box-shadow:0 0 30px rgba(255, 255, 255, 0.5); }

#lightbox {
    position:fixed; top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.85);
    display:flex; justify-content:center; align-items:center;
    visibility:hidden; opacity:0; transition:opacity 0.4s; z-index:1000;
}
#lightbox.active { visibility:visible; opacity:1; }
#lightbox img { max-width:90%; max-height:80%; border-radius:15px; box-shadow:0 0 40px #00ffffaa; }

/* === Clients === */
.client-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:30px; max-width:1000px; margin:auto; }
.client-card {
     /* MULT mai transparent */
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;

    /* blur mai mic, altfel dispar stelele */
    backdrop-filter: blur(2px) saturate(160%);
    -webkit-backdrop-filter: blur(2px) saturate(160%);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 8px 24px rgba(0, 0, 0, 0.16);

    padding:25px;
    transition:0.4s;
   
}

.client-card:hover { transform:translateY(-10px); }


.client-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.16),
        rgba(255,255,255,0.04) 35%,
        rgba(255,255,255,0.01)
    );
    pointer-events: none;
}

.client-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.18),
        transparent 40%
    );
    opacity: 0.25;
    pointer-events: none;
}


.client-card img { width:80px; height:80px; border-radius:50%; margin-bottom:10px; border:2px solid #00ffff80; box-shadow:0 0 10px #00ffff40; }
.client-card h3 { margin:5px 0; color:#ffffff; font-family:'Orbitron',sans-serif; }
.client-card p { font-size:14px; color:#c8f6ff; }
.rating { display:block; margin-top:10px; color:#ffffff; font-size:18px; letter-spacing:2px; }

/* === Tabs === */
.showcase-tabs { display:flex; justify-content:center; gap:15px; margin-bottom:40px; }
.tab-content { display:none; opacity:0; transform:translateY(20px); transition:opacity 0.5s, transform 0.5s; }
.tab-content.active { display:block; opacity:1; transform:translateY(0); }


/* === Catalog === */
.catalog-grid {
    display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px; max-width:900px; margin:auto;
}

.catalog-grid img { width:100%; border-radius:12px; margin-bottom:12px}



.catalog-grid .item {
     /* MULT mai transparent */
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;

    /* blur mai mic, altfel dispar stelele */
    backdrop-filter: blur(2px) saturate(160%);
    -webkit-backdrop-filter: blur(2px) saturate(160%);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 8px 24px rgba(0, 0, 0, 0.16);

    padding:25px;
    transition:0.4s;
   
}

.catalog-grid .item:hover { transform:translateY(-10px); }


.catalog-grid .item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.16),
        rgba(255,255,255,0.04) 35%,
        rgba(255,255,255,0.01)
    );
    pointer-events: none;
}

.catalog-grid .item::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.18),
        transparent 40%
    );
    opacity: 0.25;
    pointer-events: none;
}


/* === Audio Player === */
.audio-player { display:flex; align-items:center; gap:10px; background: rgba(255, 255, 255, 0.025); padding:10px 15px; border-radius:25px; margin-top:10px; }
.audio-player button.play-btn {
    font-size:20px; background: linear-gradient(90deg, hsl(180, 100%, 100%), hsl(0, 0%, 67%));
    border:none; border-radius:50%; width:45px; height:45px; cursor:pointer;
    display:flex; align-items:center; justify-content:center; color:#001;
    transition: transform 0.2s, box-shadow 0.3s;
}
.audio-player button.play-btn:hover { transform:scale(1.1) }
.progress-container { cursor:pointer;flex:1; height:6px; background: rgba(255,255,255,0.1); border-radius:5px; overflow:hidden;  }
.progress { width:0%; height:100%; background:linear-gradient(90deg,#ffffff,#bcbcbc); border-radius:5px; box-shadow:0 0 10px #00ffff80; transition: width 0.1s linear; }


.review-form {
    max-width: 500px;
    margin: auto;
    text-align: center;

}

.review-form {
     /* MULT mai transparent */
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;

    /* blur mai mic, altfel dispar stelele */
    backdrop-filter: blur(2px) saturate(160%);
    -webkit-backdrop-filter: blur(2px) saturate(160%);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 8px 24px rgba(0, 0, 0, 0.16);

    padding:25px;
    transition:0.4s;
   
}


.review-form::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.16),
        rgba(255,255,255,0.04) 35%,
        rgba(255,255,255,0.01)
    );
    pointer-events: none;
}

.review-form::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.18),
        transparent 40%
    );
    opacity: 0.25;
    pointer-events: none;
}




.review-form input,
.review-form textarea,
.review-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 10px;

    
    color: #e6faff;
}


.review-form input,
.review-form textarea,
.review-form select {
     /* MULT mai transparent */
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;

    /* blur mai mic, altfel dispar stelele */
    backdrop-filter: blur(2px) saturate(160%);
    -webkit-backdrop-filter: blur(2px) saturate(160%);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 8px 24px rgba(0, 0, 0, 0.16);

    padding:25px;
    transition:0.4s;
   
}






.review-form textarea {
    min-height: 120px;
}

.review-success {
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    padding: 20px;
    border: 1px solid #ffffff;
    border-radius: 10px;
    background: rgba(0,20,30,0.7);
    max-width: 500px;
    margin: auto;

}


.star-rating span{
    font-size: 30px;
    margin-bottom: 20px;
    cursor: pointer;
    user-select: none;
}

.star-rating span {
    color: #ffffff;
    transition: 0.2s;
}

.star-rating span:hover,
.star-rating span.active {
    color: gold;
}

/* =========================
   MESAJ SUCCES
========================= */

.review-success {
    background: #111;
    padding: 30px;
    border-radius: 12px;
    color: gold;
    font-size: 18px;
    margin-top: 40px;
}


/* =========================
   RECENZII CLIENTI
========================= */

#clients {
    padding: 100px 10%;
    
    color: #fff;
    text-align: center;
}

#clients h2 {
    font-size: 36px;
    margin-bottom: 60px;
    font-weight: 600;
}

/* GRID RECENZII */
.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* CARD RECENZIE */
.client-card {
    
    padding: 30px;
    border-radius: 15px;
    transition: 0.3s ease;
    box-shadow: 0 0 0 transparent;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.05);
}

.client-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 500;
}

.client-card p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 20px;
}

/* STELE AFISATE */
.rating {
    font-size: 20px;
    letter-spacing: 3px;
    color: gold;
}



/* Smooth Scroll */
html { scroll-behavior: smooth; }



/* =========================================
   GALLERY SLIDER FOTO
========================================= */
.gallery-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    margin: auto;
}

.gallery-grid {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    position: relative;
    
}

.gallery-slide {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    animation: fadeSlide 0.4s ease;
}

.gallery-slide.active {
    display: grid;
}

.gallery-slide img {
    width: 100%;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.4s, box-shadow 0.4s;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.gallery-slide img:hover {
    transform: scale(1.05);
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 28px;
    font-weight: bold;
    color: #001;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}





.gallery-arrow:hover {
    transform: translateY(-50%) scale(1.08);

}

.gallery-arrow.left {
    left: -20px;
}

.gallery-arrow.right {
    right: -20px;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}




/* =========================================
   SHOP / MAGAZIN
========================================= */
.catalog-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 800px;
    margin: auto;
}

.gallery-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.catalog-grid-2 .item,
.galleryitem-2 {
    position: relative; /* IMPORTANT */

    /* GLASS ca la review-form */
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;

    backdrop-filter: blur(2px) saturate(160%);
    -webkit-backdrop-filter: blur(2px) saturate(160%);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 8px 24px rgba(0, 0, 0, 0.16);

    padding: 18px;
    transition: 0.4s;

    display: flex;
    flex-direction: column;
    min-height: 430px;
    overflow: hidden;
}



.catalog-grid-2 .item::before,
.galleryitem-2::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.16),
        rgba(255,255,255,0.04) 35%,
        rgba(255,255,255,0.01)
    );
    pointer-events: none;
}

.catalog-grid-2 .item::after,
.galleryitem-2::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.18),
        transparent 40%
    );
    opacity: 0.25;
    pointer-events: none;
}
.catalog-grid-2 .item h3,
.galleryitem-2 h3 {
    margin: 10px 0 25px;
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    text-align: center;
}

.galleryitem-2 h3 {
    font-size: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 20px;
}

.catalog-grid-2 .item:hover h3,
.galleryitem-2:hover h3 {
    transform: scale(1.05);
    
    transition: transform 1s, text-shadow 1s;
}

.catalog-grid-2 .item:hover,
.galleryitem-2:hover {
    transform: translateY(-8px) scale(1.02);
    
    cursor: pointer;
}

.catalog-grid-2 img,
.galleryitem-2 img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    
    transition: transform 0.6s ease;
}

.catalog-grid-2 .price,
.galleryitem-2 .price {
    font-size: 20px;
    color: #a8d4e0;
    font-weight: 600;
    text-align: center;
}

.galleryitem-2.active img,
.galleryitem-2.active .price {
    display: none;
}

.gallery-grid-2.has-active .galleryitem-2:not(.active) {
    filter: blur(1px) grayscale(0.8);
    opacity: 0.45;
    transform: scale(0.96);
}

/* =========================================
   DETAILS / BUY BUTTON
========================================= */
.galleryitem-2 .details {
    display: none;
    flex-direction: column;
    color: #d4f8ff;
    font-size: 15px;
    line-height: 1.5;
    text-align: left;
    background: rgba(0, 12, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 18px 16px;
    flex: 1;
}

.galleryitem-2.active .details {
    display: flex;
}

.details p {
    margin: 4px 0;
}

.galleryitem-2 .details p::before {
    content: "- ";
    color: #ffffff;
    font-weight: bold;
}

.buy-btn {
    display: none;
    margin: 14px auto 0;
    padding: 11px 26px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(90deg, #ffffff, #9e9e9e);
    color: #001;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: fit-content;
    max-width: 90%;
    text-align: center;
}

.galleryitem-2.active .buy-btn {
    display: block;
}

.buy-btn:hover {
    transform: scale(1.05);
}


/* =========================================
   TABS
========================================= */
.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn,
.tab-btn-2 {
     /* MULT mai transparent */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(220, 240, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;

    /* blur mai mic, altfel dispar stelele */
    backdrop-filter: blur(2px) saturate(160%);
    -webkit-backdrop-filter: blur(2px) saturate(160%);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 8px 24px rgba(0, 0, 0, 0.16);

    
    transition:0.4s;

    padding: 10px 25px;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 600;
   
}

.tab-btn:hover,
.tab-btn-2:hover {

    transform: scale(1.05);
}

.tab-btn.active,
.tab-btn-2.active {
     /* MULT mai transparent */
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(220,240,255,0.84));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;

    /* blur mai mic, altfel dispar stelele */
    backdrop-filter: blur(2px) saturate(160%);
    -webkit-backdrop-filter: blur(2px) saturate(160%);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 8px 24px rgba(0, 0, 0, 0.16);

    padding: 10px 25px;
    transition:0.4s;
    color: #07111f;
    font-size: 0.92rem;
    font-weight: 600;
   
}

.tab-content,
.tab-content-2 {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}

.tab-content.active,
.tab-content-2.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   FORMURI GENERALE
========================================= */
form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: auto;
    gap: 15px;
}


.btn-form {
     /* MULT mai transparent */
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(220,240,255,0.84));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;

    /* blur mai mic, altfel dispar stelele */
    backdrop-filter: blur(2px) saturate(160%);
    -webkit-backdrop-filter: blur(2px) saturate(160%);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 8px 24px rgba(0, 0, 0, 0.16);

    padding:25px;
    transition:0.4s;
    color: #07111f;
    font-size: 0.92rem;
    font-weight: 600;
   
}

.btn-form:hover {
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 12px 28px rgba(0, 0, 0, 0.22);
    cursor: pointer;
}

input,
textarea {
    width: 100%;    
    padding: 12px 15px;
    border-radius: 10px;

    color: #e6faff;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    resize: none;
    overflow: auto;
}

input,
textarea {
     /* MULT mai transparent */
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;

    /* blur mai mic, altfel dispar stelele */
    backdrop-filter: blur(2px) saturate(160%);
    -webkit-backdrop-filter: blur(2px) saturate(160%);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 8px 24px rgba(0, 0, 0, 0.16);

    padding:25px;
    transition:0.4s;
   
}


input::before,
textarea::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.16),
        rgba(255,255,255,0.04) 35%,
        rgba(255,255,255,0.01)
    );
    pointer-events: none;
}

input::after,
textarea::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.18),
        transparent 40%
    );
    opacity: 0.25;
    pointer-events: none;
}




.review-form input,
.review-form textarea,
.review-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 10px;

    
    color: #e6faff;
}


input:focus,
textarea:focus {
    outline: none;

}

textarea {
    min-height: 120px;
    max-height: 400px;
    scrollbar-width: thin;

}

textarea::-webkit-scrollbar {
    width: 8px;
}

textarea::-webkit-scrollbar-track {
    background: rgba(0, 20, 30, 0.5);
    border-radius: 8px;
}

textarea::-webkit-scrollbar-thumb {

    border-radius: 8px;
    border: 2px solid rgba(0, 20, 30, 0.5);
}



.glass {
    position: relative;

    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;

    backdrop-filter: blur(2px) saturate(160%);
    -webkit-backdrop-filter: blur(2px) saturate(160%);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 8px 24px rgba(0, 0, 0, 0.16);
}

.glass::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;

    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.16),
        rgba(255,255,255,0.04) 35%,
        rgba(255,255,255,0.01)
    );

    pointer-events: none;
}

.glass::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;

    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.18),
        transparent 40%
    );

    opacity: 0.25;
    pointer-events: none;
}


/* =========================================
   PRELOADER
========================================= */
#preloader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #010912;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
}

#preloader-logo {
    position: absolute;
    width: 120px;
    animation: pulseLogo 1s infinite alternate;
    filter: drop-shadow(0 0 10px #ffffff) drop-shadow(0 0 20px #ffffff80);
}

#preloader-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

@keyframes pulseLogo {
    0% {
        transform: scale(0.9);
        filter: drop-shadow(0 0 10px #ffffff) drop-shadow(0 0 20px #b9b9b980);
    }
    100% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 20px #ffffff) drop-shadow(0 0 40px #c0c0c0aa);
    }
}



.back-btn {
     /* MULT mai transparent */
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(220,240,255,0.84));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;

    /* blur mai mic, altfel dispar stelele */
    backdrop-filter: blur(2px) saturate(160%);
    -webkit-backdrop-filter: blur(2px) saturate(160%);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 8px 24px rgba(0, 0, 0, 0.16);

    padding:25px 22vh;
    transition:0.4s;
    color: #07111f;
    font-size: 0.92rem;
    font-weight: 600;
    margin-top: 25px


   
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 12px 28px rgba(0, 0, 0, 0.22);
    cursor: pointer;
}




header {
    transition: padding 0.35s ease;
}

.navbar {
    transition:
        padding 0.35s ease,
        border-radius 0.35s ease,
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease,
        gap 0.35s ease,
        backdrop-filter 0.35s ease;
}

/* linkurile si butonul sa aiba tranzitie */
.nav-links li,
.nav-links a,
.nav-actions,
#logo-img {
    transition: all 0.35s ease;
}

/* ===== MOD MINIMAL ===== */
header.minimal {
    padding: 10px 24px;
}

header.minimal .navbar {
    padding: 10px 16px;
    border-radius: 18px;
    gap: 12px;

    /* centrare reala */
    justify-content: center;

    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px) saturate(170%);
    -webkit-backdrop-filter: blur(6px) saturate(170%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 10px 22px rgba(0, 0, 0, 0.18);
}

/* logo mai mic */
header.minimal #logo-img {
    height: 52px;
    width: auto;
}

/* ascunde toate itemele */
header.minimal .nav-links li {
    opacity: 0;
    transform: scale(0.9);
    width: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    pointer-events: none;
}

/* lasa doar linkul activ */
header.minimal .nav-links li:has(a.active) {
    opacity: 1;
    transform: scale(1);
    width: auto;
    margin: 0;
    overflow: visible;
    pointer-events: auto;
}

/* nav-ul sa nu mai impinga layout-ul */
header.minimal .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    gap: 0;
    flex: 0 0 auto;
}

/* stil mai compact pentru butonul activ */
header.minimal .nav-links a.active {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    font-size: 0.88rem;
    border-radius: 14px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.18);
    white-space: nowrap;
}

/* scoate complet butonul Underground */
header.minimal .nav-actions {
    display: none;
}

header.minimal .navbar {
    width: fit-content; /* 🔥 cheia */
    max-width: 90%;

    padding: 8px 14px;
    border-radius: 16px;

    justify-content: center;
    gap: 8px;

    margin: 0 auto; /* centru */
}