@font-face {
    font-family: 'Basier Regular';
    src: url('/fonts/basiersquare-regular-webfont.ttf');
}

@font-face {
    font-family: 'Basier Medium';
    src: url('/fonts/basiersquare-medium-webfont.ttf');
}

@font-face {
    font-family: 'Basier Semibold';
    src: url('/fonts/basiersquare-semibold-webfont.ttf');
}

@font-face {
    font-family: 'Basier Bold';
    src: url('/fonts/basiersquare-bold-webfont.ttf');
}

:root {
    --bg-color: #14112b;
    --bg-secondary-color: #242145;
    --cta-primary-color: #d60056;
    --title-color: #fff;
    --font-color: #f2f2f2;
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Basier Regular';
    list-style: none;
}

body {
    overflow-x: hidden;
    background: var(--bg-color);
}

header {
    padding: 0 16px;
    position: sticky;
    top: 0;
    background: var(--bg-color);
    z-index: 1;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

}

.header-logo img{
    padding-top: 2px;
}

/* .header-search-bar{
    width: 100%;
    background: #ffffff0d;
    border-radius: 40px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 12px;
}

.header-search-bar img{
    width: 22px;
}

.header-icons{
    display: flex;
    gap: 8px;
}

.header-icons div{
    position: relative;
    display: flex;
    align-items: center;
} */
.header-icons div img{
    background: var(--cta-primary-color);
    border-radius: 40px;
    padding: 8px;
    width: 32px;
}

/* .header-icons img{
    background: #ffffff0d;
} */

/* .header-icons div:first-child::after{
    content: "";
    background: #E5105D;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 0;
    right: -5px;
    border-radius: 40px;

} */

nav {
    position: sticky;
    top: 60px;
    z-index: 1;
    background: var(--bg-color);
}

a{
    text-decoration: none;
}

.nav-overlay {
    width: 120px;
    height: 100%;
    right: 0;
    position: absolute;
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, var(--bg-color) 100%);
}

nav ul {
    display: flex;
    gap: 8px;
    padding: 8px 16px;
    overflow: scroll;
    width: 100vw;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

nav ul::-webkit-scrollbar {
    display: none;
}

nav ul li {
    padding: 6px 12px;
    color: var(--font-color);
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-family: 'Basier Medium';
    border-radius: 40px;
    font-size: 14px;
    white-space: nowrap;
}

.hero {
    height: 320px;
    position: relative;
    margin: 16px 0;
}
.hero a{
    height: 100%;
    width: 100%;
    position: absolute;
}

.hero-overlay {
    height: 320px;
    width: 100%;
    position: absolute;
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(0, 0, 0, 0) 50%, var(--bg-color) 100%);
    margin-right: 16px;
    z-index: -1;
}

.hero-info {
    position: absolute;
    display: flex;
    flex-direction: column;
    bottom: 20px;
    left: 20px;
    color: var(--font-color);
}
.hero-info h2 {
    font-family: 'Basier Semibold';
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 2px;
    color: var(--title-color);
}

.hero-info time {
    margin-bottom: 12px;
}

.hero-info p {
    font-size: 14px;
    font-family: 'Basier SemiBold';
}

/* .hero-category {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #00000041;
    padding: 6px 12px;
    width: fit-content;
    border-radius: 40px;
    border: 1px solid #fff;
    font-size: 12px;
    color: #fff;
    text-transform: capitalize;
    font-family: 'Basier Medium';
} */
/* swiper-container {
    width: 100%;
    height: 400px;
    position: relative;
} */

.hero img {
    position: relative;
    height: 320px;
    width: 100%;
    object-fit: cover;
    z-index: -2;

}

/* span.swiper-pagination-bullet {
    background-color: #fff !important;
}

:host {
    --swiper-theme-color: #fff !important;
}

span.swiper-pagination-bullet-active {
    background-color: #fff !important;
} */

.plan-collection {
    padding: 16px 0;
    background: var(--bg-color);
}

.collection-title {
    margin-bottom: 10px;
    color: white;
    font-family: 'Basier SemiBold';
    padding-left: 16px;
    font-size: 20px;
    text-transform: capitalize;
}

/* .collection-title::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 16px;
    margin: 0 2px -1px 0;
    background: rgb(255, 204, 0);
} */

