/*@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');*/

@font-face {
    font-family: 'Orbitron';
    src: url('font/orbitron/Orbitron-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Orbitron';
    src: url('font/orbitron/Orbitron-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Orbitron',sans-serif;
}

body{
    background:#000;
    color:#fff;
    overflow-x:hidden;
}

nav{
    position:fixed;
    top:0;width:100%;
    display:flex;
    justify-content:space-between;
    padding:20px 40px;
    background:rgba(0,0,0,0.6);
    backdrop-filter:blur(10px);
    z-index:11;
    align-items: center;
}

nav ul{
    display:flex;gap:20px;list-style:none;
}

nav a{
    color:#fff;text-decoration:none;
}

.logo{
    width: 54px;
    height: 54px;
}

.hero{
    height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:radial-gradient(circle at center,#1a0033,#000);
    position:relative;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background:url('img/background-img1.jpg') no-repeat center/cover;
    animation:zoom 20s infinite alternate;
    opacity:0.25;
}

@keyframes zoom{
from{transform:scale(1);}to{transform:scale(1.2);} }

.hero h1{
    font-size:4rem;
    background:linear-gradient(119deg, #ff5500, #2b6a03);
    -webkit-background-clip:text;
    color:transparent;
}

.hero p{
    font-size:1.2rem;
}

.hero .btn{
    margin-top:92px;
}

.btn{
    padding:15px 30px;
    border:none;
    background:linear-gradient(119deg, #ff5500, #2b6a03);
    color:#fff;
    cursor:pointer;
    font-size:1rem;
    border-radius:30px;
    transition:0.3s;
    z-index: 10;
    text-decoration: none;
}

.btn:hover{
    transform:scale(1.1);
}

.section{
    padding:100px 20px;
    text-align:center;
    height: 100vh;
}

.lineup{
    display:flex;
    gap:20px;
    margin-top:40px;
    width: 72%;
}

#lineup {
    background: radial-gradient(circle at center, #1a0033, #000);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position:relative;
    overflow:hidden;
    height: 100vh;
}

#lineup::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(img/background-img.jpeg) no-repeat center / cover;
    animation: zoom 20s infinite alternate;
    opacity: 0.25;
}

#lineup h2{
    margin-top: 124px;
}

#tickets {
    background: radial-gradient(circle at center, #1a0033, #000);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position:relative;
    overflow:hidden;
    height: 100vh;
}

#tickets::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(img/background-img2.jpeg) no-repeat center / cover;
    animation: zoom 20s infinite alternate;
    opacity: 0.25;
}

#tickets h2{
    margin-top: 124px;
}

.card{
    padding:40px;
    border-radius:15px;
    background:linear-gradient(136deg, #111111, #1a1a1a9c);
    transition:0.3s;
    z-index: 10;
    cursor: pointer;
    width: 243px;
    height: 86px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card:hover{
    transform:translateY(-10px) scale(1.05);
    box-shadow:0 0 40px rgba(133, 105, 2, 0.6);
}

.countdown{
    display:flex;
    justify-content:center;
    gap:20px;
    font-size:2rem;
    margin-top:30px;
}

#tickets p{
    margin-bottom: 36px;
    margin-top: 18px;
}

footer{
    padding:30px;
    text-align:center;
    background:#050505;
    font-size: xx-small;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    margin:0 10px;
}

.footer-links {
    margin-bottom: 10px;
}

.content {
    display :flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    gap: 32px;
}

@media (max-width:1029px){
    .lineup{
        justify-content: center;
        align-items: center;
        flex-direction:column;
        width:100%;
    }

    .countdown{
        font-size: x-large;
    }

    .hero {
        margin-top: 66px;
    }

    .hero h1 {
        margin-bottom: 24px;
        font-size: xx-large;
    }

    nav h2 {
        display: none;
    }

    ul {
        font-size: x-small;
    }
}

@media screen and (orientation: landscape) {
    nav {
        height: 20%;
    }

    .hero {
        margin-top: 35px;
    }

    .hero .btn {
        margin-top: 32px;
    }

    .lineup {
        flex-direction: unset;
    }

    #lineup h2 {
        margin-top: 0;
    }
}

@media screen and (orientation: portrait) {
    nav {
        height: 20%;
    }

    .hero {
        margin-top: 35px;
        padding: 1%;
    }

    .hero .btn {
        margin-top: 32px;
    }

   nav h2 {
    display: none;
   }
}
