body {
    background-color: var(--background-color);
    color: var(--primary-color);
    font-family: poppins;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    padding-left: 50px; 
    padding-right: 50px;
    padding-bottom: 30px;
    padding-top: 30px;
    background-color: var(--background-color);
    position: sticky;
    top: 0px;
}

main {
    margin: 50px;
}

h1 {
    font-weight: lighter;
    font-size: 75px;
}

h2 {
    font-weight: lighter;
    font-size: 30px;
}

h3 {
    font-weight: lighter;
    font-size: 25px;
    margin-bottom: 50px;
    text-decoration: none;
}

h4 {
    font-weight: lighter;
    font-size: 20px;
}

h5 {
    font-weight: lighter;
    font-size: 20px;
    text-decoration: underline;
    text-underline-offset: 10px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--secondary-color);
}

.section_title h3 :hover {
    color: var(--secondary-color);
}

.text_box {
    background-color: var(--secondary-color);
    padding-left: 15px;
    padding-right: 15px;
}

.slogan {
    padding-top: 75px;
}

.description {
    padding-top: 50px;
}

.landing_page {
    padding-bottom: 37vh;
}

.events {
    display: flex; 
    flex-wrap: wrap;
    justify-content: center;
    gap: 2vw;
  }

.event_image img {
    width: 25vw;
}

.event_description {
    text-align: center;
    flex-wrap: wrap;
}

.services {
    display: flex;
    gap: 2vw;
    justify-content: space-around;
    align-items: center;
}

.service {
    text-align: center;
}

.service_popcorn  {
    width: 5vw;
}

.service_social_media {
    width: 5vw;
}

.service_marketing {
    width: 10vw;
}

.campaign {
    display: flex;
    position: relative;
    align-items: center;
}

.campaign_img {
    width: 70vw;
    margin-left: auto;
}

.campaign_text {
    position: absolute;
    top: 25%;
    font-size: 50px;
}

.partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4vw;
    align-items: center;
    margin-bottom: 20px;
}

.partner img {
    width: 15vw;
    align-self: center;
}

footer {
    background-color: var(--secondary-color);
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 20px;
}

.impressum {
    border-bottom: 1px solid var(--primary-color);
}

.impressum_title {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.impressum_address p {
    margin-top: 5px;
    margin-bottom: 5px;
}

.social_media a img {
    width: 50px;
}

.button {
    display: flex;
    justify-content: space-around;
    padding-top: 25px;
}

.button_div {
    background-color: var(--secondary-color);
    padding: 20px 40px;
    text-align: center;
    font-size: 40px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--primary-color);
}

.button_div:hover {
    padding: 25px 45px;
    transition: padding 0.3s ease;
}

.menu-icon img {
    transition: transform 0.3s ease;
}

.menu-icon:hover {
    cursor: pointer;
}

#menu-toggle:checked + .menu-icon img {
    transform: rotate(90deg);
}

#menu-toggle {
    display: none;
}

.side-nav {
    position: fixed;
    top: 122px;
    right: -100%;
    width: 200px;
    height: 100%;
    background:var(--secondary-color);
    color: var(--primary-color);
    transition: right 0.3s ease;
    padding: 25px;
    z-index: 1000;
}

.side-nav ul {
    list-style: none;
}

.side-nav li {
    margin: 25px 0;
}

.side-nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 20px;
}

.side-nav a:hover {
    color: var(--background-color)
}

#menu-toggle:checked ~ .side-nav {
    right: 0;
}

.team {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2vw;  
}

.team_description {
    text-align: center;
}

.team_description h4 {
    margin-top: 0;
    margin-bottom: 5px;  
}

.team_description p {
    margin-top: 0;
    font-size: 15px;
}

.team_image img {
    width: 25vw;
}

.team_description h4 a:hover{
    color: var(--secondary-color);
}

.image_row {
    display: flex;
    align-items: center;
    gap: 10vw;
    flex-wrap: wrap;
    justify-content: center;
}

.image_row img {
    width: 20vw;
}

.jobs {
    margin-bottom: 40vh;
}

.video {
    display: flex;
    padding-top: 20px;
    justify-content: center;
}

.text_services {
    text-align: justify;
    hyphens: auto;
}

.contact_container {
    height: 50vh;
    display: flex;
    justify-content: center;
}

.contact_left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5vh;
}

.contact_left_title h2 {
    margin-bottom: 10px;
}

.contact_inputs {
    width: 40vw;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 20px;
    border-radius: 10px;
}

.contact_inputs:focus {
    border: 4px solid var(--secondary-color);
}

.contact_inputs::placeholder {
    color: var(--background-color);
    opacity: 30%;
}

.contact_left button {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 15px;
    color: var(--primary-color);
    gap: 10px;
    border: none;
    border-radius: 10px;
    background: var(--secondary-color);
    cursor: pointer
}

.contact_left button:hover {
    padding: 20px 35px;
    transition: padding 0.3s ease;
}

.teamgroup {
    display: flex;
    justify-content: center;
}

.teamgroup img {
    width: 60vw;
}

.value {
    display: flex;
    align-items: center;
}

.icon img {
    width: 20vw;
}

.text_us {
    text-align: justify;
    hyphens: auto;
}

.cooperation_icon {
    padding: 30px;
}

.campaign_sub {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 2vw;
    grid-template-rows: auto;
    align-items: center;
}

.campaign_left {
    columns: 1/3;
    width: 45vw;
}

.text_right {
    text-align: justify;
    hyphens: auto;
    columns: 3/4;
}

.campaign_right {
    columns: 3/4;
    width: 45vw;
}

.text_left {
    text-align: justify;
    hyphens: auto;
    columns: 1/3;
}

.campaign_insta {
    columns: 1/3;
    width: 30vw;
}

.text_insta {
    text-align: justify;
    hyphens: auto;
    columns: 3/4;
}

.events_sub {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 2vw;
    grid-template-rows: auto;
    align-items: center;
}

.event_left {
    columns: 1/3;
    width: 30vw;
}

.event_right {
    columns: 2/4;
    width: 30vw;
}

@media screen and (max-width: 768px) {
    .campaign_text {
       font-size: 30px;
    }
    .button_div {
       font-size: 20px;
    }
    .event_image img {
        width: 35vw;
    }
    .partner img {
        width: 25vw;
    }
    h1 {
        font-size: 50px;
    }
    .team_image img {
        width: 37vw;
    }
    .image_row img {
        width: 30vw;
    }
    .icon img {
        width: 30vw;
    }
    .service_popcorn  {
        width: 7.5vw;
    }
    .service_social_media {
        width: 7.5vw;
    }
    .service_marketing {
        width: 15vw;
    }
    .campaign_sub {
        grid-template-columns: auto;
        grid-template-rows: auto auto;
        justify-items: center;
    }
    .campaign_right {
        order: 1;
        width: 70vw;
    }
    .text_left {
        order: 2;
    }
    .campaign_left {
        width: 70vw;
    }
    .events_sub {
        grid-template-columns: auto;
        grid-template-rows: auto auto;
        justify-items: center;
    }
    .event_right {
        order: 1;
        width: 60vw;
    }
    .event_left {
        width: 60vw;
    }
    .contact_inputs {
        width: 60vw;
    }
}

:root {
    --primary-color: #ffffff;
    --secondary-color: #9127CC;
    --background-color: #000000;
}

