:root {
    --primary-color: #ff00b3;
    --secondary-color: #ffbf00;

    --primary-text-color: #fff;
    --secondary-text-color: #b669ff;

    --bg-color-dark: #3d0f69;
}

@font-face {
    font-family: 'Zadreed';
    src:
        url('fonts/zadreed.ttf') format('truetype'),
        url('fonts/zadreed.woff') format('woff'),
        url('fonts/zadreed.woff2') format('woff2');
}

@font-face {
    font-family: 'Blackside';
    font-weight: normal;
    src:
        url('fonts/Blackside.ttf') format('truetype'),
        url('fonts/Blackside.woff') format('woff'),
        url('fonts/Blackside.woff2') format('woff2'),
        url('fonts/Blackside.eot') format('embedded-opentype'),
        url('fonts/Blackside.svg#Blackside') format('svg');
}

@font-face {
    font-family: 'Blackside';
    font-weight: bold;
    src:
        url('fonts/Blackside-Bold.ttf') format('truetype'),
        url('fonts/Blackside-Bold.woff') format('woff'),
        url('fonts/Blackside-Bold.woff2') format('woff2'),
        url('fonts/Blackside-Bold.eot') format('embedded-opentype'),
        url('fonts/Blackside-Bold.svg#Blackside-Bold') format('svg');
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('zadreed_homepage_background_summernights.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
}

main {
    width: 100%;
    color: var(--primary-text-color);
    overflow: hidden;
    height: auto;
}

section {
    position: relative;
    padding: 5em 1em;
    backdrop-filter: blur(50px);
    display: flex;
    background: radial-gradient(
        circle at bottom center,
        var(--bg-color-dark),
        transparent 100%
    );
    height: auto;
}

footer {
    background-color: var(--bg-color-dark);
}

h1,
h2,
h3,
.modal .modal-content .headline-like {
    font-family: 'Zadreed', sans-serif;
}

h1 {
    font-size: 6em;
    text-shadow:
        -1px -1px 10px var(--primary-color),
        1px 1px 10px var(--secondary-color);
}

h2 {
    font-size: 3.5em;
}

h3 {
    font-size: 2em;
    margin-bottom: 0px;
}

h2,
h3,
.modal .modal-content .headline-like {
    text-shadow: 0px 0px 10px var(--primary-color);
}

a {
    color: var(--primary-text-color);
    font-weight: bold;
    text-shadow: 0px 0px 5px var(--primary-color);
}

button {
    box-shadow: inset 10px 10px 100px -50px var(--primary-text-color);
    border-radius: 50px;
}

nav {
    background: var(--bg-color-dark);
    background: linear-gradient(
        to bottom,
        var(--bg-color-dark) 0%,
        #3d0f6960 100%
    );
    color: var(--primary-text-color);
    height: 60px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

small {
    font-size: 0.8em;
    font-weight: lighter;
}

nav a {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 5px;
    text-decoration: none;
}

nav .center-logo {
    text-align: center;
    margin-top: 12px;
}

nav .center-logo img {
    max-width: 160px;
}

.wrapper {
    padding: 0px;
    border-radius: 10px;
}

#current-music {
    perspective: 1000px;
    perspective-origin: 50% 50%;
    position: relative;
    width: 300px;
    height: 300px;
    opacity: 0;
    transform: scale(1.1);
    animation: fadeIn 2s ease-in-out forwards;
    display: inline-block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(1.1);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

#current-music .cover-image {
    position: absolute;
    transform: scaleX(1) scaleY(1) scaleZ(1) rotateX(0deg) rotateY(0deg)
        rotateZ(0deg) translateX(0px) translateY(0px) translateZ(0px)
        skewX(0deg) skewY(0deg);
    animation: 2s introAniCover 1s ease-in-out forwards;
}

#current-music .cover-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}
#current-music button.presave {
    background-color: #fff;
    color: var(--primary-color);
    box-shadow:
        0px 0px 10px 0px var(--primary-color),
        inset 0px 0px 3px 1px var(--primary-color);
}
#current-music iframe,
#current-music button.presave {
    position: absolute;
    bottom: 5px;
    left: 5px;
    width: calc(100% - 10px);
    height: 42px;
    border: none;
    border-radius: 8px;
}

@keyframes introAniCover {
    from {
        transform: scaleX(1) scaleY(1) scaleZ(1) rotateX(0deg) rotateY(0deg)
            rotateZ(0deg) translateX(0px) translateY(0px) translateZ(0px)
            skewX(0deg) skewY(0deg);
    }

    to {
        transform: scaleX(1) scaleY(1) scaleZ(1) rotateX(15deg) rotateY(-12deg)
            rotateZ(0deg) translateX(0px) translateY(0px) translateZ(0px)
            skewX(0deg) skewY(0deg);
    }
}

#current-music .spinning-vinyl {
    position: absolute;
    transform: scaleX(1) scaleY(1) scaleZ(1) rotateX(0deg) rotateY(0deg)
        rotateZ(0deg) translateX(0px) translateY(0px) translateZ(0px)
        skewX(0deg) skewY(0deg);
    z-index: -1;
    animation: 2s introAniVinyl 1s ease-in-out forwards;
}

@keyframes introAniVinyl {
    from {
        transform: scaleX(1) scaleY(1) scaleZ(1) rotateX(0deg) rotateY(0deg)
            rotateZ(0deg) translateX(0px) translateY(0px) translateZ(0px)
            skewX(0deg) skewY(0deg);
    }

    to {
        transform: scaleX(1) scaleY(1) scaleZ(1) rotateX(15deg) rotateY(-12deg)
            rotateZ(0deg) translateX(80px) translateY(0px) translateZ(0px)
            skewX(0deg) skewY(0deg);
    }
}

