/* RESET & BASE */
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;font-family:"Space Grotesk",sans-serif}
body{
    background:#000;
    color:#fff;
    overflow-x:hidden;
    min-height:100vh;
    display:flex;
    flex-direction:column;
}

/* PRELOADER */
#preloader{
    position:fixed;
    inset:0;
    background:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:9999;
    transition:opacity .8s;
}
#preloader img{
    width:120px;
    animation:pulse 2s infinite;
}
@keyframes pulse{
    0%,100%{opacity:1}
    50%{opacity:.4}
}

/* CONTENT SHOW */
#content{opacity:0;transition:opacity 1s}
#content.show{opacity:1}

/* HEADER */
header{
    position:fixed;
    top:0;left:0;
    width:100%;
    z-index:1000;
    background:rgba(0,0,0,.85);
    backdrop-filter:blur(20px);
    border-bottom:1px solid rgba(255,0,0,.2);
}
.nav{
    max-width:1400px;
    margin:auto;
    padding:1.5rem 2rem;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.nav img{height:50px}
.nav-links{
    display:flex;
    gap:3rem;
    align-items:center;
}
.nav-links a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}
.nav-links a:hover{color:#ff3333}

.menu-toggle{
    display:none;
    font-size:2rem;
    background:none;
    border:none;
    color:white;
    cursor:pointer;
}

/* HERO */
.hero{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    position:relative;
}
.hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:radial-gradient(circle,#ff000020,#000 70%);
}
.hero h1{
    font-size:6rem;
    font-weight:900;
}
.gradient-text{
    background:linear-gradient(90deg,#ff0000,#ff5555);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
.hero p{
    margin-top:1rem;
    font-size:1.4rem;
    opacity:.8;
    max-width:600px;
    margin-left:auto;
    margin-right:auto;
}
.btn{
    margin-top:2rem;
    display:inline-block;
    padding:1rem 3rem;
    background:#ff0000;
    color:#000;
    border-radius:999px;
    font-weight:900;
    text-decoration:none;
    transition:.3s;
}
.btn:hover{transform:scale(1.08)}

/* TICKER */
.ticker{
    background:#fff;
    color:#000;
    font-weight:900;
    padding:1rem 0;
    overflow:hidden;
}
.ticker-inner{
    display:inline-block;
    white-space:nowrap;
    animation:marquee 15s linear infinite;
}
.ticker-inner span{margin-right:5rem}
@keyframes marquee{
    from{transform:translateX(0)}
    to{transform:translateX(-50%)}
}

/* EVENTS */
.section-title{font-size:4rem;text-align:center;margin:4rem 0}
.gradient-title{
    background:linear-gradient(90deg,#ff0000,#ff4444);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.tour-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    gap:2rem;
    padding:2rem;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
}
.event-card{
    background:#111;
    padding:2rem;
    border-radius:20px;
    border:1px solid #ff000040;
    transition:.3s;
}
.event-card:hover{
    transform:translateY(-8px);
    border-color:#ff0000;
}
.event-date{
    color:#ff3333;
    font-size:2rem;
    font-weight:900;
}
.no-events{
    text-align:center;
    margin:2rem 0;
    opacity:.6;
    display:none;
}

/* ABOUT */
.about{
    max-width:1200px;
    margin:6rem auto;
    padding:2rem;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:3rem;
    align-items:center;
}
.about img{
    width:100%;
    border-radius:30px;
    box-shadow:0 0 40px #ff000050;
}
.about-text p{
    font-size:1.2rem;
    line-height:1.7;
    opacity:.85;
}

/* CONTACT */
.contact{
    max-width:700px;
    margin:6rem auto;
    padding:2rem;
}
.contact form{
    display:grid;
    gap:1.5rem;
}
.contact input,
.contact textarea{
    padding:1rem;
    border-radius:12px;
    background:#111;
    border:1px solid #ff000040;
    color:white;
}
.contact button{
    background:#ff0000;
    border:none;
    padding:1rem 2rem;
    border-radius:999px;
    color:black;
    font-weight:900;
    cursor:pointer;
}
.contact button:hover{
    transform:scale(1.05);
}

/* FOOTER */
footer{
    background:#111;
    padding:4rem 2rem;
    text-align:center;
}
footer img{height:40px;margin-bottom:1rem}
.socials{
    display:flex;
    justify-content:center;
    gap:2rem;
    margin:1.5rem 0;
}
.socials a{
    color:#ccc;
    text-decoration:none;
    transition:.3s;
}
.socials a:hover{color:#ff3333}

/* MOBILE */
@media(max-width:768px){
    .menu-toggle{display:block}
    .nav-links{
        position:fixed;
        top:80px;left:0;
        width:100%;
        background:#000;
        flex-direction:column;
        padding:2rem;
        display:none;
    }
    .nav-links.show{display:flex}
    .hero h1{font-size:4rem}
    .about{grid-template-columns:1fr}
}
