/* -------------------------------------- */
/* RESET & BASE */
/* -------------------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background: #0f1115;
    color: #e5e5e5;
    line-height: 1.6;
}

/* -------------------------------------- */
/* HEADER */
/* -------------------------------------- */

header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    padding: 15px 50px;
    background: rgba(15,17,21,0.9);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 1000;
}

/* LOGO Glow Animation */
.logo-img {
    height: 48px;
    width: auto;
    animation: glowPulse 2s infinite ease-in-out;
}

@keyframes glowPulse {
    0% { filter: drop-shadow(0 0 2px #19e6c7); }
    50% { filter: drop-shadow(0 0 12px #19e6c7) drop-shadow(0 0 20px #19e6c7); }
    100% { filter: drop-shadow(0 0 2px #19e6c7); }
}

/* NAV Desktop */
nav.mobile-menu {
    display: flex;
    gap: 28px;
    transition: 0.3s ease;
}

nav a {
    color: #e5e5e5;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: #19e6c7;
}

/* -------------------------------------- */
/* HAMBURGER MENU */
/* -------------------------------------- */

#menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    width: 32px;
    height: 26px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 2001;
}

.hamburger span {
    height: 3px;
    background: #19e6c7;
    border-radius: 3px;
    transition: 0.3s ease;
}

/* Hamburger → X */
#menu-toggle:checked + .hamburger span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}
#menu-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
}
#menu-toggle:checked + .hamburger span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* MOBILE MENU */
@media(max-width:768px){

    .hamburger {
        display: flex;
    }

    nav.mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 250px;
        background: rgba(15,17,21,0.95);
        backdrop-filter: blur(6px);
        flex-direction: column;
        padding-top: 120px;
        padding-left: 35px;
        gap: 22px;
        border-left: 1px solid #19e6c733;
        transition: 0.35s ease-out;
        z-index: 2000;
    }

    #menu-toggle:checked ~ nav.mobile-menu {
        right: 0;
    }

    nav.mobile-menu a {
        font-size: 1.2rem;
    }

    header {
        padding: 15px 25px;
    }
}

/* -------------------------------------- */
/* ELECTRIC PULSE LINE */
/* -------------------------------------- */

.pulse-line {
    position: relative;
    z-index: 2000; /* peste header */
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg,
        transparent 0%,
        #19e6c7 20%,
        #19e6c7 50%,
        transparent 80%
    );
    animation: electricPulse 2s infinite linear;
    margin-top: 80px;
}

@keyframes electricPulse {
    0% { background-position: 0 0; }
    100% { background-position: 300px 0; }
}

/* -------------------------------------- */
/* HERO */
/* -------------------------------------- */

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    background: radial-gradient(circle at 30% 30%, #19e6c760, #0f1115 70%);
}

.hero h1 {
    font-size: 3rem;
    max-width: 850px;
    margin-bottom: 20px;
}

.hero p {
    max-width: 650px;
    font-size: 1.1rem;
    opacity: .85;
    margin-bottom: 32px;
}

.btn {
    padding: 14px 34px;
    background: #19e6c7;
    color: #0f1115;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.btn:hover {
    background: #14bfa5;
}

/* -------------------------------------- */
/* SECTIONS */
/* -------------------------------------- */

section {
    padding: 120px 60px;
    max-width: 1200px;
    margin: auto;
}

h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #19e6c7;
}

/* -------------------------------------- */
/* CARDS */
/* -------------------------------------- */

.cards {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
    background: #15181e;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: .3s;
}

.card:hover {
    transform: translateY(-8px);
    border-color: #19e6c7;
}

/* -------------------------------------- */
/* NORME BOX */
/* -------------------------------------- */

.norme-box {
    background: #15181e;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    line-height: 1.8;
    text-align: justify;
}

.norme-box ul {
    margin-top: 15px;
    padding-left: 22px;
}

.norme-box li {
    margin-bottom: 8px;
}

/* Linkuri galbene */
section a, .norme-box a {
    color: #ffd700;
    text-decoration: underline;
}

section a:hover, .norme-box a:hover {
    color: #ffe36e;
}

/* -------------------------------------- */
/* MAGAZIN ONLINE */
/* -------------------------------------- */

.magazin-box {
    max-width: 700px;
    margin: 0 auto;
    background: #15181e;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    box-shadow: 0 0 15px #19e6c733;
}

.magazin-icon {
    width: 65px;
    height: 65px;
    margin: auto;
    margin-bottom: 15px;
    background: url('https://cdn-icons-png.flaticon.com/512/891/891462.png') no-repeat center/contain;
    filter: drop-shadow(0 0 8px #19e6c7);
}

.magazin-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 26px;
    background: #19e6c7;
    color: #0f1115;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 0 10px #19e6c777;
}

.magazin-btn:hover {
    background: #14bfa5;
    box-shadow: 0 0 14px #19e6c7;
}

/* -------------------------------------- */
/* CONTACT */
/* -------------------------------------- */

.contact-box {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-label {
    font-size: 0.9rem;
    opacity: 0.7;
}

.contact-link {
    font-size: 1.4rem;
    font-weight: 600;
    color: #19e6c7;
    text-decoration: none;
}

.contact-link:hover {
    color: #00fff2;
}

.phone-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, #19e6c7, #0acfb6);
    box-shadow: 0 0 8px #19e6c7;
    position: relative;
}

.phone-icon::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 9px;
    width: 14px;
    height: 22px;
    border-radius: 4px;
    border: 2px solid #0f1115;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #25D366;
    color: #0f1115;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s;
    box-shadow: 0 0 10px #25D366aa;
}

.whatsapp-btn:hover {
    background: #1fc859;
    box-shadow: 0 0 16px #25D366;
}

.wa-icon {
    width: 20px;
    height: 20px;
    background: url('https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg') no-repeat center/contain;
    display: inline-block;
}

/* -------------------------------------- */
/* FOOTER */
/* -------------------------------------- */

footer {
    text-align: center;
    padding: 40px;
    margin-top: 40px;
    background: #15181e;
    border-top: 1px solid rgba(255,255,255,0.05);
}

footer p {
    opacity: .6;
}