.collection-group {
    display: flex;
    gap: 16px;
    padding-right: 16px;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.collection-category-group {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding: 0 16px;
}

.collection-group::-webkit-scrollbar {
    display: none;
}

.collection-card {
    width: 35vw;
    text-decoration: none;
}

.collection-category-card {
    width: calc(50vw - 28px);
    text-decoration: none;
}

.collection-card:first-child {
    margin-left: 16px;
}

.card-image {
    aspect-ratio: 1 / 1;
    width: 35vw;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 8px;
}
.category-card-image {
    aspect-ratio: 5 / 6;
    width: calc(50vw - 28px);
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 8px;
}

.card-title {
    font-size: 14px;
    color: var(--title-color);
    font-family: 'Basier SemiBold';
}

.card-date {
    font-size: 14px;
    color: var(--font-color);
    opacity: .7;
}

.collection-category-card .card-title {
    font-size: 16px;
}

.plan-image {
    height: 320px;
    width: 100%;
    object-fit: cover;
    position: fixed;
    top: 60px;
    z-index: -1;
}

.plan-bread-crumbs{
    position: fixed;
    top: 76px;
    left: 16px;
    z-index: 0;
    font-size: 10px;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
}

.plan-bread-crumbs a{
    color: rgb(255, 255, 255);
}

.plan-body {
    padding: 16px 16px 0px; 
    border-radius: 24px 24px 0 0;
    background: #03000f;
    margin-top: 292px;
    position: relative;
}
.mark{
    width: 32px;
    height: 4px;
    border-radius: 40px;
    background: #afafaf;
    position: absolute;
    top: 10px;
    right: calc(50% - 16px);
}

.plan-body .plan-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    position: sticky;
    top: 60px;
    background: #03000f;
    padding: 24px 0;


}

.plan-body h2 {
    font-family: 'Basier semiBold';
    font-size: 20px;
    margin-bottom: 2px;
    color:white;
}

.plan-body .plan-date {
    margin-bottom: 12px;
    color: white;
}

.plan-body .plan-place {
    display: flex;
    gap: 4px;
}

.plan-body .plan-place img{
    width: 16px;
    margin-left: -4px;
}

.plan-body .plan-place p{
    color: #E5105D;
    font-size: 14px;
}

.plan-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 40px;
    color: #fff;
    border: none;
}

.plan-cta__active{
    background: var(--cta-primary-color);
}

.plan-cta__disabled{
    color: white;
    background: transparent;
    border:1px solid white;
}

.plan-body .plan-content {
    font-size: 14px;
    font-family: 'Basier Regular';
    color: white;
    line-height: 1.4;
    padding-bottom: 24px;
}

.plan-body .plan-content p:not(:last-child){
    margin-bottom: 16px;
}

.error-page {
    height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    background: var(--cta-primary-color);
}

.error-page p{
    color:#fff;
    font-family: 'Basier Bold';
    font-size: 80px;
}
/* footer{
    margin-top: 32px;
    padding: 32px 16px;
    border-top: 1px solid #0000001f;
} */
footer span{
    font-size: 12px;
}
.sponsors-images{
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 32px 24px;
    align-items: center;
}

.sponsors-images img{
    filter: grayscale(1);
    opacity: .3;
    width: 20vw;
}

footer form input[type=email]{
    border: none;
    width: calc(100vw - 32px);
    background: #F2F2F2;
    padding: 12px 16px;
    border-radius: 40px;
}

.footer-links {
    background: #000;
    color: white;
    padding: 32px 16px;
    display: flex;
    flex-wrap: wrap;

}
.footer-links-column {
    display:flex;
    flex-direction: column;
    font-size: 14px;
    width: 50%;
    margin-bottom: 32px;
}

.footer-links-column span {
    font-family: 'Basier Bold';
    text-transform: uppercase;
    margin-bottom: 12px;
}
.footer-links-column a {
    opacity: .75;
    margin-bottom: 8px;
}
.cookieBlock{
    position: fixed;
    bottom: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    padding: 16px;
    margin: 0 16px 16px;
}
.cookieBlock div{
    margin-top: 16px;
    display: flex;
    gap: 8px;
    flex-direction: column;
}
.cookieBlock button{
    padding: 8px 16px;
    border-radius: 40px;
}
.cookieBlock button.linear{
    background: transparent;
    border: solid 1px var(--cta-primary-color);
    color: var(--cta-primary-color);
}
.cookieBlock button.solid{
    background: var(--cta-primary-color);
    border: solid 1px var(--cta-primary-color);
    color: var(--title-color);
}

@media (min-width: 900px) {
    nav {
        display: none;
    }

    .hero {
        max-width: 1200px;
        margin: auto;
    }

    .hero,
    .hero-overlay,
    .hero img {
        height: 600px;
    }


    .collection-group {
        -ms-overflow-style: initial;
        scrollbar-width: initial;
        gap: 32px;
    }

    .collection-group::-webkit-scrollbar {
        display: initial;
    }

    .collection-card {
        width: 200px;
    }
    .card-image_container{
        width: 200px;
        height: 200px;
        overflow: hidden;
        border-radius: 8px;
    }

    .card-image {
        height: 200px;
        width: 200px;
        transition: transform .5s ease;
    }

    .card-image_container:hover .card-image {
      transform: scale(1.2);
    }
}
