/* NEW */
.filter {
    display: flex;
    width:auto;
    gap: 30px;
    margin-bottom: 30px;
    
}

.filter-btn {
    position: relative;
    font-size: 20px;
    font-family: 'lato';
    letter-spacing: 0.05em;
    font-weight: lighter;
    color: lightblue;
    padding: 10px;
    border: none;
    background-color: white;
    cursor: pointer;
    transition: color 0.5s ease;
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 3px;
    background-color: rgb(133, 151, 160);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.filter-btn.filter-active::after {
    width: 100%;
}
.filter-btn.filter-active {
    color: rgb(49, 49, 49);
}

@media screen and (max-width: 600px) {
    .filter {
        display: none;
    }
}


/* General CSS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4 {
    font-family: 'Anton';
    letter-spacing: 0.05em;
    font-weight: lighter;
    color: rgb(49, 49, 49);
}

h1 {
    font-size: 100px;
}

h2 {
    font-size: 60px;
}

h3 {
    font-size: 48px;
}

h4 {
    font-size: 40px;

}

h6 {
    font-size: 16px;
    letter-spacing: 0.05em;
    color: rgb(49, 49, 49);
}

h5,
h6, 
a,
p {
    font-family: 'Lato';
    line-height: 1.3em;
    font-size: 16px;
    color: rgb(49, 49, 49);
}

.black-text {
    color: rgb(49, 49, 49);
}

.white-text {
    color: white;
}

.black-fill {
    color: rgb(49, 49, 49);
}

.white-fill {
    fill: white;
}

.black-background {
    background-color: black;
}

.grey-background {
    background-color: #7595a363;
}

.nav-color {
    background-color: rgb(133, 151, 160);
}

.white-background {
    background-color: white;
}

.red-background {
    background-color: rgb(170, 51, 51);
}

.outline {
    border: 1px solid blue;
}

.full-width {
    background-repeat: no-repeat;
    left: 0; 
    right: 0;
    width: 100%;
    height: auto;
    background-size: cover;
    padding: 70px 100px 30px 100px;
    margin-bottom: 3em;
}

.shadow {
    /* filter: drop-shadow(5px 5px 12px); */
    box-shadow: 3px 3px 8px black;
}

.rounded {
    border-radius:20px;

}










/* NAVIGATION */


.navbar {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    height: 100px;
    padding-left: 55px;
    padding-right: 35px;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.nav-title-mobile {
    display: none;
}

.nav-title,
.nav-item {
    padding: 10px 0;
    font-size: 16px;
    letter-spacing: 0.5em;
    text-decoration: none;
    transition: 0.5s;
    cursor: default;
}

.nav-item:hover,
.nav-title:hover {
    color: aqua;
}

.nav-items {
    display: flex;
    column-gap: 40px;
    align-items: center;
    justify-items: end;
}

.hamburger {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    margin-left: 2px;
    margin-right: 12px;
}

.burger-bar1,
.burger-bar2,
.burger-bar3 {
    width: 20px;
    height: 3px;
}

.nav-title-mobile h5 {
    font-size: 0.9rem;
    letter-spacing: 0.5em;
    text-decoration: none;
}

@media screen and (max-width: 600px) {
    .nav-title {
        display: none;
    }

    .nav-items {
        display: none;
    }

    .nav-title-mobile {
        display: flex;
        align-items: center;
    }
    
}

/* The Overlay (background) */
.overlay {
    /* Height & width depends on how you want to reveal the overlay (see JS below) */
    height: 100%;
    width: 0;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: left;
    position: fixed; /* Stay in place */
    z-index: 200; /* Sit on top */
    left: 0;
    top: 0;
    background-color: rgb(0, 0, 0); /* Black fallback color */
    background-color: rgba(0, 0, 0, 0.95); /* Black w/opacity */
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
.overlay-content {
    display: grid;
    grid-template-columns: 1fr;
    align-content: center;
    align-items: center;
    left: 70px;
    position: relative;
    margin-bottom: 80px;
    width: 100%; /* 100% width */
    justify-content: left;
    margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
}

/* The navigation links inside the overlay */
.overlay a {
    font-family: 'Anton';
    letter-spacing: 0.05em;
    font-size: 80px;
    text-decoration: none;
    color: #818181;
    line-height: 1em;
    display: block; /* Display block instead of inline */
    transition: 0.3s; /* Transition effects on hover (color) */
}

/* When you mouse over the navigation links, change their color */
.overlay a:hover,
.overlay a:focus {
    font-family: 'Anton';
    letter-spacing: 0.05em;
    color: #f1f1f1;
    font-size: 80px;
}

/* Position the close button (top right corner) */
.overlay .closebtn {
    font-family: 'Anton';
    position: absolute;
    top: 7px;
    left: 70px;
    font-size: 80px;
    z-index: 300;
}

.overlay-divide {
    background-color: #818181;
    width: 280px;
    height: 2px;
    padding: 0;
    margin-top: 10px;
    margin-bottom: 5px;
}

/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
    .overlay a {
        font-family: 'Anton';
        letter-spacing: 0.05em;
        font-size: 20px;
    }
    .overlay .closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
    .overlay-divide {
        width: 70px;
    }
}

/* END NAVIGATION */















/* HERO TITLE */
#the {
    opacity: 0;
}

