/* =============================== */
/* HERO SECTION — FULLSCREEN FIXED */
/* =============================== */

.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 5;
}

/* VIDEO BACKGROUND */
.hero-video {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: inset(0 0 0 0);
    z-index: 1;
}

/* DARK OVERLAY */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 10, 30, 0.6);
    z-index: 2;
}

/* =============================== */
/* TEXT + BUTOANE — STÂNGA SUS     */
/* =============================== */

.hero-content {
    position: absolute;
    top: 40px;
    left: 40px;
    text-align: left;
    color: #fff;
    z-index: 4;
    pointer-events: auto; /* CLICK FIX */
}

.logo-title {
    font-size: 4rem;
    letter-spacing: 2px;
    text-shadow: 0 0 20px #00bfff;
}

.logo-subtitle {
    font-size: 1.8rem;
    margin-top: 10px;
    color: #cceeff;
    text-shadow: 0 0 10px #66ccff;
}

.hero-buttons {
    margin-top: 30px;
    pointer-events: auto; /* CLICK FIX */
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    margin: 10px;
    font-size: 1rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s ease;
    pointer-events: auto; /* CLICK FIX */
}

.btn-primary {
    background: #00bfff;
    color: #000;
    font-weight: bold;
}

.btn-secondary {
    background: #333;
    color: #fff;
    border: 1px solid #ccc;
}

.btn-primary:hover {
    background: #0099cc;
}

.btn-secondary:hover {
    background: #555;
}

/* =============================== */
/* VIDEO PROMO — DREAPTA SUS       */
/* =============================== */

.hero-video-box {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 480px;
    height: auto;
    background: rgba(0, 10, 30, 0.65);
    border: 1px solid #00bfff;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 0 20px #00bfff;
    z-index: 4;
    pointer-events: auto; /* CLICK FIX */
}

.video-title {
    font-size: 1.2rem;
    color: #cceeff;
    margin-bottom: 10px;
    text-align: center;
    font-family: 'Cinzel', serif;
    text-shadow: 0 0 10px #66ccff;
}

.video-frame iframe {
    width: 100%;
    height: 295px;
    border-radius: 6px;
    pointer-events: auto; /* VIDEO CLICK FIX */
}

.crows-layer {
    pointer-events: none;
    position: absolute;
    inset: 0;
    z-index: 3; /* sub text și video */
}

/* =============================== */
/* NEWS SECTION — CINEMATIC STYLE  */
/* =============================== */

.news-section {
    width: 100%;
    padding: 60px 0;
    background: rgba(0, 10, 30, 0.4);
    backdrop-filter: blur(4px);
    margin-top: 40px;
}

.news-title {
    font-size: 2.4rem;
    color: #cceeff;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px #00bfff;
    font-family: 'Cinzel', serif;
}

.news-container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-box {
    background: rgba(0, 10, 30, 0.55);
    border: 1px solid rgba(0, 191, 255, 0.4);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
    transition: 0.3s ease;
}

.news-box:hover {
    background: rgba(0, 10, 30, 0.75);
    border-color: rgba(0, 191, 255, 0.7);
    box-shadow: 0 0 25px rgba(0, 191, 255, 0.5);
}

.news-date {
    font-size: 0.9rem;
    color: #8fbfe8;
    margin-bottom: 5px;
}

.news-headline {
    font-size: 1.4rem;
    color: #e8f6ff;
    margin-bottom: 10px;
    font-weight: bold;
    text-shadow: 0 0 10px #66ccff;
}

.news-text {
    font-size: 1rem;
    color: #cbd6f0;
    line-height: 1.5;
}
