* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Roboto', sans-serif;
    --white: #F0EEED;
    --black: #322A2A;
    --black_light: #938C86;
    --primary: #DF5133;
    --primary_dark: #b34029;
    --accent: #C8A16C;
}

body {
    height: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

::selection {
    background: #DF5133;
    color: #F0EEED;
  }

/* GENERAL */

li {
    list-style-type: none;
}

article {
    margin-bottom: 4rem;
}

article li {
    list-style-type: circle;
}

a {
    text-decoration: none;
    color: unset;
    transition: color .2s;
}

a:hover {
    color: var(--primary);
}

h1,
h2,
h3,
h4 {
    font-family: 'DM Serif Display', serif;
    color: var(--black);
}

h1 {
    font-size: 2rem;
}

/* REUSEABLE */

.wrapper {
    max-width: 95rem;
    padding: 0 8rem;
    margin: 0 auto;
}

.pagebtn {
    background-color: var(--primary);
    font-family: 'DM Serif Display', serif;
    border: none;
    color: #fff;
    padding: .7rem 1.9rem;
    font-size: clamp(1.2rem, 0.2rem + 5vw, 1.7rem);
    border-radius: 50px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .2s;
}

.pagebtn:hover {
    color: #fff;
    background-color: var(--primary_dark);
    transform: translateY(1px);
}

.facebook_container {
    width: 500px;
    margin: 0px auto;
}

.two_col_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.three_col_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.ordered_list li {
    list-style-type:decimal;
}

.ordered_list {
    padding-inline: clamp(4rem, -1.053rem + 25.263vw, 10rem);
    margin-bottom: 2rem;

}

/* HEADER */

.pageheader {
    height: 6rem; /* change based on scroll */
    width: 100%;
    background-color: #fff;
    /* filter: drop-shadow(10px, 0, 10px, rgba(0,0,0,.5)); */
    border-bottom: 1px solid var(--black_light);
}

.pageheader_content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pageheader_logo {
    object-fit: contain;
    width: 100%;
    height: 100%;
    align-self: center;
}

.pageheader_links {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

/* BURGER */

.burger_menu,
.burger_menu_close {
    display: none;
    align-items: center;
    cursor: pointer;
}

.burger_menu i {
    font-size: 3rem;
    padding: 15px;
}

.burger_menu_close i {
    font-size: 4rem;
    padding: 15px;
    justify-content: end;
}

/* HERO */

.pagehero {
    padding-block: 20px 80px;
}

.hero_content_new {
    /* Change image here */
    background-image: url(../media/img/mt_hero_web.jpg);
    background-size: cover;
    background-position-y: bottom;
    height: clamp(25rem, -17.857rem + 57.143vw, 37.5rem);
    border-radius: 50px;
    display: flex;
    align-items: end;
    /* Put justify content to end to put button on bottom right */
    justify-content: center;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, .2));
    padding: 2rem;
}

#btn_grey {
    background-color: var(--black);
    color: var(--black_light);
    cursor: default;
    font-size: clamp(1.25rem, -0.893rem + 2.857vw, 1.875rem);
    padding: clamp(0.5rem, -0.571rem + 1.429vw, 0.813rem) 30px;
}

#btn_grey:hover {
    animation-name: shake;
    animation-duration: .3s;
    opacity: 50%;
}

@keyframes shake {
    0% {
        transform: translateX(-0px);
    }
    10% {
        transform: translateX(-6px);
    }
    30% {
        transform: translateX(4px);
    }
    40% {
        transform: translateX(-4px);
    }
    50% {
        transform: translateX(4px);
    }
    60% {
        transform: translateX(-4px);
    }
    70% {
        transform: translateX(4px);
    }
    80% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(0px);
    }
    
}

/* LANDING CONTENT */

.landing_about_content h1 {
    text-align: center;
    font-size: clamp(2.2rem, 1.2rem + 5.333vw, 3.2rem);    
    margin-bottom: 2rem;
}

.landing_about_content h2 {
    text-align: left;
    font-size: clamp(2.3rem, 2.2111rem + 0.4444vw, 2.6rem);
    margin-bottom: 2rem;
}

.landing_about_content h3 {
    text-align: left;
    font-size: clamp(1.5rem, 1.3519rem + 0.7407vw, 2rem);
    margin-bottom: 2rem;
}

.landing_about_content h4 {
    text-align: left;
    /* font-size: clamp(1.75rem, 1.011rem + 2.783vw, 2.75rem); */
    font-size: clamp(1.2rem, 1.1111rem + 0.4444vw, 1.5rem);
    /* padding-inline: 1rem; */
    margin-bottom: .5rem;
}

.landing_about_content ul {
    padding-left: 2rem;
}

.landing_about_content li {
    margin-left: 1rem;
}

.landing_about_content ul li p {
    padding-right: 3rem;
    padding-left: 0rem;
}