#current-music .spinning-vinyl img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: rotateZ(0deg);
    animation: spinIt 15s linear infinite;
}

@keyframes spinIt {
    to {
        transform: rotateZ(360deg);
    }
}

#home {
    padding: 5em 0;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: none;
    background: none;
}

#home h1 {
    margin: 0;
    line-height: 1;
}

#home h2 {
    font-family: 'Blackside';
    font-weight: normal;
    font-size: 2em;
}

#home h1,
#home h2 {
    text-align: center;
}

button {
    display: inline-block;
    padding: 8px 18px;
    background-color: var(--bg-color);
    border: none;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    box-shadow: inset 10px 10px 100px -50px var(--primary-text-color);
    border-radius: 10px;
}

button.primary {
    color: var(--primary-text-color);
    border-radius: 10px;
    background-color: var(--primary-color);
    font-weight: bold;
    box-shadow: 1px 1px 10px var(--primary-color);
}

.msc-icon {
    text-align: center;
    display: block;
    transition: all 0.2s ease-in-out;
    padding: 10px;
    line-height: 0;
    box-shadow: inset 10px 10px 100px -50px var(--primary-text-color);
    border-radius: 10px;
    margin: 0px 10px 10px 0px;
}

.msc-icon:hover {
    box-shadow: inset 10px 10px 100px -30px var(--primary-text-color);
    border-radius: 10px;
}

.msc-icon img {
    width: 100%;
    height: 45px;
}

section .grid {
    align-items: start;
    justify-content: center;
    align-content: center;
}

.grid .col-3.line {
    text-align: right;
    padding-right: 20px;
}

.grid .col-3.line h2 {
    margin: 0;
}

.grid .col-3.line + .col-9 {
    border-left: 1px solid var(--primary-text-color);
    padding-left: 20px;
}

#sib-form {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: center;
    width: 100%;

    margin-top: 10px;
}

#sib-form button {
    width: 100%;
}

#sib-form .form-enter {
    flex: 3;
    text-align: left;
    padding-right: 20px;
}

#sib-form .form-submit {
    flex: 1;
}

.sib-form-container a {
    text-decoration: underline;
    color: inherit;
}

.sib-form .entry__choice {
    line-height: 0.8;
    margin-top: 10px;
}

.sib-form,
.sib-form-block {
    margin: 0;
    padding: 0;
}

.sib-form .entry__field {
    margin: 0;
}

#sib-container {
    background: transparent;
    margin: 0;
    padding: 0;
}

#EMAIL {
    color: var(--bg-color-dark);
}

.sib-form .input_replaced:checked + .checkbox_tick_positive {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 1px 1px 10px var(--primary-color);
}

.sib-form-message-panel {
    margin: 0 !important;
}

.sib-form .entry__error {
    border: 1px solid red;
    margin: 0;
    padding: 5px;
}

.sib-form .checkbox,
.sib-form .radio-button {
    background: #fff;
    border: none;
    cursor: pointer;
    display: inline-block;
    height: 1.2em;
    vertical-align: middle;
    width: 1.2em;
    position: relative;
}

.sib-form .checkbox_tick_positive::before {
    bottom: 2px;
    border-width: 0 3px 3px 0;
}

.most-current-music {
    text-align: center;
    display: block;
    position: absolute;
    left: -10px;
    top: 30px;
    z-index: 12;
    font-weight: bold;
    font-size: 1.6em;
    font-family: 'Blackside', sans-serif;
    background-color: var(--primary-color);
    line-height: 1;
    padding: 10px 10px 8px 10px;
    color: white;
}

.most-current-music:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -29.5px;
    margin: auto 0;
    width: 0;
    height: 0;
    border-left: 30px solid var(--primary-color);
    border-top: 35px solid transparent;
    border-bottom: 35px solid transparent;
}

footer {
    color: var(--secondary-text-color);
}

footer a {
    color: var(--secondary-text-color);
    text-shadow: none;
}

footer .legalnotes {
    font-size: 0.8em;

    text-align: left;
}

.modal {
    z-index: 99999;
    width: 100vw;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: top 0.3s ease-in-out;
    overflow: hidden;
    backdrop-filter: blur(20px);
}
.modal .modal-content {
    background: radial-gradient(
        circle at bottom center,
        var(--bg-color-dark),
        transparent 160%
    );
    color: var(--primary-text-color);
    border-radius: 10px;
    width: auto;
    height: auto;
    padding: 50px;
    margin: 10px;
    position: relative;
    text-align: center;
    max-width: 400px;
}
.modal .modal-content .close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-weight: bolder;
    line-height: 1;
    vertical-align: middle;
    padding: 15px;
    color: var(--bg-color-dark);
}
.modal .modal-content .headline-like {
    font-size: 1.3em;
    text-align: center;
    margin: 10px 0px;
    display: block;
}

#newsletter-success:target,
#newsletter-unsubscribed:target,
#newsletter-optin:target {
    display: flex !important;
}

body:has(#newsletter-success:target),
body:has(#newsletter-unsubscribed:target),
body:has(#newsletter-optin:target) {
    overflow: hidden;
}

@media (max-width: 900px) {
    nav .center-logo {
        display: none;
    }
    nav a:not(:last-child)::after {
        content: ' |';
        vertical-align: text-bottom;
    }

    .grid .col-3.line {
        text-align: center;
        padding-right: unset;
    }

    .grid .col-3.line + .col-9 {
        border-left: unset;
        padding-left: unset;
        padding: 10px;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 3.5em;
    }

    #sib-form {
        flex-direction: column;
    }

    #sib-form .form-enter {
        padding-right: unset;
    }

    #sib-form .form-submit {
        margin-top: 10px;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .sib-form-block {
        width: 100%;
    }
}
