:root {
    --primary: #099A4A;
    --secondary: #050E25;    
    --secondary-light: rgba(5, 14, 37, 0.5);
    --yellow: #FFFC00;
    --white: #FFFFFF;
    --black: #333333;
    --default-font: "Inter", sans-serif;    
    --script-font: "Dancing Script", cursive;
    --container-width: 1140px;
    --padding: 1rem;
}

/* general styles */
.d-flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.gap-1 {
    gap: 0.3rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 1rem;
}

.gap-4 {
    gap: 2rem;
}

.gap-5 {
    gap: 3rem;
}

a.btn {
    text-decoration: none;
    background-color: var(--yellow);
    padding: 0.7rem 3rem;
    text-transform: uppercase;
    color: var(--primary);
    font-family: var(--default-font);
    font-size: 1rem;
    font-weight: 800;
    border-radius: 12px;
    transition: all 0.3s ease;
}

a.btn:hover {
    background-color: var(--primary);
    color: var(--yellow);
}

a.btn.white {
    background-color: var(--white);
    color: var(--primary);
    transition: all 0.3s ease;
}

a.btn.white:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* navbar ticket dropdown */
.ticket-dropdown {
    position: relative;
    display: inline-block;
}

.ticket-dropdown .dropdown-toggle::after {
    content: "▼";
    margin-left: 0.5rem;
    font-size: 0.8em;
}

.ticket-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.7rem);
    right: 0;
    min-width: 190px;
    background: var(--white);
    border-radius: 12px;
    padding: 0.4rem 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
    z-index: 2000;
}

.ticket-dropdown:hover .dropdown-menu,
.ticket-dropdown:focus-within .dropdown-menu {
    display: block;
}

.ticket-dropdown .dropdown-menu a {
    display: block;
    padding: 0.7rem 1rem;
    text-decoration: none;
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.ticket-dropdown .dropdown-menu a:hover,
.ticket-dropdown .dropdown-menu a:focus-visible {
    background: rgba(9, 154, 74, 0.1);
    outline: none;
}

.rounded {
    border-radius: 10px;
}

body {
    font-family: var(--default-font);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;    
    scroll-behavior: smooth;
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* container styles */
.container {
    width: min(var(--container-width), 95%);
    margin: 0 auto;
    box-sizing: border-box;
}
/* navbar styles */
.navbar {
    background-color: var(--secondary-light);
    height: auto;
    padding: 0.5rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

#navbar_mobile {
    display: none;
}

/* navbar logos styles */
.navbar .logos {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

/* navbar logos images styles */
.navbar .logos img {
    width: auto;
    height: 45px;
    object-fit: contain;
}

.navbar .menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.navbar .menu ul li a {
    text-decoration: none;
    color: var(--white);
    font-family: var(--default-font);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* hero styles */
.hero {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-mobile {
    display: none;
}

.hero-content {
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, -15%);
    text-align: center;
    width: min(1100px, 92vw);
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--yellow);
    margin: 0;
    font-family: var(--script-font);
    text-shadow: 0px 3px 6px #000000D5;
}

.hero-content p {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0px 3px 6px #000000D5;
    margin: 0;
}

/* hero event blocks (Melbourne / Sydney) */
.hero-content .events {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2.5rem;
}

.hero-content .events .event {
    flex: 1;
    text-align: center;
}

.hero-content .events .date {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 0.25rem;
}

.hero-content .events .location {
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
}

.hero-content .events .buttons {
    display: flex;
    justify-content: center;
}

.hero-content .events .buttons a.btn {
    display: inline-block;
    padding: 1.25rem 3.5rem;
    font-size: 1.2rem;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

/* about show styles */
.about_show {
    background-color: var(--secondary);
    padding: 5rem 0;
}

/* gallery styles */
.gallery {
    background: var(--white);
    padding: 0;
}

.gallery-section {
    width: 100%;
    margin: 0;
}

.gallery-grid {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    box-sizing: border-box;
    background: var(--white);
}

.gallery-item {
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 3px;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.25s ease, filter 0.25s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
    transform: scale(1.04);
    filter: brightness(1.05);
}

/* lightbox styles */
.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 5000;
}

.lightbox.is-open {
    display: grid;
    place-items: center;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.lightbox-content {
    position: relative;
    z-index: 1;
    width: min(1100px, 92vw);
    height: min(720px, 86vh);
    display: grid;
    align-items: center;
    justify-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.45);
    color: var(--white);
    font-size: 28px;
    line-height: 44px;
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.5);
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: -40px;
}

.lightbox-next {
    right: -40px;
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.about_show .about_show_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;    
}

.about_show .about_show_text h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--white);
    text-align: center;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
}

.about_show .about_show_content {
    width: 70%;
    margin: 0 auto;
}

.about_show .about_show_content p {
    font-family: var(--poppins-font);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.5;
    text-align: center;
}

.about_show .about_show_content p:last-of-type {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.15rem;
    margin-top: 2rem;
}

.about_show .event_details {
    margin: 1.8rem auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.about_show .event_details > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
}

.about_show .event_details span {
    font-size: 1rem;
    line-height: 1;
}

