* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    min-height: 100vh;
    color: white;
    background: #05030b;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(rgba(238, 165, 69, 0.45), rgba(0, 0, 0, .92)),
        url("../../images/tarasspatee.gif") center/cover no-repeat;
    z-index: -1;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 0, 180, .22), transparent 32%),
        radial-gradient(circle at 85% 15%, rgba(0, 120, 255, .18), transparent 35%);
    z-index: -1;
}

.navbar {
    height: 90px;
    padding: 0 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, .25);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.logo img {
    width: 75px;
    border-radius: 50%;
}

nav {
    display: flex;
    gap: 35px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 1px;
}

nav a:hover {
    color: #ff2ebd;
}

.page {
    width: min(1320px, 92%);
    margin: auto;
}

.back {
    display: inline-block;
    margin: 28px 0;
    color: #ff8ee8;
    text-decoration: none;
    font-weight: 900;
}

/* Stilul bază (Desktop) */
.hero {
    min-height: 500px;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    position: relative;
    align-items: flex-end; /* Schimbat din center în flex-end pentru a împinge tot scrisul JOS */
    padding: 30px 25px;   /* Spațiul din jurul textului când ajunge jos */
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.60) 100%),
        url("../../images/tarasdekstopbanner.jpg") top / cover no-repeat;
    border: 1px solid rgba(3, 47, 192, 0.4);
    box-shadow: 0 0 45px rgba(255, 46, 189, .22); 
}

/* Ajustări speciale pentru telefoane (Mobil) */
@media (max-width: 768px) {
    .hero {
        min-height: 380px;
        align-items: flex-end; /* Asigură coborârea textului și pe mobil */
        padding: 20px 15px;
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.40) 100%),
            url("../../images/tarasbaner.jpg") center top / cover no-repeat;
    }

    /* Reducem dimensiunea textului pe mobil ca să nu depășească cadrul */
    .hero h1, .hero .title { 
        font-size: 1.5rem !important; 
        line-height: 1.2; /* Am redus line-height de la 1.9 ca să nu ocupe prea mult spațiu */
    }
    
    .hero p, .hero .subtitle {
        font-size: 0.9rem !important;
    }
}

.hero-content span {
    color: #FFD700;
    font-weight: 100;
    letter-spacing: 10px;
}

.hero-content h2 {
    margin-top: 15px;
    font-size: 30px;
    font-weight: 700;
    color: #F5E6CA;
}

.hero-content h1 {
    font-size: 74px;
    color: #C5A059;
    margin: 8px 0 18px;
}

.hero-content p {
    color: #f1a31c;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title {
    text-align: center;
    font-size: 34px;
    margin: 65px 0 30px;
    color: #ffcf7b;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.detail-card {
    min-height: 160px;
    padding: 35px 25px;
    border-radius: 22px;
    text-align: center;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(15px);
    transition: .3s;
}

.detail-card:hover {
    transform: translateY(-8px);
    border-color: #ff2ebd;
    box-shadow: 0 0 35px rgba(255, 46, 189, .45);
}

.detail-card i {
    color: #ff2ebd;
    font-size: 38px;
    margin-bottom: 16px;
}

.detail-card h3 {
    margin-bottom: 10px;
    font-size: 21px;
}

.detail-card p {
    color: #d5d5d5;
}

.main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
}

.gallery-box,
.tickets-box {
    min-height: 320px;
    border-radius: 26px;
    padding: 40px;
    background:
        linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .75)),
        url("../../images/bannners.png") center/cover no-repeat;
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 0 30px rgba(255, 46, 189, .18);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-box h2,
.tickets-box h2 {
    font-size: 34px;
    color: #ffcf7b;
    margin-bottom: 15px;
}

.gallery-box p,
.tickets-box p {
    color: #ddd;
    margin-bottom: 12px;
    font-size: 17px;
}

.tickets-box b {
    color: #ff2ebd;
}

.gallery-box a,
.tickets-box a {
    width: max-content;
    margin-top: 20px;
    padding: 15px 35px;
    border-radius: 14px;
    border: 1px solid #ff2ebd;
    color: white;
    text-decoration: none;
    font-weight: 900;
    background: rgba(0, 0, 0, .35);
}

.gallery-box a:hover,
.tickets-box a:hover {
    background: #ff2ebd;
}

.quick-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.quick-menu a {
    min-height: 230px;
    padding: 40px;
    text-align: center;
    text-decoration: none;
    color: white;
    border-radius: 25px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(15px);
    transition: .3s;
}

.quick-menu a:hover {
    transform: translateY(-10px);
    border-color: #ff2ebd;
    box-shadow: 0 0 35px rgba(255, 46, 189, .45);
}

.quick-menu i {
    color: #ff2ebd;
    font-size: 50px;
    margin-bottom: 20px;
}

.quick-menu h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.quick-menu p {
    color: #ccc;
}

.sponsors {
    margin: 70px 0 60px;
}

.sponsors-line {
    overflow: hidden;
    padding: 25px 0;
    border-radius: 18px;
    background: rgba(0, 0, 0, .45);
    border: 1px solid rgba(255, 46, 189, .35);
}

.sponsors-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: sponsorsMove 20s linear infinite;
}

.sponsors-track span {
    color: #ffcf7b;
    font-size: 24px;
    font-weight: 900;
    white-space: nowrap;
}

@keyframes sponsorsMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.footer {
    width: 100%;
    padding: 28px 20px;
    text-align: center;
    background: rgba(0, 0, 0, .45);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer p {
    color: #a8a8a8;
    font-size: 15px;
}

@media(max-width:1024px) {
    .navbar {
        padding: 20px 4%;
        height: auto;
        flex-wrap: wrap;
        gap: 20px;
    }

    nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 40px;
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .details-grid,
    .quick-menu {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:700px) {
    .navbar {
        flex-direction: column;
        padding: 18px 20px;
    }

    nav {
        width: 100%;
        justify-content: center;
        gap: 14px;
    }

    nav a {
        font-size: 13px;
    }

    .hero {
        min-height: 330px;
        padding: 30px 22px;
        border-radius: 22px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .hero-content span {
        font-size: 12px;
        letter-spacing: 4px;
    }

    .section-title {
        font-size: 28px;
    }

    .details-grid,
    .quick-menu,
    .main-grid {
        grid-template-columns: 1fr;
    }

    .gallery-box,
    .tickets-box {
        padding: 28px 22px;
    }

    .gallery-box h2,
    .tickets-box h2 {
        font-size: 28px;
    }

    .gallery-box a,
    .tickets-box a {
        width: 100%;
        text-align: center;
    }

    .footer {
        padding: 22px 15px;
    }

    .footer p {
        font-size: 13px;
    }
}
.coming-soon {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);

    background: rgba(20, 10, 35, 0.95);
    border: 1px solid rgba(180, 80, 255, 0.7);
    color: white;

    padding: 14px 28px;
    border-radius: 12px;

    font-size: 16px;
    font-weight: 600;

    opacity: 0;
    pointer-events: none;
    z-index: 99999;

    transition: all 0.3s ease;
}

.coming-soon.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}