/* ============================
   PREMIUM 2026 – DIRECTOR WEB
   Design modern, curat, rapid
   ============================ */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f4f4;
    color: #222;
    line-height: 1.6;
}

/* ============================
   HEADER
   ============================ */

.top-header {
    background: #ffffff;
    border-bottom: 3px solid #0077cc;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header .logo img {
    height: 55px;
}

.main-menu ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.main-menu ul li a {
    text-decoration: none;
    color: #0077cc;
    font-weight: bold;
    font-size: 16px;
}

.main-menu ul li a:hover {
    color: #004a80;
}

/* ============================
   CONTENT
   ============================ */

.content {
    max-width: 1200px;
    margin: 30px auto;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* ============================
   FOOTER
   ============================ */

.site-footer {
    background: #222;
    color: #fff;
    padding: 25px 0;
    margin-top: 40px;
}

.site-footer .footer-content {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.footer-links {
    list-style: none;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links li a {
    color: #fff;
    text-decoration: none;
}

.footer-links li a:hover {
    text-decoration: underline;
}

/* ============================
   BUTTONS
   ============================ */

.btn {
    display: inline-block;
    padding: 10px 18px;
    background: #0077cc;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
}

.btn:hover {
    background: #005fa3;
}

/* ============================
   FORME
   ============================ */

input, select, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
}

input[type="submit"] {
    background: #0077cc;
    color: #fff;
    cursor: pointer;
}

input[type="submit"]:hover {
    background: #005fa3;
}

/* ============================================================
   BANNER PORTAL ÎN TESTE – MAX POWER (URIAȘ, TRIPLU STRAT)
   ============================================================ */

.portal-teste-banner {
    width: 100%;
    text-align: center;
    padding: 40px 0;
    background: linear-gradient(135deg, #001A4D, #003C99);
    border-bottom: 4px solid #00A8FF;
    position: relative;
    overflow: hidden;
}

/* orbite rapide */
.portal-teste-banner::before,
.portal-teste-banner::after {
    content: "";
    position: absolute;
    width: 220%;
    height: 3px;
    background: rgba(0, 168, 255, 0.5);
    top: 50%;
    left: -60%;
    animation: orbitFast 2.8s linear infinite;
}

.portal-teste-banner::after {
    top: 62%;
    animation-duration: 3.8s;
    opacity: 0.7;
}

@keyframes orbitFast {
    0% { transform: translateX(-20%) rotate(12deg); }
    100% { transform: translateX(120%) rotate(12deg); }
}

/* TEXT URIAȘ + TRIPLU STRAT */
.portal-teste-text {
    position: relative;
    font-size: 78px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 4px;
    text-shadow:
        0 0 18px #00C8FF,
        0 0 32px #00E0FF,
        0 0 48px #00FFFF;
    animation: pulseMain 2s ease-in-out infinite;
}

/* STRAT 1 – HALO MARE */
.portal-teste-text::before {
    content: "PORTAL în TESTE";
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%) scale(1.35);
    color: rgba(0, 200, 255, 0.22);
    text-shadow: 0 0 55px #00E0FF;
    z-index: -2;
    animation: pulseHalo 3s ease-in-out infinite;
}

/* STRAT 2 – GLOW MEDIU */
.portal-teste-text::after {
    content: "PORTAL în TESTE";
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%) scale(1.18);
    color: rgba(0, 200, 255, 0.55);
    text-shadow: 0 0 32px #00C8FF;
    z-index: -1;
    animation: pulseGlow 2.4s ease-in-out infinite;
}

/* ANIMAȚII */
@keyframes pulseMain {
    0% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 0.9; }
}

@keyframes pulseHalo {
    0% { opacity: 0.22; transform: scale(1.35); }
    50% { opacity: 0.32; transform: scale(1.42); }
    100% { opacity: 0.22; transform: scale(1.35); }
}

@keyframes pulseGlow {
    0% { opacity: 0.55; transform: scale(1.18); }
    50% { opacity: 0.75; transform: scale(1.23); }
    100% { opacity: 0.55; transform: scale(1.18); }
}