#welchBrothers {
    opacity: 0;
}

.hero {
    position: relative;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    text-align: center;
    z-index: 1;

    /* adjust padding to maintain video proportions */
    /* https://faq.dailymotion.com/hc/en-us/articles/360022841393-How-to-preserve-the-player-aspect-ratio-on-a-responsive-page */
    padding-bottom: 56.25%;
}

#hero-mobile {
    display: none;
}

.hero video {
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.header-the {
    position: absolute;
    font-family: 'Anton';
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    /* transition: 3s;
    transition-duration: 3s;
    -webkit-transition-duration: 3s;
    -ms-transition-duration: 3s;
    -moz-transition-duration: 3s; */
    color: white;
    text-shadow: rgba(255, 255, 255, 0.6) 1px 1px 1px,
        rgba(0, 0, 0, 0.6) -2px -2px 2px;
    margin-top: 30vh;
}

.header-welchBrothers {
    position: absolute;
    margin-top: 35vh;
    font-family: 'Anton';
    font-size: 98px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    /* transition: 5s;
    transition-duration: 3s;
    -webkit-transition-duration: 3s;
    -ms-transition-duration: 3s;
    -moz-transition-duration: 3s; */
    color: white;
    text-shadow: rgba(255, 255, 255, 0.6) 1px 1px 1px,
        rgba(0, 0, 0, 0.6) -4px -4px 2px;
}


.header-the-hidden {
    font-size: 24px;
    color: transparent;
    position: absolute;
    margin-top: 30vh;
    letter-spacing: 0.2em;
}

.header-welchBrothers-hidden {
    font-size: 98px;
    color: transparent;
    letter-spacing: 0.3em;
    position: absolute;
    margin-top: 35vh;
}

.intro-text-desktop {
    display: inline;
}

#intro-text-mobile {
    display: none;
}

.see-more-btn {
    text-decoration: none;
    left: 0;
    right: 0;
    text-align: center;
    padding: 20px 0;
    
}
.see-more-btn h4{
    text-align: center;
    color: rgb(49, 49, 49);
}





/* CONTENT */

.content {
    width: 100%;
    height: auto;
    padding-right: 6em;
    padding-left: 6em;
    padding-bottom: 2em;
    padding-top: 3em;
}

.text-block {
    height: auto;
    width: 100%;
    padding-bottom: 50px;
    padding-top: 30px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1em;
}

.text-block-item {
    grid-column: 3 / 10;
    margin-bottom: 12px;
}


.gallery {
    display: grid;
    justify-items:stretch;
    align-items: stretch;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 0.8em;
    margin: 20px 0 50px 0;
    /* transition: 1s; */
} 

.gallery-single-column {
    display: grid;
    justify-items: stretch;
    align-items: stretch;
    /* grid-template-columns: repeat(auto-fill, minmax(450px, 1fr)); */
    grid-template-columns: 1fr;
    gap: 0.8em;
    margin: 20px 0 50px 0;
    transition: 1s;
}

.gallery-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
}

.gallery-item-img {
    min-width: 350px;
    min-height: 350px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: 1s;
}

.hustle-item-img {
    min-width: 350px;
    min-height: 600px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: 1s;
}

.gallery-item-info {
    position: absolute;
    top: 40px;
    display: grid;
    gap: 80px;
    grid-template-columns: 1fr;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
    height: 100%;
    text-align: center;
    width: 100%;
}

.gallery-item-overlay {
    transition: 1s;
    filter: brightness(40%);
}

.gallery-item-info h3,
.gallery-item-info h4,
.gallery-item-info h6 {
    color: transparent;
    text-transform: uppercase;
    transition: 1s;
}

.gallery-item-info:hover h3,
.gallery-item-info:hover h4, 
.gallery-item-info:hover h6 {
    color: white;
}

.archive {
    display: grid;
    justify-items: stretch;
    align-items: stretch;
    justify-content: space-around;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
    margin: 20px 0 50px 0;
}

.archive-item {
    position: relative;
    justify-content: center;
}

.archive-item iframe {
    min-width: 250px;
    min-height: 200px;
    width: 100%;
    height: 100%;
}

.campaign-header {
    position: relative;
    width: 100vw;
    height: 480px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.campaign-header h3 {
    color: rgb(255, 255, 255);
    font-family: 'Anton';
    font-size: 140px;
    text-transform: uppercase;
    opacity: 0.6;
    z-index: 3;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    line-height: 118px;
}

.campaign-item {
    object-fit: cover;
    width: 100%;
    height: 100%;
    text-align: center;
}

.campaign-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.campaign-item video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}



.one-column-grid-narrow {
    display: grid;
    left: 0;
    right: 0;
    grid-template-columns: 1fr;
    justify-content: center;
    margin-bottom: 3em;
    gap: 3em;
    width: 100px;
}

.one-column-grid {
    display: grid;
    left: 0;
    right: 0;
    grid-template-columns: 1fr;
    justify-content: center;
    margin-bottom: 3em;
    gap: 3em;
}

