/* Stil general secțiune */
.hero-linear {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #000;
    font-family: 'Inter', sans-serif;
}

/* Imagine fundal */
.hero-bg-container {
    position: absolute;
    inset: 0;
}

.hero-img-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.85) contrast(1.1);
}

/* Overlay */
.hero-overlay-dynamic {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(0,0,0,0.8) 15%,
        rgba(0,0,0,0.4) 40%,
        rgba(0,0,0,0.9) 100%
    );
}

/* Conținut */
.hero-content-linear {
    max-width: 900px;
    z-index: 10;
}

/* Badge */
.premium-badge-linear {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
}

.premium-badge-linear .dot {
    width: 6px;
    height: 6px;
    background: #ffc107;
    border-radius: 50%;
    box-shadow: 0 0 10px #ffc107;
}

.premium-badge-linear .text {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
}

/* Titlu */
.hero-main-title {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 0.95;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hero-main-title .highlight {
    background: linear-gradient(180deg, #ffc107 0%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-main-title .sub-text {
    display: block;
    font-size: clamp(1rem, 3vw, 2rem);
    font-weight: 300;
    letter-spacing: 5px;
    opacity: 0.9;

}

/* Text */
.hero-lead-text {
    font-size: 1.2rem;
    color: rgba(255,255,255,1.5);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Butoane */
.hero-btns-center {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.btn-2026-linear {
    padding: 16px 45px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(4px);
    color: #fff;
    transition: all 0.4s ease;
}

/* 🔧 FIX FINAL – text ALB, FĂRĂ gradient */
.btn-2026-linear span {
    color: #fff;
    background: none;
    -webkit-text-fill-color: #fff;
}

/* Hover */
.btn-2026-linear:hover {
    border-color: #ffc107;
    background: rgba(255,193,7,0.05);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,193,7,0.15);
}

/* Info jos */
.hero-bottom-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.info-item { text-align: center; }
.info-item .label {
    font-size: 0.7rem;
    color: #ffc107;
    font-weight: 700;
    letter-spacing: 2px;
}
.info-item .value {
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff;
}

.divider {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.2);
}

/* Mobile */
@media (max-width: 768px) {
    .hero-btns-center {
        flex-direction: column;
        gap: 15px;
    }
    .hero-bottom-info {
        display: none;
    }
}
/* Ajustare Responsive Butoane */
.hero-btns-center {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap; /* Permite mai multe rânduri pe ecrane mici */
}

.btn-2026-linear {
    min-width: 200px;  /* Minim ca să nu fie prea mic */
    max-width: 320px;  /* Maxim ca să nu se întindă prea mult */
    padding: 16px 40px;
    text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-btns-center {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .btn-2026-linear {
        width: 90%;  /* doar 90% din container */
        max-width: 300px;
        padding: 14px 25px;
    }
}
.hero-img-desktop {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; /* afișează pe desktop */
}

.hero-img-mobile {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none; /* ascunde pe desktop */
}

/* Pentru ecrane mici */
@media (max-width: 768px) {
    .hero-img-desktop {
        display: none; /* ascunde pe mobil */
    }
    .hero-img-mobile {
        display: block; /* afișează pe mobil */
    }
}

