* {
    margin: 0px;
    padding: 0px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0px;
}

header {
    background-color: #C87D29;
    width: 100%;
    height: 100px;
}

h3 {
    text-align: center;
    color: white;
    font-family: "Lilita One", sans-serif;
    font-size: 2.5rem;
    font-weight: 200;
}

#mainheader {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 100px;
    background-color: #C87D29;
    box-sizing: border-box;
}

#urbanpalette img {
    height: 60px;
    width: auto;
}

#mainheader h3 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    font-family: "Lilita One", sans-serif;
    color: white;
    font-weight: 400;
    font-size: 2rem;
    text-align: center;
}

#links {
    display: flex;
    gap: 32px;
}

#links a {
    color: white;
    text-decoration: none;
    font-family: "Lilita One", sans-serif;
    font-size: 1.2rem;
}

.lilita-one-regular {
    font-family: "Lilita One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.afacad-regular {
    font-family: "Afacad", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

#mainlogo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(8px, 2vh, 32px) 16px 32px;
    justify-content: center;
    box-sizing: border-box;
    gap: clamp(8px, 3vh, 32px);
    background-color: #6B1E12;
    overflow: hidden;
}

#logowhite img {
    width: min(600px, 90%);
    max-height: 40vh;
    object-fit: contain;
    display: block;
}

p {
    font-family: "Lilita One", sans-serif;
    color: white;
    font-size: clamp(1rem, 4vw, 1.5rem);
    max-width: 600px;
    vertical-align: bottom;
    margin-top: auto;
}

#logocenter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(8px, 2vh, 48px);
    flex: 1;
    justify-content: center;
}

#date {
    font-family: "Lilita One", sans-serif;
    color: white;
    font-size: clamp(1rem, 4vw, 2rem);
}

#logowhite {
    width: min(600px, 90%);
    height: auto;
}

#moreinfo {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    background-color: #949B46;
    width: 100%;
    padding: 72px 48px;
    align-items: center;
    box-sizing: border-box;
}

#sloganfix {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
}

#bigtitlehold {
    background-color: #949B46;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

#bigtitlehold img {
    width: 100%;
    height: auto;
    display: block;
}

#details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 32px;
    background-color: #949B46;
    gap: 24px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

#detailyap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: #949B46;
    width: 100%;
}

.detailtxt {
    background-color: #949B46;
    font-size: clamp(0.85rem, 3vw, 1.35rem);
    max-width: 100%;
    font-family: "Afacad", sans-serif;
    line-height: 1.6;
}

#buttons {
    display: flex;
    justify-content: space-between;
    background-color: #949B46;
}

#buttons a {
    text-align: center;
}

.btn {
    font-family: "Lilita One", sans-serif;
    font-weight: 0;
    text-decoration: none;
    padding: 20px 56px;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    cursor: pointer;
    background-color: #EAB62F;
    color: white;
    border-radius: 125px;
}

#discover {
    background-color: #BA3127;
}

h1 {
    font-family: "Lilita One", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #EAB62F;
    text-align: center;
    padding: 56px;
}

#discover {
    background-color: #BA3127;
    padding-bottom: 80px;
}

.carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 100px;
}

.carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.card {
    flex: 0 0 calc((100% - 48px) / 3);
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

.card:hover img {
    filter: brightness(40%);
}

.overlay {
    position: absolute;
    inset: 0;
    color: white;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    opacity: 0;
    transition: 0.4s ease;
}

.card:hover .overlay {
    opacity: 1;
}

.overlay h2 {
    font-family: "Lilita One", sans-serif;
    font-size: 2rem;
    margin-bottom: 16px;
}

.overlay p {
    font-family: "Afacad", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 90%;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #C87D29;
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    line-height: 1;
}

.arrow.left {
    left: 20px;
}

.arrow.right {
    right: 20px;
}

.arrow:hover {
    background-color: #a8641f;
    transition: 0.2s ease-in-out;
}

#ticketing {
    background-color: #EAB62F;
    padding: 20px 20px;
    text-align: center;
}

