@import url('https://fonts.googleapis.com/css2?family=Alice&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

:root {
    --accent: #B38A20;
    --accent-dark: #a37c18;

    --secondary: #080809;
    --secondary--hover: #1c1c1e;

    --background: #eceae9;
    --background-secondary: #e3e1e0;

    --font-size: 16px;

    --text-color: #222222;

    --header-height: 92px;
    --header-height-mobile: 57px;
}

body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    background-color: var(--background);
    font-size: var(--font-size);
    font-weight: 300;
    color: var(--text-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Alice", serif;
}
h1, .h1 {
    font-size: 4rem;
}
h2, .h2 {
    font-size: 3rem;
}

p {
    font-size: 16px;
}


.btn {
    font-size: 1rem;
    padding: 1rem 4rem;
    border-radius: 50px;
    font-weight: 300;
    box-shadow: none !important;
    outline: none !important;
}
.btn-sm {
    padding: 0.575rem 1.75rem;
}
.btn-primary {
    background-color: var(--accent) !important;
    border-color: var(--accent) !important;
}
.btn-primary:hover {
    background-color: var(--accent-dark) !important;
    border-color: var(--accent-dark) !important;
}

.btn-secondary {
    background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;
}
.btn-secondary:hover {
    background-color: var(--secondary--hover) !important;
    border-color: var(--secondary--hover) !important;
}


.form-control, .form-select {
    outline: none !important;
    box-shadow: none !important;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    background-color: #f4f4f4;
}
.form-select:focus {
    border-color: var(--accent) !important;
}


.mt-normal {
    margin-top: 5rem;
}
.mb-normal {
    margin-bottom: 5rem;
}
.mt-small {
    margin-top: 2.5rem;
}
.mb-small {
    margin-bottom: 2.5rem;
}

.p-normal {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.bg-secondary {
    background-color: var(--background-secondary) !important;
}
.bg-dark {
    background-color: var(--secondary) !important;
    color: #ffffff !important;
}


header {
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    transition: background-color 0.3s ease;
}
header.scrolled,
header.open {
    background-color: var(--secondary);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-inner .logo {
    height: 35px;
}
.header-inner .logo img {
    height: 100%;
}
.header-inner .links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.header-inner .links .link {
    color: #FFFFFF !important;
    text-decoration: none !important;
    font-size: 16px;
    padding: 6px 0;
    transition: 0.15s ease all;
    font-weight: 200;
}
.header-inner .links .link:hover {
    color: var(--accent) !important;
}
.header-mobile-toggler {
    display: none;
}


.subpage-header-spacer {
    height: var(--header-height);
    background-color: var(--secondary);
}


.startpage-hero {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
}
.startpage-hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
}
.startpage-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}
.startpage-hero p {
    line-height: 30px;
}


.image {
    width: 100%;
    height: 100%;
    border-radius: 22px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.square-image {
    width: 100%;
    padding-bottom: 100%;
    border-radius: 22px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.text-image {
    position: relative;
    min-height: 50vw;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.text-image.text-image__small {
    min-height: 30vw;
}
.text-image .background-column {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    background-position: center;
    background-size: cover;
}
.text-image .background-column.left {
    left: 0;
}

.custom-link {
    position: relative;
    font-weight: 400;
    color: inherit !important;
    text-decoration: none !important;
    padding-bottom: 4px;
}
.custom-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
    transition: 0.25s ease all;
}
.custom-link:hover::after {
    width: calc(100% + 4px);
}


.event-scroller-buttons {
    display: flex;
    justify-content: space-between;
}
.event-scroller__scroll-btn {
    background-color: var(--accent);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.25s ease all;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 20px;
    padding-top: 1px;
}
.event-scroller__scroll-btn:hover {
    background-color: var(--accent-dark);
}


.event-holder {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}
.event-scroller {
    position: relative;
    display: flex;
    overflow-x: auto;
    gap: 32px;
}
.event-scroller::-webkit-scrollbar {
    display: none;
}
.event-box {
    flex: 0 0 350px;
    color: inherit !important;
    text-decoration: none;
}
.event-holder .event-box {
    flex: 0 0 calc(25% - 24px);
}
.event-box__image {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    background-color: #cccccc;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    overflow: hidden;
    transition: 0.25s ease all;
}
.event-box__image .img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 100%;
    padding-bottom: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: 0.25s ease all;
}
.event-box:hover .event-box__image {
    border-radius: 24px;
}
.event-box:hover .event-box__image .img {
    transform: translate(-50%, -50%) scale(1.05);
}
.event-box__title {
    font-size: 18px;
    font-weight: 600;
}
.event-box__date {
    color: var(--accent);
    font-size: 18px;
    font-weight: 400;
}


.step-block {
    display: flex;
    flex-direction: row;
    align-items: start;
}
.step-number {
    text-align: center;
    font-size: 56px;
    font-weight: 500;
    flex: 0 0 85px;
    color: var(--accent);
}
.step-content h3 {
    font-family: "DM Sans", sans-serif;
}


footer {
    background-color: var(--secondary);
    padding-top: 3rem;
    padding-bottom: 2rem;
    color: #FFFFFF !important;
}
.footer-cta-row {
    padding-bottom: 3rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid var(--accent);
}
.footer-cta-block {
    background-color: var(--accent);
    border-radius: 22px;
    padding: 2rem;
}
.footer-cta-block h2 {
    font-size: 2.5rem !important;
}

.footer-copy-row {
    margin-top: 4rem;
}
.footer-title {
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 10px;
}
.footer-logo {
    max-width: 100%;
    max-height: 30px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer-link {
    color: #FFFFFF !important;
    text-decoration: none !important;
    font-weight: 200;
    transition: 0.25s ease all;
}
.footer-link:hover {
    color: var(--accent) !important;
}
.footer-copy {
    font-size: 13px !important;
    font-weight: 200;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
}
.footer-copy a {
    color: inherit !important;
    text-decoration: none !important;
}
.footer-copy a:hover {
    color: var(--accent) !important;
    transition: 0.25s ease all;
}


.faq-block {
    overflow: hidden;
    border-radius: 8px;
}
.faq-block__question {
    display: block;
    background-color: #FFFFFF;
    padding: 1rem;
    color: #000000 !important;
    text-decoration: none;
    font-weight: 500;
}
.faq-block__answer {
    background-color: #FFFFFF;
}
.faq-block__answer__inner {
    padding: 0 1rem 1rem 1rem;
}



@media (max-width: 767px) {
    p {
        font-size: 14px;
    }

    header {
        padding: 1rem 0;
    }
    .header-inner .logo {
        height: 25px;
    }
    .header-mobile-toggler {
        position: relative;
        width: 22px;
        height: 25px;
        display: flex;
        flex-direction: column;
        align-items: end;
        justify-content: center;
        gap: 6px;
    }
    .header-mobile-toggler .line-1 {
        width: 100%;
        height: 2px;
        background-color: #FFFFFF;
    }
    .header-mobile-toggler .line-2 {
        width: 75%;
        height: 2px;
        background-color: #FFFFFF;
    }
    .header-mobile-toggler .line-3 {
        width: 50%;
        height: 2px;
        background-color: #FFFFFF;
    }

    header.open .header-mobile-toggler .line-1 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
        transform-origin: center center;
    }
    header.open .header-mobile-toggler .line-2 {
        display: none;
    }
    header.open .header-mobile-toggler .line-3 {
        width: 100%;
        transform: rotate(-45deg);
        transform-origin: center center;
    }

    .header-inner .links {
        position: absolute;
        top: 57px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 57px);
        background-color: var(--secondary);
        flex-direction: column;
        padding-top: 2rem;
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
        gap: 1.5rem;
        transition: 0.25s ease left;
    }
    header.open .header-inner .links {
        left: 0;
    }
    .header-inner .links .link {
        width: 100%;
        text-align: center;
    }
    .header-inner .links .btn {
        margin-top: 1rem;
        width: 100%;
    }



    h1, .h1 {
        font-size: 2.5rem;
    }
    h2, .h2 {
        font-size: 2rem;
    }

    .startpage-hero p {
        font-size: 14px;
        line-height: 25px;
    }

    .btn {
        padding: 0.75rem 3rem
    }


    .event-box {
        flex: 0 0 180px;
    }
    .event-scroller-buttons {
        display: none;
    }

    .event-holder .event-box {
        flex: 0 0 calc(50% - 16px);
    }


    .text-image {
        position: relative;
        height: unset !important;
        flex-direction: column;
    }
    .text-image .background-column {
        position: relative;
        width: 100%;
        height: 100vw;
        left: 0;
    }
    .text-image.text-image__small .background-column {
        min-height: 65vw;
    }

    .subpage-header-spacer {
        height: var(--header-height-mobile);
    }


    .step-number {
        text-align: start;
        flex: 0 0 65px;
    }
}