.about_show .event_details strong {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
}

.about_show .about_show_button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.about_show .about_show_button a {
    padding: 1.5rem 3rem;
    text-align: center;
    font-size: 1.2rem;
    min-width: 260px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

/* activities styles */
.activities {
    background-color: var(--yellow);
    padding: 5rem 0;
}

.activities .activities_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.activities .activities_text span {
    font-size: 1.7rem;
    color: var(--black);
    font-weight: 800;
    text-transform: uppercase;
}

.activities .activities_text h1 {
    width: 75%;
    margin: 0 auto;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0;
}

.activities .activities_content {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 1rem;
}

.activities .activities_content .activity {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 1.5rem;
    flex-basis: calc(50% - 2.8rem);
    background-color: var(--white);
    padding: 1rem;
    border-radius: 12px;
    border: 2px solid var(--primary);
}

.activities .activities_content .activity .activity_icon {
    width: 60px;
    min-width: 60px;
}

.activities .activities_content .activity .activity_icon img {
    width: 100%;
    height: auto;
}

.activities .activities_content .activity .activity_content h2 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--black);
    margin: 0;
}

.activities .activities_content .activity .activity_content p {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--black);
    margin: 0.5rem 0 0;
}

.activities .activities_content .last_activity {
    flex-basis: calc(100% - 1.5rem);
}

.activities .activities_content .activity h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--black);
    margin: 0;
}

.activities .activities_content .activity p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--black);
}

.activities .activities_button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.activities .activities_button a {
    background-color: var(--primary);
    color: var(--yellow);
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.activities .activities_button a:hover {
    background-color: var(--secondary);
    color: var(--yellow);
}

/* exclusive showbag styles */
.exclusive_showbag {
    padding: 5rem 0;
}

.exclusive_showbag span {
    display: block;
    width: 100%;
    font-size: 1.7rem;
    color: var(--black);
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
}

.exclusive_showbag h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0;
}

.exclusive_showbag .showbag {
    margin-top: 2rem;
}

.exclusive_showbag .showbag div {
    flex-basis: 60%;
}

.exclusive_showbag .showbag .list_items {
    flex-basis: 36%;
}

.exclusive_showbag .showbag .list_items .item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.exclusive_showbag .showbag .list_items .item i {
    font-size: 1.2rem;
    color: var(--primary);
}

.exclusive_showbag .showbag .list_items .items-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.exclusive_showbag .showbag .list_items p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--black);
    margin: 0.3rem;
}

.exclusive_showbag .showbag .showbag_image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* why attend styles */
.why_attend {
    background-color: var(--primary);
    padding: 5rem 0;
}

.why_attend h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 2rem;
    text-align: center;
}

.why_attend p {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--white);
    margin: 0;
}

.why_attend ul {
    margin-bottom: 2rem;
}

.why_attend ul li {
    font-weight: 300;
    font-size: 1.1rem;
    color: var(--white);
}

/* footer styles */
.footer {
    background: url(images/footer_new.jpg) no-repeat center center;
    background-size: 100%;
    background-position: center;
    padding-top: 5rem;
    padding-bottom: 2rem;
    text-align: center;
    height: 100vh;
    width: 100%;
    box-sizing: border-box;
}

.footer .footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    color: var(--white);
}

.footer .footer-title {
    margin: 0;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-shadow: 0px 3px 6px #000000D5;
}

.footer .footer-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
    margin-top: 0.3rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.footer .footer-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer .footer-feature-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
}

.footer .footer-feature-icon img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer .footer-feature-text {
    text-align: left;
}

.footer .footer-feature-value {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
    color: var(--white);
    text-shadow: 0px 3px 6px #000000D5;
}

.footer .footer-feature-label {
    font-size: 1rem;
    font-weight: 800;
    color: var(--yellow);
    letter-spacing: 0.02em;
    margin-top: 0.1rem;
}

.footer .footer-logo {
    width: min(450px, 80vw);
    height: auto;
}

.footer .perks {
    width: min(980px, 92vw);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.25;
    text-shadow: 0px 3px 6px #000000D5;
}

.terms {
    font-size: 0.7rem;
    margin-bottom: 0;
    font-weight: 400;
}

.terms a {
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
}

.footer .footer-content .buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.footer .footer-content .buttons a {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;    
}

.contact {
    font-size: 1rem;
    font-weight: 400;
    color: var(--white);
    background-color: #000001;
    padding: 2rem;
    text-align: center;
}

.contact .email a {
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
}

.contact .terms {
    margin-bottom: 1.5rem;
}

.contact .socials {
    margin-top: 1.5rem;
}

.contact .socials a {
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0.3rem;
    transition: all 0.3s ease;
}

.contact .socials a:hover {
    color: var(--yellow);
}

