body {
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 20px;
    margin: 0;
}

.bar-yellow {
    background-color: #FCE01B;
    background-size: cover;
    height: 5px;
    width: 100%;
}

header {
    background-image: url(../img/Banner_Gallery.jpg);
    background-size: cover;
    background-position: center;
    height: 961px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white;
    text-transform: uppercase;
}

h1 {
    font-family: TT Rounds Neue Trl Cnd, Arial Rounded MT Bold, Helvetica Rounded, Arial, sans-serif;
    font-size: 48px;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 8px;
    text-align: center;
}

h3 {
    font-size: 24px;
    max-width: 900px;
    text-align: center;
}

a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
}

a:hover {
    color:  #FCE01B;
}

.line-header {
    background-color: #FCE01B;
    background-size: cover;
    height: 10px;
    width: 225px;
    margin-bottom: 28px;
    border-radius: 10px;
}

.logo {
    position: absolute;
    left: 75px;
    top: 58px;
}

.headline {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70%;
}

.navigation {
    height: 700px;
    background: rgba(0,0,0,.8);
    backdrop-filter: blur(15px);
    filter: drop-shadow(-20px 15px 8px rgba(0,0,0,.2));
    transform: scale(0,1);
    transform-origin: right;
    transition: transform 300ms ease-in-out;
    display: flex;
    align-items: flex-end;
    position: absolute;
    z-index: 9;
    top: 0;
    right: 0;
}

.navigation ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

.navigation li {
    border-bottom: .1px solid rgba(255,255,255,.5);
    padding: 30px 70px;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 7px;
}

#navigation-contact {
    border-bottom: .1px solid rgba(255,255,255,0);
}

#menu:checked ~ .navigation {
    transform: scale(1,1);
}

#menu:checked ~ .navigation a {
    opacity: 1;
    transition: opacity 250ms ease-in-out 300ms;
}

#menu {
    display: none;
}

#hamburger {
    position: absolute;
    top: 90px;
    right: 75px;
    z-index: 10;
    transition: transform 500ms ease-in-out;
}

.bar1, .bar2 {
    display: block;
    background: #FCE01B;
    width: 35px;
    height: 5px;
    margin: 6px auto;
    transition: transform 500ms ease-in-out;
}

#hamburger.animate .bar1 {
    transform: translateY(5.5px) rotate(45deg);
}

#hamburger.animate .bar2 {
    transform: translateY(-5.5px) rotate(-45deg);
}
.current-page {
    color:  #FCE01B;
}

@media screen and (min-width: 1000px) {
    #hamburger {
      display: none;
    }

    header {
      display: grid;
      grid-template-columns: 60% 20%;
      place-items: center;
    }

    .headline {
      grid-column: 1;
    }

    .navigation {
      transform: scale(1,1);
      background: rgba(0,0,0,0);
      backdrop-filter: blur(0);
    }

    .navigation a {
      opacity: 1;
      transition: opacity 250ms ease-in-out 300ms;
    }

    #navigation-contact {
        border-bottom: .1px solid rgba(255,255,255,.5);
    }
}

@media screen and (max-width: 1000px) {
    header {
        height: 700px;
    }
    h1 {
        font-size: 38px;
    }
    h3 {
        font-size: 20px;
    }
    .headline {
        margin-top: 100px;
    }
}

@media screen and (max-width: 500px) {
    header {
        height: 500px;
    }
    h1 {
        font-size: 25px;
    }
    h3 {
        font-size: 16px;
    }
    .headline {
        margin-top: 100px;
    }
    .logo {
        left: 25px;
        top: 25px;
    }
    #hamburger {
        top: 40px;
        right: 25px;
    }
}

.gallery {
    background: #848484;
    display: flex;
    flex-direction: column;
    place-items: center;
    gap: 15rem;
    padding: 15rem 0;
}

.container1 {
    background: black;
    height: 727px;
    width: 90%;
    max-width: 1099px;
    filter: drop-shadow(5px 5px 15px rgb(0,0,0,.3));
    display: flex;
    place-items: center;
    padding-left: 3rem;
}

