/*********************************************
 * GLOBAL STYLES
 *********************************************/

:root {
    --bass-background-color: #ffffff;
    --bass-color-black: #000000;
    --bass-color-white: #ffffff;
    --bass-color-blue: #34819C;
    --bass-color-blue: #01D0D8;
    --bass-color-blue: #71D9F8;
    --bass-color-gray: #706e6e;
    --bass-color-red: #ff0000;
    --bass-color-yellow: #ffc100;
    --bass-color-orange: #F44009;
    --bass-color-orange: #FF6600;
}


html {
    font-size: 16px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
    scroll-behavior: smooth;

    background-color: var(--bass-background-color);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif !important;
    font-size: 1.25rem;
    line-height: 1.6;
    padding: 0;
    margin: 0;
    background-color: var(--bass-background-color);
    color: var(--bass-color-black);

    /* background-image: url("/assets/images/bg-stars-footer.webp");
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: auto; */
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

a {
    color: var(--bass-color-white);
    font-weight: 600;
}

p {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

img {
    display: block;
    max-width: 100%;
}

header {
    padding: 2rem;
    margin: 0 auto;
}

h1 {
    line-height: 1.4;
    font-weight: 900;
    text-transform: uppercase;
    padding: 2rem;
    margin: 0;
}

h2 {
    font-size: 1.75rem;
    font-weight: 900;
    text-transform: none;
    padding: 0 0 2rem 0;
    margin: 0;
}

main {
    position: relative;
    margin: 0 auto;
}

figure {
    display: block;
    max-width: 540px;
    padding: 2rem 0;
    margin: 0 auto;
}

img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

section {
    position: relative;
    max-width: 100%;
    padding: 0 clamp(1rem, 0.286rem + 1.905vw, 2rem);
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.margin-auto {
    margin: 0 auto;
}

.content {
    max-width: 640px;
    margin: 0 auto;
}

.content-wide {
    max-width: 1024px;
    margin: 0 auto;
}

.content-full {
    max-width: 100%;
    margin: 0 auto;
}

a.buy-ticket {
    display: block;
    width: fit-content;
    text-align: center;
    text-decoration: none;
    margin: 4rem auto 0;
}

a .button-buy-ticket {
    display: inline-block;
    background-color: var(--bass-color-orange);
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.25rem 2.5rem;
    border-radius: 1rem;
    transition: all 200ms ease-in-out;

    /* -webkit-box-shadow: 0px 0px 32px 12px rgba(113, 217, 248, 1);
    -moz-box-shadow: 0px 0px 32px 12px rgba(113, 217, 248, 1);
    box-shadow: 0px 0px 32px 12px rgba(113, 217, 248, 1); */
}

a .button-buy-ticket span {
    padding-left: 1rem;
    transition: all 200ms ease-in-out;
}

a .button-buy-ticket:hover {
    background-color: var(--bass-color-black);
}

a.buy-ticket:hover span {
    transform: translateX(-16px);
}

.row {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
}

.row svg {
    margin-top: 1.25rem;
}

/* Footer */
footer {
    font-size: 0.875rem;
    position: relative;
    padding: 6rem;
    margin: 0 auto;
}

footer a {
    color: var(--bass-color-black);
    text-decoration: underline;
}

.footer-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100vw;
}

.social-icons {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    line-height: 1;
}
