/* root{

}
html{

} */
html, body{
    --black: #000000;
    --white: #FFFFFF;
    --red: #dc0c15;
    --yellow: #ffe500;
    --dark-yellow: #ccb800;
    --blue: #094a8c;
    --turqoise: #10ab9f;
    --orange: #f19601;
    --brown: #996941;
    --grey: #cccccc;
    --dark-grey: #808080;
    --light-grey: #efefef;
}

#video{
    margin: 0;
}
/* FONTS */

@font-face {
    font-family: 'Frankfurter-Medium';
    src: url('../fonts/Frankfurter-Medium-Regular.ttf') format('truetype');
    font-weight: normal;
}

/* CONTENT */

/*TEXT*/

.text {
    color: var(--yellow);
    font-family: "Frankfurter-Medium", Roboto, sans-serif;
    /*text-shadow: 1px 1px 2px black;*/
}

.text p {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: justify;
    padding: 0;
    margin-bottom: 1rem;
}

.text h1 {
    text-decoration: underline;
    font-size: 4rem;
    text-align: center;
}

p b {
    color: var(--red);
}



.background-color-red {
    background-color: var(--red);
}

.background-color-yellow {
    background-color: var(--yellow);
}

section:is(:not(.hero-module)) {
    padding: 2rem 0;
}

@media only screen and (min-width: 768px) {
    section:is(:not(.hero-module)) {
        padding: 4rem 0;
    }

}


/* ======= Header ======= */

.hero-module {
    position: relative;
}

.hero__logo {
    display: none;
    width: 100px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 30px;
}

.hero__background, .hero__background--mobile {
    width: 100%;
}

.hero__background {
    display: block;
}

.hero__background--mobile {
    display: block;
}

@media only screen and (min-width: 768px) {
    .hero__background {
        display: block;
    }
    .hero__background--mobile {
        display: none;
    }
    .hero__logo {
        display: block;
        left: unset;
        margin-top: unset;
        width: 150px;
        position: absolute;
        top: 50%;
        right: 75px;
        transform: translateY(-50%);
    }
}

@media only screen and (min-width: 1024px) {
    .hero__logo {
        width: 200px;
        position: absolute;
        top: 50%;
        right: 150px;
        transform: translateY(-50%);
    }
}

@media only screen and (min-width: 1440px) {
    .hero__logo {
        width: 300px;
        position: absolute;
        top: 50%;
        right: 150px;
        transform: translateY(-50%);
    }
}

@media only screen and (min-width: 1920px) {
    .hero__logo {
        width: 400px;
        position: absolute;
        top: 50%;
        right: 250px;
        transform: translateY(-50%);
    }
}

/* ======= Text-Module ====== */
.text-module {
    color: var(--black);
    font-family: "Frankfurter-Medium", Roboto, sans-serif;
}

.h1 {
    color: var(--red);
    font-family: "Frankfurter-Medium", Roboto, sans-serif;
}

/* ====== Video ====== */

.video-module {
    position: relative;
}

.video-module .h1 {
    margin-bottom: 30px;
}

.video-module img {
    position: relative;
    width: 100%;
    height: auto;
    filter: brightness(80%);
}

.video {
    position: relative;
}

.video__banner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(28, 28, 28, .8);
    width: 100%;
    color: var(--white);

    display: grid;
    place-items: center;
    padding: 30px 0;
}

.video__button {
    background: transparent;
    border-radius: 16px;
    border: 1px solid var(--red);
    color: var(--white);
    padding: 10px 20px;
    transition: all .5s ease-in-out;
}

.video__button:hover {
    background: var(--red);
    color: var(--white);
}

.video__iframe {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

/* ====== Gallery ====== */
.gallery__items {
    display: grid;
    gap: 15px;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
}

.gallery__item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    cursor: pointer;
}

.gallery-module .accordion, .gallery-module .accordion-header, .gallery-module .accordion-button {
    background: transparent;
    box-shadow: unset;
    outline: unset;
    font-weight: bold;
}

.gallery-module .accordion-item {
    border: unset;
    border-radius: unset;
    border-bottom: 1px solid var(--red);
}

.accordion-button:not(.collapsed) {
    color: var(--red);
}

.accordion-button:not(.collapsed)::after {
    background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23dc0c15'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

@media only screen and (min-width: 380px) {

    .gallery__item img {
        width: 150px;
        height: 150px;
    }
}

@media only screen and (min-width: 768px) {

    .gallery__item img {
        width: 200px;
        height: 200px;
    }

    .gallery__items {
        display: grid;
        gap: 15px;
        align-items: center;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (min-width: 1440px) {
    .gallery__items {
        display: grid;
        gap: 15px;
        align-items: center;
        grid-template-columns: repeat(6, 1fr);
    }
}

/* MODAL */

.modal-header .btn-close {
    box-shadow: unset;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
}

.modal-content {
    background: transparent;
    outline: unset;
    border: unset;
    box-shadow: unset;
}

.modal-header {
    border: unset;
}

/* SKYLINE */

.netto-skyline {
    width: 100%;
}

/* ======= Footer ======= */
.footer {
    padding: 50px 0;
    background: var(--red);
    color: var(--white);
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media only screen and (min-width: 768px) {
    .footer__links {
        flex-direction: row;
    }
}