body {
    background: linear-gradient(45deg, #f4f3ff 60%, #f2dfff);
}

header.nav {
    background-color: transparent;
}

header.nav.sticky {
    background-color: rgb(255 255 255 / 90%);
}

.page-head {
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 5vw auto;
    max-width: 600px;
}

.page-head h1 {
    font-size: clamp(42px, 5vw, 75px);
    animation: 0.5s fadeInUp ease-in-out;
}

.page-head p {
    font-size: clamp(20px, 4vw, 26px);
    color: var(--text-400-color);
    font-weight: lighter;
    animation: 0.5s fadeIn ease-in-out;
}

.booking-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto 50px;
    gap: 30px;
}

.booking-link {
    background-color: var(--white);
    box-shadow: 0 5px 10px rgb(0 0 0 / 6%);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    animation: fadeIn;
    animation-timeline: view();
    animation-range: entry;
    position: relative;
    width: 100%;
    max-width: 500px;
}

.booking-link>img {
    object-fit: cover;
    background-color: var(--text-100-color);
    border-radius: 10px;
    width: 100%;
    height: 250px;
}

.booking-link a {
    border: 1px solid;
    color: var(--black);
    border-radius: 10px;
    width: 100%;
    text-align: center;
    padding: 15px 20px;
    font-size: 16px;
    opacity: 0.9;
    transition: 0.1s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    font-weight: bold;
    overflow: hidden;
    margin-top: auto;
    max-width: max-content;
    line-height: 100%;
}

.booking-link h3 {
    color: var(--black);
    font-size: 26px;
    font-weight: 600;
}

.booking-container {
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 20px;
}

.booking-start {
    display: flex;
    flex-direction: column;
    padding: 30px;
    justify-content: center;
    text-align: center;
    font-size: 20px;
    color: var(--primary-color);
    border: 1px solid var(--text-200-color);
    border-radius: 10px;
}

.booking-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.booking-start b {
    font-size: 30px;
}

span.location {
    position: absolute;
    top: 40px;
    inset-inline-start: 40px;
    z-index: 1;
    background: rgb(255 255 255 / 90%);
    border-radius: 5px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
}

.no-workshops {
    display: flex;
    flex-direction: column;
    margin: 7vw auto;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.no-workshops h2 {
    font-size: 30px;
}

.no-workshops p {
    font-size: 20px;
}