/* responsive styles */
@media (min-width: 768px) and (max-width: 1024px) {
    #navbar {
        display: none;
    }
    #navbar_mobile {
        display: block;
    }
    #navbar_mobile .bar {
        width: auto;
        color: #fff;
        cursor: pointer;
        margin-right: 0.5rem;
    }
    #navbar_mobile .menu {
        position: absolute;
        width: 100%;
        background: var(--secondary);
        left: 0;
        box-sizing: border-box;
    }
    #navbar_mobile .menu ul {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 1rem;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding-left: 0;
    }
    #navbar_mobile .menu .get_ticket_button {
        padding: 0 1rem;
        margin: 1rem 0;
        width: calc(100% - 2rem);
        text-align: center;
    }
    #navbar_mobile .menu .get_ticket_button a {
        display: block;
    }
}

@media (max-width: 768px) {
    #navbar {
        display: none;
    }
    #navbar_mobile {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    #navbar_mobile .logos {
        padding-inline: 0;
    }
    #navbar_mobile .bar {
        width: auto;
        color: #fff;
        cursor: pointer;
        margin-right: 0.5rem;
    }
    #navbar_mobile .menu {
        width: 100%;
        left: 0;
        right: 0;
        box-sizing: border-box;
    }
    #navbar_mobile .menu ul {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 1rem;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding-left: 0;
    }
    #navbar_mobile .menu .get_ticket_button {
        padding: 0 1rem;
        margin: 1rem 0;
        width: calc(100% - 2rem);
        text-align: center;
    }
    #navbar_mobile .menu .get_ticket_button a {
        display: block;
    }
    .hero {
        width: 100%;
        height: auto;
        box-sizing: border-box;
    }
    .hero img {
        object-fit: cover;
    }
    .hero-image-mobile {
        display: block;
    }
    .hero-image {
        display: none;
    }
    .hero-content { 
        top: auto;
        width: 100%;
        bottom: 0;
    }
    .hero-content h1{
        font-size: 3rem;
    }
    .hero-content p{
        font-size: 1.2rem;
    }
    .hero-content .events {
        flex-direction: column;
        gap: 1.6rem;
        margin-top: 1.5rem;
        align-items: center;
    }
    .hero-content .events .date {
        font-size: 1.4rem;
    }
    .hero-content .events .location {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    .hero-content .events .buttons a.btn {
        min-width: 220px;
        padding: 1.1rem 2.2rem;
        font-size: 1.05rem;
    }
    .hero-content .buttons {
        flex-direction: column;
    }
    .hero-content .buttons a {
        flex: 1; 
        text-align: center;
        min-width: 200px;
    }
    .about_show .about_show_content {
        width: 100%;
    }
    .about_show .event_details strong {
        font-size: 1.05rem;
    }
    .about_show .about_show_button {
        gap: 1rem;
    }
    .about_show .about_show_button a {
        min-width: 220px;
        padding: 1.2rem 2.2rem;
        font-size: 1.05rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .lightbox-content {
        width: min(96vw, 1100px);
        height: auto;
    }
    .lightbox-prev {
        left: 6px;
        background: rgba(255, 255, 255, 0.90);
        color: var(--black);
    }
    .lightbox-next {
        right: 6px;
        background: rgba(255, 255, 255, 0.90);
        color: var(--black);
    }
    .lightbox-close {
        right: -10px;
        top: -20px;
        background: rgba(255, 255, 255, 0.90);
        color: var(--black);
    }
    .activities .activities_text h1 {
        width: 100%;
    }
    .about_show,
    .activities,
    .exclusive_showbag,
    .why_attend,
    .footer {
        padding-inline: 1rem; /* Change from padding: 2rem */
        padding-block: 2rem;
        width: 100%;
        box-sizing: border-box;
    }
    .about_show .about_show_text span,
    .activities .activities_text span,
    .why_attend span {
        font-size: 1rem;
    }
    .about_show .about_show_text h1,
    .activities .activities_text h1,
    .exclusive_showbag h1,
    .why_attend h1 {
        font-size: 2rem;
    }
    .activities .activities_content .activity h2 {
        line-height: 1;
    }
    .activities .activities_content .activity {
        flex-basis: 100%;
    }
    .exclusive_showbag .showbag {
        flex-direction: column;
    }
    .exclusive_showbag .showbag div,
    .exclusive_showbag .showbag .list_items,
    .when_where .tickets .ticket {
        flex-basis: 100%;
    }
    .exclusive_showbag .showbag h2 {
        font-size: 1.5rem;
    }
    .footer {
        height: auto;
        background-size: cover;
    }
    .footer .footer-title {
        font-size: 1.6rem;
    }
    .footer .footer-features {
        gap: 1.25rem;
    }
    .footer .footer-feature-icon,
    .footer .footer-feature-icon img {
        width: 40px;
        height: 40px;
    }
    .footer .footer-feature-value {
        font-size: 1.8rem;
    }
    .footer .perks {
        font-size: 1.1rem;
    }
    .footer .footer-content .buttons {
        flex-direction: column;
    }
    .footer .footer-content .buttons a {
        flex: 1;
        text-align: center;
        min-width: 200px;
    }
}

@media (min-width: 400px) and (max-width: 480px) {
    .navbar .logos img {
        height: 35px;
    }
}

@media (max-width: 400px) {
    .navbar .logos img {
        height: 30px;
    }
}