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-size: cover;
    background-position: center;
    height: 961px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white;
    text-transform: uppercase;
}

.blog-post-1 {
    background-image: url(../img/Blog_1-banner.jpg);
}

.blog-post-2 {
    background-image: url(../img/Blog_2-banner.jpg);
}

.blog-post-4 {
    background-image: url(../img/Blog_4-banner.jpg);
}

.blog-post-5 {
    background-image: url(../img/Blog_5-banner.jpg);
}

.blog-post-6 {
    background-image: url(../img/Blog_6-banner.jpg);
}

.blog-post-7 {
    background-image: url(../img/Blog_7-banner.jpg);
}

.blog-post-8 {
    background-image: url(../img/Blog_8-banner.jpg);
}

.blog-post-9 {
    background-image: url(../img/Blog_9-banner.jpg);
}

.blog-post-10 {
    background-image: url(../img/Blog_10-banner.jpg);
}

.blog-post-11 {
    background-image: url(../img/Blog_11-banner.jpg);
}

.blog-post-12 {
    background-image: url(../img/Blog_12-banner.jpg);
}

.blog-post-13 {
    background-image: url(../img/Blog_13-banner.jpg);
}

.blog-post-14 {
    background-image: url(../img/Blog_14-banner.jpg);
}

.blog-post-15 {
    background-image: url(../img/Blog_15-banner.jpg);
}

.blog-post-16 {
    background-image: url(../img/Blog_16-banner.jpg);
}

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;
}

.cta-search-blog {
    background: transprent;
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid white;
}

.cta-search-blog:hover {
    background: white;
    color: black;
    border: none;
}

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;
    }
}

.post {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 5rem 0 10rem 0;
    display: flex;
    margin: auto;
    max-width: 1099px;
}

@media screen and (max-width: 1200px) {
    .post {
        padding: 5rem 5rem 8rem 5rem;
    }
}

@media screen and (max-width: 700px) {
    .post {
        padding: 5rem 2rem 5rem 2rem;
    }
}

.blog {
    color: black;
    font-weight: bold;
}

.blog:hover {
    color: black;
    text-decoration: underline;
}

.date {
    font-size: 14px;
}

.share {
    height: 36px;
    background: #848484;
    width: max-content;
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: .5rem 1.5rem;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 600;
    color: #FCE01B;
}

.share a:hover {
    opacity: 0.5;
}

h4 {
    font-style: italic;
    font-size: 24px;
}

.post p {
    line-height: 1.7;
}

hr {
    margin: 2rem 0;
}

.post ul {
    line-height: 1.5;
    padding: 0;
    font-size: 1.1rem;
    margin-top: -20px;
}

.image1 {
    width: 75%;
    filter: drop-shadow(5px 5px 15px rgb(0,0,0,.3));
    margin: 1em auto;
}

.image-blog {
    background-size: cover;
    background-position: center;
    Width: 100%;
    position: relative;
}

.image1-text {
    background-color: rgba(255,255,255,.7);
    text-align: center;
    font-size: 16px;
    position: absolute;
    bottom: 0;
    width: 100%;
    margin-bottom: 5px;
}

#image-zoom:hover {
    transform: scale(1.5);
    transition: transform 0.5s ease;
    margin: 12rem auto;
}

@media screen and (max-width: 1200px) {
    .image1 {
        width: 90%;
    }
    #image-zoom:hover {
        margin: 9rem 0;
        transform: scale(1.3);
    }
}

@media screen and (max-width: 700px) {
    .image1 {
        width: 100%;
    }
    #image-zoom:hover {
        margin: 3rem 0;
        transform: scale(1.1);
    }
}

.cta-quote {
    color: white;
    background: #848484;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 600;
    width: 320px;
    height: 64px;
    border: none;
    border-radius: 32px;
    margin: -5rem 0;
}

.cta-quote:hover {
    color: #848484;
    background: transparent;
    border: 2px solid #848484;
}

.cta {
    justify-self: center;
    text-align: center;
    margin-top: 5em;
}

.cta p {
    margin-top: 1.25em;
}

.related-posts {
    background: #848484;
    display: flex;
    flex-direction: column;
    place-items: center;
    padding-top: 10rem;
}

button {
    color: #FCE01B;
    background: transparent;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 600;
    width: 320px;
    height: 64px;
    border: 2px solid #FCE01B;
    border-radius: 32px;
    margin-top: 1em;
}

button:hover {
    background-color: #FCE01B;
    color: black;
}

.gallery {
    padding: 15rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10rem;
}

.gallery p {
    color: white;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media screen and (max-width: 2000px) {
    .gallery {
        padding: 8rem;
        gap: 8rem;
    }
}

@media screen and (max-width: 1200px) {
    .gallery {
        padding: 5rem 0;
        gap: 5rem;
    }
}

@media screen and (max-width: 700px) {
    .gallery {
        padding: 5rem 0;
        gap: 5rem;
        grid-template-columns: 1fr;
    }
    .image {
        height: 300px;
        object-fit: cover;
    }
    .gallery p {
        -webkit-line-clamp: 2;
    }
    .container1, .container2 {
        height: 820px;
        }  
}

.container1 {
    background-image: linear-gradient(rgba(252,224,27,.6), rgb(0,0,0));
}

.title, .line-header, .gallery p, .gallery button {
    margin-left: 10%;
    margin-right: 10%;
}

.image {
    width: 90%;
}

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;
}

.container2 {
    background-image: linear-gradient(rgb(0,0,0), rgba(252,224,27,.6));
    position: relative;
}

.container2 .image {
    position: absolute;
    bottom: 0;
    right: 0;
}

.container2 .title {
    margin-top: 40px;
}

button {
    color: #FCE01B;
    background: transparent;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 600;
    width: 320px;
    height: 64px;
    border: 2px solid #FCE01B;
    border-radius: 32px;
    margin-bottom: 3rem;
}

@media (min-width: 700px) and (max-width: 825px) {
    button {
        width: 250px;
    }
}
button:hover {
    background-color: #FCE01B;
    color: black;
}

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;
    }
}
