@font-face {
    font-family: 'Figtree';
    src: url('fonts/figtree-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Figtree';
    src: url('fonts/figtree-medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Figtree';
    src: url('fonts/figtree-semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* General styles */
body {
    margin: 0;
    padding: 0;
    color: white;
    font-family: 'Figtree', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    min-height: 100dvh;
    text-align: center;
    background: black url('banner05.png') no-repeat center center;
    background-size: cover;
}

/* Logo styles */
.logo {
    margin: 20px auto;
    max-width: 260px;
    padding-bottom: 30px;
}

/* Content styles */
.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 50pt;
    font-weight: 600;
    gap: 10px;
}

.filter {
    filter: url(#threshold) blur(0.6px);
    max-height: 80px;
}

#filters {
    position: absolute;
    width: 0;
    height: 0;
}

#text1,
#text2 {
    position: absolute;
    width: 100%;
    display: inline-block;
    text-align: center;
    user-select: none;
    white-space: nowrap;
}

/* Button styles */
.button-container {
    margin-top: 40px;
}

#get-tickets-button {
    padding: 10px 20px;
    font-size: 1rem;
    color: #595959;
    background-color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
}

#get-tickets-button:hover {
    background-color: #fefefe;
}

a.disabled {
    pointer-events: none;
    cursor: default;
}

/* Footer styles */
.footer {
    padding: 30px;
    font-size: 0.8rem;
    color: white;
}

/* Partner Section */
.partners {
    text-align: center;
    margin: 10px;
}

.partners h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

.partner-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.partner-logos img {
    width: 130px;
    height: 100%;
    transition: transform 0.3s;
}

.partner-logos img:hover {
    transform: scale(1.1);
}

.link {
    color: white;
    text-decoration: none;
}

h2 {
    margin-bottom: 0px;
}

/* Social Media Icon */
.social-media {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.social-icon {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease-in-out;
}

.social-icon:hover {
    opacity: 0.6;
}