/* skip to content */
.hidden-mobile {
    position: absolute;
    left: -1000px;
    height: 25px;
    background-color: white;
    opacity: 0;
}

.hidden-mobile:focus {
    left: 1%;
    opacity: 1;
    position: fixed;
    top: 10px;
}

.header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
}

.logo {
    color: black;
    font: 700 40px "Libre Franklin", sans-serif;
    text-align: center;
}

nav {
    font-size: 30px;
    color: #da1f05;
    font-weight: 500;
    padding: 0px;
}

nav a {
    text-decoration: none;
    font-family: "Libre Franklin", sans-serif;
    color: #da1f05;
}

li a.active {
    font-weight: 700;
}

li a:hover {
    color: #964000;
}

/* main and body */

body {
    background-image: url('../images/bg_test1.png');
    background-attachment: fixed;   
    background-position: center; 
    background-repeat: no-repeat;
    background-size: cover;       
    height: 400px;
}

.intro {
    font-family: "Libre Franklin", sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #da1f05;
    text-align: left;
    margin-bottom: 20px;
}

p {
    font-family: "Libre Franklin", sans-serif;
    font-size: 20px;
    font-weight: 400;
}

/* footer */
footer {
    padding: 20px;
    background-color: rgb(255, 255, 255, 0.5);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

footer p {
    font-size: 15px;
    text-align: right;
    font-weight: 500;
}

.inline-img {
    width: 60px;
    height: 60px;
}

.footer-img {
    width: 40px;
    height: 40px;
}
/* introduction part flex design*/

.introduction {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(255, 255, 255, 0.4);
    backdrop-filter: blur(10px) contrast(90%);
    -webkit-backdrop-filter: blur(10px) contrast(90%);
    border-radius: 50px;
    margin: 20px;
}

.introduction-vertical {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    background-color: rgb(255, 255, 255, 0.4);
    backdrop-filter: blur(10px) contrast(90%);
    -webkit-backdrop-filter: blur(10px) contrast(90%);
    border-radius: 50px;
    margin: 20px;
}

.text {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    flex: 1 0 250px;
    padding: 10px
}

.gallery a {
    margin: 10px;
}

/* manifesto-related flex design */

.manifesto {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    /* padding: 40px; */
    flex: 0 1 500px;
}

.manifesto-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: rgb(255, 255, 255, 0.4);
    backdrop-filter: blur(10px) contrast(90%);
    -webkit-backdrop-filter: blur(10px) contrast(90%);
    border-radius: 50px;
    flex: 1 1 500px;
    margin: 20px;
}

.manifesto-text {
    display: flex;
    flex-direction: column;
    flex: 1 0 250px;
    padding: 20px;
}

div ul {
    font-family: "Libre Franklin", sans-serif;
    font-size: 20px;
    font-weight: 400;
    list-style-type: disc;
}

/* contact */
label {
    color: white;
}

.icons {
    display: flex;
    flex-direction: row;
    margin: 0px 20px;
    padding-top: 0px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    gap: 50px;
}

.form {
    background-color: rgb(255, 255, 255, 0.4);
    backdrop-filter: blur(10px) contrast(90%);
    -webkit-backdrop-filter: blur(10px) contrast(90%);
    border-radius: 50px;
    margin: 20px;
    padding: 20px;
}

label {
    color: black;
    font-family: "Libre Franklin", sans-serif;
    font-size: 20px;
    font-weight: 500;
}

input, textarea, #nameRequired, #emailRequired, #messageRequired {
    font-family: "Libre Franklin", sans-serif;
    font-size: 20px;
    font-weight: 400;
}

button {
    font-family: "Libre Franklin", sans-serif;
    font-size: 20px;
    font-weight: 400;
}

@media screen and (min-width: 768px) {
    /* heading */
    .header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 20px 20px;
    }
    
    .logo {
        font: 700 40px "Libre Franklin", sans-serif;
        
      }
    
    nav {
        display: flex;
        gap: 20px;
        font-size: 30px;
        color: #da1f05;
        font-weight: 500;
        white-space: nowrap;
        padding: 20px;
    }
    
    main {
        margin: 40px 70px; 
    }

    .introduction {
        margin: 40px;
    }

    .text {
        padding: 40px;
    }

    .manifesto-section {
        margin: 40px;
    }

    .manifesto-text {
        padding: 40px;
    }

    .gallery {
        flex: 1 0 500px;
    }

    .form {
        margin: 20px;
        padding: 40px;
    }
    
}

@media screen and (min-width: 1024px) {
    /* heading */

    .header {
        padding: 20px 70px;
        /* background-color: rgb(255, 255, 255, 0.25);
        backdrop-filter: blur(0px); */
      }

    .logo {
        font: 700 50px "Libre Franklin", sans-serif;
        
      }
    
    nav {
        font-size: 35px;
        font-weight: 500;
    }
}

