

body{
    margin-top: 0em;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    font-family: 'Nokora';
    width: 100%;
    height: 100%;
    background-image: url("./pictures/contact/header-background.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; 
    position: relative;
    z-index: 0;
}

header{
    padding-top: 0.5em;
    padding-bottom: 0.2em;
    background-color: #ffffff;
    background-image: url("./pictures/background-header.webp");
    background-size: cover; 
    background-position: center 47.7%;
    background-repeat: no-repeat;

    width: 100%;
    position: relative;
    z-index: 1;
}
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: -1;
}


.contact, footer {
    position: relative;
    z-index: 1;
}

.nav-link a:first-child{
    text-decoration: none;
}

.seperate-header a:hover{
    cursor: pointer;
    text-decoration: underline;
}



h4{
    color: black;
 }


 .contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2em 1em;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    max-width: 90vw;
    margin: 2em auto;
}

.contact-header h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 0.5em;
    font-size: 2.2em;
    font-weight: 700;
    color: white;
    text-align: center;
    margin: 0.5em 1em;
    padding: 0.5em 1em;
    text-shadow: 2px 2px 5px rgba(0.9, 0.9, 0.9, 0.9);
    letter-spacing: 1.5px;

    background: linear-gradient(180deg, #032ea1, #e00025, #032ea1);
    color: white
}

.contact-info h4 {
    font-size: 1.1em;
    color: #535151;
    text-align: center;
    max-width: 600px;
    margin-bottom: 2em;
}
.up-details {
    width: 100%;
    text-align: center;
}
.up-details h2 {
    font-size: 2.5em;
    color: #333;
}

.socials {
    display: flex;
    gap: 1.5em;
    justify-content: center;
    flex-wrap: wrap;
}

.social {
    display: flex;
    align-items: center;
    gap: 0.5em;
    text-decoration: none;
    background-color: #f0f0f0;
    padding: 0.5em 1em;
    border-radius: 5px;
    transition: transform 0.2s, background-color 0.3s;
}

.social:hover {
    transform: translateY(-3px);
    background-color: #e0e0e0;
}

.social img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.social p {
    font-size: 1em;
    color: #333;
    margin: 0;
}



h4 {
    color: #333;
}


button a {
    color: black;
    text-decoration: none;
}