.yellow-gradient1 {
    background-image: linear-gradient(rgba(252,224,27,.6), rgba(252,224,27,0));
    height: 100%;
    aspect-ratio: .92 / 1;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.box1 {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-areas:
        "top bottom";
}

.content1 {
    z-index: 1;
    grid-area: top;
    padding-right: 50px;
}

.gallery p {
    color: white;
    line-height: 1.7;
}

h2 {
    font-family: TT Rounds Neue Trl Cnd, Arial Rounded MT Bold, Helvetica Rounded, Arial, sans-serif;
    font-size: 32px;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 8px;
    text-align: left;
    color: white;
}

.image1 {
    justify-self: end;
    grid-area: bottom;
}

.image-mobile {
    display: none;
}

@media screen and (max-width: 1200px) {
    .container1 {
        height: 950px;
        width: 100%;
    }
    .yellow-gradient1 {
        height: 75%;
    }
    .box1 {
        grid-template-columns: 1fr;
        grid-template-areas:
            "bottom"
            "top";
    }
    .content1 h2 {
        margin-top: -90px;
    }
    .gallery {
        gap: 10rem;
    }
    .content1 {
        padding: 0 5rem 0 1.5rem;
    }
}

@media screen and (max-width: 700px) {
    .container1 {
        height: 950px;
    }
    .yellow-gradient1 {
        height: 50%;
    }
    .image-desktop {
        display: none;
    }
    .image-mobile {
        display: block;
    }
    .content1 h2 {
        margin-top: -50px;
    }
    .gallery {
        padding: 10rem 0;
    }
    .content1 {
        padding: 0 4rem 0 1.5rem;
    }
}

.container2-3 {
    display: flex;
    flex-direction: row;
    gap: 10rem;
}

.container2, .container3 {
    width: 542px;
    height: 1152px;
    background: black;
    filter: drop-shadow(5px 5px 15px rgb(0,0,0,.3));
    position: relative;
    place-content: center;
}

.yellow-gradient2 {
        background-image: linear-gradient(rgba(252,224,27,.6), rgba(252,224,27,0));
        height: 50%;
        width: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
}

.content2, .content3 {
    padding: 0 3rem;
    z-index: 1;
}

.image3 {
    justify-self: end;
}

.yellow-gradient3 {
    background-image: linear-gradient(360deg, rgba(252,224,27,.6), rgba(252,224,27,0));
    height: 50%;
    width: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

@media screen and (max-width: 1200px) {
    .container2-3 {
        flex-direction: column;
    }
    .container2, .container3 {
        height: 950px;
        width: 100%;
    }
    .yellow-gradient2, .yellow-gradient3 {
        height: 75%;
        width: 57%;
    }
    .content2 {
        place-items: end;
        padding-right: 3rem;
    }
    .content2 p {
        padding-right: 0;
        text-align: right;
    }
    .content2 h2 {
        text-align: right;
        margin-top: -90px;

    }
    .content3 p {
        text-align: left;
    }
}

@media screen and (max-width: 700px) {
    .yellow-gradient2, .yellow-gradient3 {
        height: 50%;
        width: 75%;
    }
    .container2-3 {
        gap: 8rem;
    }
    .gallery {
        gap: 8rem;
    }
    .content3 {
        padding-right: 2rem;
    }
}

.container4, .container5 {
    background: rgba(0,0,0,0);
    height: 727px;
    width: 90%;
    max-width: 1099px;
    display: flex;
    align-items: center;
    position: relative;
}

.container5 {
    margin-top: -5rem;
}

.yellow-gradient4 {
    background-image: linear-gradient(rgba(252,224,27,.6), rgba(252,224,27,0));
    height: 100%;
    aspect-ratio: .92 / 1;
    position: absolute;
    top: 0;
    left: 0;
}

.box4 {
    display: grid;
    grid-template-columns: 50% 50%;
    z-index: 3;
    align-items: center;
}

.content4 p, .content5 p {
    color: black;
}

.content4 {
    padding-left: 3rem;
}

.box5 {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-areas:
        "top bottom";
    z-index: 3;
    align-items: center;
}

.yellow-gradient5 {
    background-image: linear-gradient(rgba(252,224,27,.6), rgba(252,224,27,0));
    height: 100%;
    aspect-ratio: .92 / 1;
    position: absolute;
    top: 0;
    right: 0;
}

.image5 {
    grid-area: bottom;
    justify-self: end;
}

.content5 {
    z-index: 5;
    grid-area: top;
    padding-right: 3rem;
}

@media screen and (max-width: 1200px) {
    .container4, .container5 {
        height: 950px;
        width: 100%;
    }
    .yellow-gradient4, .yellow-gradient5 {
        height: 75%;
    }
    .box4 {
        grid-template-columns: 1fr;
    }
    .content4 h2 {
        margin-top: -90px;
    }
    .content4, .content5 {
        padding: 0 3rem;
    }
    .content4 h2, .content4 p {
        text-align: right;
    }
    .content4 {
        place-items: end;
    }
    .box5 {
        grid-template-columns: 1fr;
        grid-template-areas:
            "bottom"
            "top";
    }
    .image5 {
        align-self: end;
    }
    .content5 h2 {
        margin-top: -90px;
    }
    .container5 {
        margin-top: -9rem;
    }
}

@media screen and (max-width: 700px) {
    .container4, .container5 {
        height: 900px;
    }
    .container5 {
        margin-top: -7rem;
    }
}

#container2-3 {
    margin-top: -6rem;
}

footer {
    background-color: #B4B4B4;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.social-media-icons {
    display: flex;
    gap: 2em;
    margin-top: 25px;
}

.social-media-icons a:hover {
    opacity: 0.5;
}

.bottom-navigation{
    list-style-type: none;
    text-align: center;
    display: flex;
    gap: 3em;
    margin-top: 50px;
    letter-spacing: 4px;
  }

.bottom-nav-line-1, .bottom-nav-line-2 {
    display: flex;
    gap: 3em;
    align-items: center;
  }

.line-gray {
    height: 50px;
    width: .56px;
    background-color: #848484;
}

#current-page {
    color: black;
}

.copyright-info {
    color: white;
    text-align: center;
    font-size: 12px;
    letter-spacing: 1px;
    margin-top: 35px;
}

@media screen and (max-width:1000px) {
    .line-gray-2 {
        opacity: 0;
        visibility: hidden;
    }
    .footer {
        height: 443px;
    }
    #line-gray-2 {
        opacity: 0;
        visibility: hidden;
    }
    .bottom-navigation {
          flex-direction: column;
          gap: 1em;
          align-items: center;
    }
    .bottom-nav-line-1 {
        margin-left: 50px;
    }
    .bottom-nav-line-2 {
        margin-left: -35px;
    }
    .bottom-nav-line-1, .bottom-nav-line-2 {
        gap: 2em;
    }
}