.landing_about_content p {
    font-size: 1.2rem;
    padding-inline: 2rem;
    margin-bottom: 1.2rem;
}

.landing_about_content a {
    color: var(--primary);
}

.landing_about_content a:hover {
    color: var(--primary_dark);
}

.landing_about_content img {
    display: block;
    margin: 0 auto;
    width: 40%;
    max-width: 40%;
    padding: 1rem;
}

#forestilling_logo {
    width: 60%;
    display: flex;
    margin: 0 auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0px 4px 2px rgba(0,0,0,.5));
}

.landing_pic_gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 2vw;
}

.landing_pic {
    object-fit: contain;
    width: 100%;
}

.fb_container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-block: 4rem;
}

/* FOOTER */

.pagefooter {
    background-color: var(--black);
    position:relative;
    width: 100%;
    color: var(--white);
    bottom: 0px;
}

.pagefooter h3 {
    font-size: 1.5rem;
}

.pagefooter * h3 {
    color: var(--white);
}

.pagefooter_content {
    padding-block: 5rem;
}


.pagefooter_contact * {
    margin-bottom: 1rem;
}

.pagefooter a {
    text-decoration: underline;
}

.pagefooter_logo {
    align-self: flex-end;
    justify-self: center;
}

.pagefooter_logo_image {
    filter: invert(1);
    height: 4rem;
}

.pagefooter_links {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#pagefooter_links_press {
    padding-top: 1rem;
}

.pagefooter_links_container a i {
    font-size: 2rem;
    margin-left: 1rem;
    margin-top: 1rem;
}

.pagefooter_sponsors {
    display: flex;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    margin-top: 2rem;
}

.pagefooter_sponsors img {
    height: 40px;
}

/* MEDIA QUERY */

@media screen and (max-width:1200px) {
    /* REUSEABLE */

    .wrapper {
        max-width: 95rem;
        padding: 0 1rem;
    }

    .pageheader_logo {
        height: 60%;
        width: 60%;
    }

    .pageheader_links_container {
        z-index: 100;
        background-color: var(--white);
        position: fixed;
        height: 100%;
        width: 16rem;
        top: 0;
        right: -300px;
        transition: right .2s;
        filter: drop-shadow(-10px 0px 10px rgba(0,0,0,.3));
    }

    .pageheader_links_container.clicked {
        right: 0px;

    }

    .pageheader_links {
        position: relative;
        text-align: right;
        top: 8rem;
        right: 4rem;
        display: flex;
        flex-direction: column;
    }

    .burger_menu,
    .burger_menu_close {
        display: flex;
        position: absolute;
        right: 0;
    }

    /* HERO */

    .hero_content_new {
    height: clamp(17.5rem, 10rem + 20vw, 25rem);
    padding: clamp(0.625rem, 0rem + 1.667vw, 1.25rem);
    background-size: clamp(42.5rem, 13.125rem + 78.333vw, 71.875rem);
    background-repeat: no-repeat;
    background-position-x: center;
    }

    /* LANDING CONTENT */

    .landing_pic_gallery {
        grid-template-columns: repeat(1, 1fr);
    }

    /* FOOTER */

    .pagefooter {
        margin-top: 1rem;
    }
    
    .three_col_grid.smallfooter {
        grid-template-columns: repeat(1, 1fr);
        grid-template-areas: "f_contact" "f_links" "f_logo";
        text-align: center;
        margin: 0 auto;
        gap: 2rem;
    }

    .pagefooter_content {
    padding: 5rem;
    }

    .pagefooter_contact {
    grid-area: f_contact;
    }

    .pagefooter_logo {
    grid-area: f_logo;
    }

    .pagefooter_links {
    text-align: center;
    grid-area: f_links;
    }
}

@media screen and (max-width:600px) {
    /* HERO */

    .hero_content_new {
        background-size: clamp(17.5rem, -7.5rem + 133.333vw, 42.5rem);
        height: clamp(9.375rem, 0rem + 50vw, 18.75rem);
        justify-content: center;
    }

    .hero_content_new .pagebtn {
        transform: translateY(70px);
    }

    #btn_grey {
        font-size: clamp(1.125rem, 0.75rem + 2vw, 1.5rem);
    }

    #btn_grey:hover {
        animation-name: none;
    }

    /* LANDING CONTENT */

    .landing_about_content p {
        padding-inline: 3rem;
    }

    #forestilling_logo {
        width: 100%;
        display: flex;
        margin: 0 auto;
        margin-bottom: 2rem;
        filter: drop-shadow(0px 2px 1px rgba(0,0,0,.5));
    }

    /* FACEBOOK */

    .fb_container {
        display: none;
    }

    /* FOOTER */

    .pagefooter_content {
        padding: 5rem 2rem;
    }

    .pagefooter *,
    .pagefooter h3 {
    font-size: .8rem;
    }

    .pagefooter_logo_image {
    height: 2rem;
    }
}