/*
 * Project: Portfolio Noëlle Ariaans
 * File: contact.css
 */

/* ============================================================================
   BASE SETTINGS 
   ========================================================================= */

* {
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #1e1e1e;
    color: #ffffff;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: url('../images/background.jpg') center/cover no-repeat;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

/* ============================================================================
   HEADER & NAVIGATION 
   ========================================================================= */

.siteHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 35px 23px;
    z-index: 1000;
}

.mainNavigation { 
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    max-width: 1728px;
    margin: 0 auto;
}

.logoLink {
    text-decoration: none;
    color: inherit;
}

.siteName { 
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    position: relative;
    display: inline-block;
}

.navigationMenu { 
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 33px;
    justify-content: end;
}

.navigationLink { 
    text-decoration: none;
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    display: inline-block;
    position: relative;
}

/* ============================================================================
   TEXT EFFECTS
   ========================================================================= */

.textGlow { 
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.textShadow { 
    position: absolute;
    top: 0;
    left: 0;
    filter: blur(2px);
    z-index: 1;
    white-space: nowrap;
}

/* ============================================================================
   MAIN CONTENT & LAYOUT
   ========================================================================= */

.pageContainer { 
    max-width: 1728px;
    margin: 0 auto;
    padding: 150px 23px 50px;
}

.heroSection { 
    margin-bottom: 100px;
    padding-left: 85px;
}

.pageTitle { 
    font-size: 75px;
    font-weight: bold;
    margin: 0;
    position: relative;
    display: inline-block;
}

/* ============================================================================
   CONTACT GRID
   ========================================================================= */

.contactGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1400px;
    padding: 0 85px;
}

.formSection { 
    display: flex;
    flex-direction: column;
}

.contactForm { 
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.formField { 
    display: grid;
    gap: 14px;
}

.fieldLabel { 
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

.textInput { 
    background-color: transparent;
    border: 1px solid #ffffff;
    border-radius: 4px;
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    padding: 10px;
    outline: none;
    transition: border-color 0.3s ease;
}

/* ============================================================================
   INFO & SOCIALS
   ========================================================================= */

.contactInfoSection { 
    display: grid;
    gap: 30px;
    align-content: start;
}

.emailAddressDisplay { 
    font-style: normal;
    margin: 0;
    justify-self: end;
}

.emailLink {
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    transition: opacity 0.3s ease;
}

.socialMediaLinks {
    display: flex;
    justify-content: flex-end;
}

.socialMediaIcon { 
    width: 43px;
    height: 43px;
    filter: brightness(0) invert(1);
}

/* ============================================================================
   RESPONSIVE 
   ========================================================================= */

@media screen and (max-width: 1024px) {
    .contactGrid {
        grid-template-columns: 1fr;
        padding: 0 40px;
    }
    
    .heroSection { 
        padding-left: 40px;
    }
}

@media screen and (max-width: 768px) {
    .mainNavigation { 
        grid-template-columns: 1fr;
        gap: 20px;
    }
}