#ticketing h1 {
    font-family: "Lilita One", sans-serif;
    color: #6B1E12;
}

.ticket-grid {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.ticket-card {
    background-color: #C87D29;
    border-radius: 30px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.ticket-card h3 {
    font-family: "Lilita One", sans-serif;
    color: #6B1E12;
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    margin-bottom: 16px;
}

.ticket-card p {
    font-family: "Afacad", sans-serif;
    font-size: clamp(0.85rem, 1vw, 1rem);
    color: #6B1E12;
    line-height: 1.6;
}

.ticket-disclaimer {
    max-width: 600px;
    margin: auto;
    font-family: "Afacad", sans-serif;
    font-size: 0.75rem;
    color: #6B1E12;
    line-height: 1.5;
}

#wristband {
    width: 40%;
    height: auto;
    border-radius: 25px;
}

#wristholder {
    margin: auto;
    width: 75%;
    height: auto;
    margin-bottom: 32px;
}

#figmalink{
    margin: 12px;
    color: white;
}

@media (max-width: 1000px) {
    .ticket-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 900px) {

    #urbanpalette {
        display: none;
    }

    #mainheader h3 {
        display: none;
    }

    #mainheader {
        justify-content: flex-end;
    }

    .card {
        flex: 0 0 80%;
    }

    #moreinfo {
        grid-template-columns: 1fr;
        padding: 48px 24px;
    }

    #sloganfix {
        width: 100%;
    }

    #bigtitlehold {
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
    }

    #details {
        padding: 16px 24px;
        max-width: 100%;
    }

    #buttons {
        flex-direction: row;
    }

    .btn {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .ticket-grid {
        grid-template-columns: 1fr;
    }

    .card {
        flex: 0 0 100%;
    }

    .carousel-wrapper {
        padding: 0 60px;
    }

    #wristband {
        width: 80%;
        height: auto;
    }
}

@media (max-width: 375px) {
    #details {
        padding: 16px;
    }

    .btn {
        padding: 16px 24px;
        font-size: 0.8rem;
    }
}

.footer-bottom {
    background: #C87D29;
    padding: 2rem 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-links a {
    color: #6B1E12;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e0e0e0;
}

.social-links a:hover {
    color: rgb(255, 198, 74);
    border-color: rgb(255, 198, 74);
    background: rgba(255, 198, 74, 0.05);
}

.copyright {
    text-align: center;
    color: #999;
    font-size: 0.875rem;
}

.copyright p {
    margin: 0;
}

.asset-slideshow {
    width: 100%;
    max-width: 960px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto 1fr;
    column-gap: 12px;
    row-gap: 12px;
}

.progress-track {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.progress-slide {
    display: none;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.progress-slide.active {
    display: flex;
}

.slide-title {
    font-family: "Lilita One", sans-serif;
    color: #EAB62F;
    font-size: clamp(1rem, 3vw, 1.4rem);
    text-align: center;
    letter-spacing: 0.04em;
    line-height: 1.4;
    height: 1.4em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.slide-media iframe,
.slide-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: contain;
    display: block;
}

.progress-arrow {
    background-color: #C87D29;
    color: white;
    border: none;
    width: 52px;
    height: 52px;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
    grid-row: 2;
    align-self: center;
    transition: background-color 0.2s ease;
}

.progress-arrow.left  { grid-column: 1; }
.progress-arrow.right { grid-column: 3; }

.progress-arrow:hover {
    background-color: #a8641f;
}

.progress-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #EAB62F;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.2s ease;
}

.progress-dot.active {
    background-color: #EAB62F;
}

@media (max-width: 900px) {
    .asset-slideshow {
        max-width: 100%;
    }

    .progress-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .progress-arrow {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .progress-dot {
        width: 10px;
        height: 10px;
    }
}