@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&family=Tomorrow:wght@400&display=swap');
@font-face {
    font-family: 'Dinasti';
    src: url('Dinasti-Bold.ttf');
    font-weight: bold;
}
@font-face {
    font-family: 'Telegrafico';
    src: url('Telegrafico.ttf');
}

:root {
    --nav-gradient: linear-gradient(90deg, #413ecf, #2a1054);
    --text-gradient: linear-gradient(135deg, #010049, #2e0a60);
    --white-glow: 0 0 4px white, 0 0 10px #bbb;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Tomorrow', sans-serif;
    background-color: #010049;
    color: white;
    scroll-behavior: smooth;
}
body {
    /* Remove excess margin/padding */
}

header {
    background: var(--nav-gradient);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    min-height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
}

.logo h1 {
    font-family: 'Dinasti', sans-serif;
    font-size: 2.2rem;
    margin: 0;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.1em;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    font-family: 'Telegrafico', sans-serif;
    text-transform: uppercase;
}

nav ul li a:hover {
    text-shadow: var(--white-glow);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    background: white;
    height: 3px;
    width: 25px;
    margin: 4px 0;
    border-radius: 2px;
}

.hero, .about, .schedule, .faq, .sponsors {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 120px 0 100px 0;
}
/* Remove weird spacing */
section {
    margin: 0 !important;
    padding: 120px 0 100px 0;
    box-sizing: border-box;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
}

.hero {
    justify-content: flex-end;
    background: url('images/BG_1.png') center/contain no-repeat;
    text-align: right;
    padding-right: 10vw;
    padding-left: 10vw;
    min-height: 100vh;
}

.hero-content {
    background: var(--text-gradient);
    padding: 40px 35px 40px 35px;
    border: 5px solid white;
    border-radius: 20px;
    box-shadow: var(--white-glow);
    max-width: 540px;
    margin-left: auto;
    margin-right: 0;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hero-content h1 {
    font-family: 'Dinasti', sans-serif;
    font-size: 4.2rem;
    text-shadow: var(--white-glow);
    margin-bottom: 0.2em;
    text-transform: uppercase;
    font-weight: bold;
}
.hero-content p {
    font-size: 2.2rem;
    font-family: 'Telegrafico',sans-serif;
    text-align: right;
    margin-top: 0;
    margin-bottom: 0.8em;
    letter-spacing: 0.08em;
    color: #fff;
}

#countdown, .countdown {
    font-family: 'Orbitron', 'sans-serif';
    font-size: 2.3rem;
    margin: 10px 0 10px 0;
    color: white;
    letter-spacing: 0.06em;
}

/* Remove bullet icons, keep text */
.hero-content ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    padding-left: 0;
    text-align: center;
    gap: 5px;
    list-style-type: none;
}
.hero-content ul li {
    width: 100%;
    text-align: center;
    font-size: 1.15rem;
    font-family: 'Tomorrow', sans-serif;
}

/* About left-align */
.about {
    background: url('images/BG_2.png') left/contain no-repeat;
    justify-content: flex-start;
    padding-right: 5vw;
    padding-left: 10vw;
}
.about-content {
    background: var(--text-gradient);
    border: 5px solid white;
    border-radius: 20px;
    padding: 30px 42px 30px 38px;
    box-shadow: var(--white-glow);
    max-width: 616px;
    min-width: 325px;
    text-align: left;
    margin-left: 0;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.about-content h3 {
    font-family: 'Telegrafico', sans-serif;
    font-size: 2.7rem;
    font-weight: bold;
    text-shadow: var(--white-glow);
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 13px;
    letter-spacing: 3px;
    border-bottom: none;
    border-radius: 9px;
}
.about-content p {
    font-size: 1.2rem;
    font-family: 'Tomorrow', sans-serif;
    text-align: left;
    line-height: 1.8;
    margin-bottom: 1.6em;
    margin-top: 0;
}
.about button {
    margin-top: 12px;
    background: white;
    color: #010049;
    border: none;
    padding: 10px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    font-family: 'Tomorrow', sans-serif;
    transition: 0.3s;
}
.about button:hover {
    box-shadow: var(--white-glow);
    color: #2a1054;
}

/* Schedule right-align */
.schedule {
    background: url('images/BG_3.PNG') right/contain no-repeat;
    justify-content: flex-end;
    padding-left: 5vw;
    padding-right: 10vw;
}
.schedule-content {
    background: var(--text-gradient);
    border: 5px solid white;
    border-radius: 20px;
    padding: 30px 42px 30px 38px;
    box-shadow: var(--white-glow);
    max-width: 600px;
    text-align: right;
    margin-left: auto;
    margin-right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.schedule-content h3 {
    font-family: 'Telegrafico', sans-serif;
    font-size: 2.6rem;
    font-weight: bold;
    text-shadow: var(--white-glow);
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 14px;
    letter-spacing: 2.5px;
    border-bottom: none;
    border-radius: 9px;
}
.schedule-content p {
    font-size: 1.15rem;
    font-family: 'Tomorrow', sans-serif;
    text-align: right;
    line-height: 1.7;
    margin-bottom: 1.1em;
    margin-top: 0;
}

/* FAQ Styles */
.faq {
    background: url('images/BG_4.png') center/contain no-repeat;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
}
.faq h3 {
    font-family: 'Telegrafico', sans-serif;
    font-size: 2.7rem;
    font-weight: bold;
    text-shadow: var(--white-glow);
    text-transform: uppercase;
    margin-bottom: 30px;
    border-bottom: none;
    letter-spacing: 3px;
    padding-bottom: 0;
}
.faq .accordion, .faq .accordion-section {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: none !important;
}
.accordion {
    margin-bottom: 6px !important;
    transition: all 0.3s ease;
    border-bottom: none !important;
}
.accordion-item,
.accordion-content {
    background: var(--text-gradient);
    border: 5px solid white;
    border-radius: 15px;
    box-shadow: var(--white-glow);
    margin: 13px 0;
    padding: 5px 16px;
    text-align: left;
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
    position: relative;
    border-bottom: none !important;
}
.accordion-header {
    padding: 17px 6px 15px 12px;
    cursor: pointer;
    font-size: 1.225rem;
    font-family: 'Telegrafico', sans-serif;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    border-bottom: none !important;
    letter-spacing: 1px;
}
.accordion-header::after {
    content: '\25BC';
    font-size: 1rem;
    transition: transform 0.3s;
    margin-left: 12px;
}
.accordion-item.active .accordion-header::after {
    transform: rotate(180deg);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    background-color: rgba(0, 0, 0, 0.22);
    padding: 0 17px;
    border-bottom: none !important;
}
/* removed line under each question (border-bottom) */
.accordion-header, .accordion-content {
    border-bottom: none !important;
}
.accordion-content p {
    margin: 15px 0;
    font-size: 1.02rem;
    line-height: 1.6;
    font-family: 'Tomorrow', sans-serif;
}
.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 12px 17px 12px 17px;
    border-bottom: none !important;
}
.section-title {
    text-transform: uppercase;
    font-family: 'Telegrafico', sans-serif;
    font-weight: bold;
    border-bottom: none !important;
    margin-top: 18px;
    font-size: 1.23rem;
    letter-spacing: 1.6px;
    color: #fff;
    margin-bottom: 0;
}

.sponsors {
    background: url('images/BG_5.png') center/contain no-repeat;
    flex-direction: column;
    text-align: center;
    min-height: 50vh;
    padding-top: 5vh;
    padding-bottom: 10vh;
}
.sponsors h3 {
    font-family: 'Telegrafico', sans-serif;
    font-size: 2.3rem;
    font-weight: bold;
    text-shadow: var(--white-glow);
    text-transform: uppercase;
    border-bottom: none;
    margin-bottom: 31px;
    padding-bottom: 0;
    letter-spacing: 2.5px;
}
.sponsor-logos img {
    height: 70px;
    margin: 17px;
    filter: drop-shadow(0 0 7px white);
    max-width: 36vw;
    object-fit: contain;
}

footer {
    background: var(--nav-gradient);
    text-align: center;
    padding: 20px 0;
    width: 100vw;
}
.footer-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.footer-icons i {
    margin: 0 13px;
    filter: drop-shadow(0 0 7px white);
    cursor: pointer;
    transition: color 0.2s;
}
.footer-icons i:hover {
    color: #ffc107;
}

/* Responsive: Mobile Layout */
@media (max-width: 900px) {
    .hero, .about, .schedule, .faq, .sponsors, section {
    padding-left: 5vw;
    padding-right: 5vw;
    }
}

@media (max-width: 768px) {
    header {
    padding: 12px 6vw;
    flex-direction: row;
    justify-content: space-between;
    min-height: 68px;
    }
    .logo {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    }
    .logo h1 {
    font-size: 1.7rem;
    }
    .menu-toggle {
    display: flex;
    position: static;
    margin-left: 0;
    margin-right: 0;
    }
    nav {
    width: 100vw;
    }
    nav ul {
    display: none;
    flex-direction: column;
    align-items: center;
    }
    nav.active ul {
    display: flex;
    position: absolute;
    top: 60px;
    right: 10px;
    left: auto;
    background: var(--nav-gradient);
    width: 70vw;
    border-radius: 10px;
    flex-direction: column;
    align-items: flex-end;
    box-shadow: var(--white-glow);
    padding: 13px 0 12px 0;
    z-index: 1001;
    }
    .hero {
    padding: 130px 2vw 0 2vw;
    min-height: 500px;
    justify-content: flex-end;
    align-items: flex-end;
    }
    .hero-content {
    text-align: center;
    margin: auto;
    align-items: center;
    }
    .about, .schedule {
    padding: 80px 2vw 60px 2vw;
    }
    .about-content, .schedule-content {
    margin: auto !important;
    align-items: center;
    text-align: center;
    }
    /* Logo and hamburger: left/right mobile header */
    .logo {
    order: 1;
    }
    .menu-toggle {
    order: 2;
    margin-left: auto;
    margin-right: 0;
    }
}
@media (max-width: 450px) {
    .hero-content h1 {
    font-size: 2.3rem;
    }
    .about-content h3, .schedule-content h3, .faq h3, .sponsors h3 {
    font-size: 1.4rem;
    }
    .logo h1 {
    font-size: 1.07rem;
    }
}