.two-column-grid {
    display: grid;
    gap: 0.8em;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    margin-bottom: 3em;
}

.three-column-grid {
    display: grid;
    gap: 0.8em;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    margin-bottom: 3em;
}

.central-column-grid {
    display: grid;
    gap: 0.8em;
    grid-template-columns: 1fr 2fr 2fr 1fr;
    justify-content: center;
    margin-bottom: 3em;
}

.four-column-grid {
    display: grid;
    gap: 0.8em;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-content: center;
    margin-bottom: 3em;
}

.five-column-grid {
    display: grid;
    gap: 0.8em;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    justify-content: center;
    margin-bottom: 3em;
}
.six-column-grid {
    display: grid;
    gap: 0.8em;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    justify-content: center;
    margin-bottom: 3em;
}

.footer {
    margin-top: 20px;
    position: absolute;
    height: 280px;
    background-color: #1D1D1D;
    display: flex;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    padding-right: 6em;
    padding-left: 6em;
    width: 100vw;
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr;
    align-content: center;
    color: white;
    height: 100%;
}



.footer-social {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-content: center;
    gap: 10px;
}

.footer-social img {
    height: 50px;
    width: 50px;
}



/* CONTACT SECTION */
/* https://codepen.io/colorlib/pen/KVoZyv */

.contact-header {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: grid;
    justify-items: center;
    align-items: center;
}
.form-wrapper {
    background-color: white;
    height: auto;
    width: 50%;
    min-width: 400px;
    padding: 2em 3em;
    z-index: 20;
    box-shadow: 2px 2px 8px #3a3a3a;
}

fieldset {
    border: medium none !important;
    margin: 0 0 10px;
    min-width: 100%;
    padding: 0;
    width: 100%;
  }
  
  #contact input[type="text"],
  #contact input[type="email"],
  #contact input[type="tel"],
  #contact input[type="url"],
  #contact textarea {
    width: 100%;
    border: 1px solid #ccc;
    background: #FFF;
    margin: 0 0 5px;
    padding: 5px;
  }
  
  #contact input[type="text"]:hover,
  #contact input[type="email"]:hover,
  #contact input[type="tel"]:hover,
  #contact input[type="url"]:hover,
  #contact textarea:hover {
    -webkit-transition: border-color 0.3s ease-in-out;
    -moz-transition: border-color 0.3s ease-in-out;
    transition: border-color 0.3s ease-in-out;
    border: 1px solid #aaa;
  }
  
  #contact textarea {
    height: 70px;
    max-width: 100%;
    resize: none;
  }
  
  #contact button[type="submit"] {
    cursor: pointer;
    width: 100%;
    border: none;
    background: #4CAF50;
    color: #FFF;
    margin: 0 0 5px;
    padding: 10px;
    font-size: 15px;
  }
  
  #contact button[type="submit"]:hover {
    background: #43A047;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
  }
  
  #contact button[type="submit"]:active {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
  }


/* END CONTACT SECTION */




@media screen and (max-width: 800px) {
    #the {
        opacity: 1;
    }

    #welchBrothers {
        opacity: 1;
    }

    .hero {
        position: relative;
        height: 100vh;
        padding-bottom: 0;
    }

    #hero-desktop {
        display: none;
    }

    #hero-mobile {
        display: inline;
    }

    .header-the {
        font-size: 18px;
    }
    
    .header-welchBrothers {   
        font-size: 36px;
    }
    
    .header-the-hidden {
        font-size: 18px;
    }
    
    .header-welchBrothers-hidden {
        font-size: 36px;
    }

    .intro-text-desktop {
        display: none;
    }
    
    #intro-text-mobile {
        display: inline;
        height: auto;
        width: 100%;
        padding-bottom: 50px;
        padding-top: 30px;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 1em;
    }
    
    .text-block-item {
        grid-column: 2 / 12;
        margin-bottom: 12px;
    }

    #longTitle {
        font-size: 20px;
    }

    .content {
        padding: 10px;
        width: 100%; 
      
    }

    .content h3{
        padding-left: 10px;
        padding-right: 10px;
    }
        
    .gallery {  
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        margin: 10px 5px 30px 5px;
        transition: 1s;
    }

    .gallery-item-img {
        min-width: 250px;
        min-height: 250px;
    }
    .gallery-item-info h3 {
        font-size: 30px;
    }

    .gallery-item-info h6 {
        font-size: 16px;
    }

    .gallery-item-info h3,
    .gallery-item-info h4,
    .gallery-item-info h6 {
        color: white;
    }

    .gallery-item-info h6 {
        opacity: 0;
    }

    .three-column-grid,
    .four-column-grid,
    .five-column-grid {
        grid-template-columns: 1fr;
    }

    .rounded {
        border-radius: 10px;
    }

    .campaign-header h3 {
        font-size: 18vw;  
    }

    .footer {
        flex-direction:column;
        height: 400px;
        padding: 40px 10px;
        gap: 30px;
    }
}

.hideElement {
    display: none;
    opacity: 0;
}