/*
 * Noëlle Ariaans - About Page Stylesheet
 */

/* ============================================================================
   BASE STYLING 
   ========================================================================= */

* {
    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;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

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

.siteHeader {
    padding: 2.2rem 1.5rem;
    position: relative;
    z-index: 100;
}

.mainNavigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logoLink {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    text-align: center;
    line-height: normal;
}

.navigationMenu {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 2rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navigationLink {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    text-align: center;
    line-height: normal;
}

/* ==========================================
   MAIN CONTENT GRID
   ========================================== */

.mainContent { 
    min-height: 80vh;
    display: grid;
    grid-template-rows: auto 1fr;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.heroSection { 
    padding: 166px 0 50px 108px;
}

.heroTitle { 
    font-size: 4.6875rem;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 282px;
}

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

.titleShadow { 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    filter: blur(3px);
    z-index: 1;
}

/* ==========================================
   ABOUT SECTION WITH GRID LAYOUT
   ========================================== */

.aboutSection { 
    padding: 0 108px 100px;
}

.contentGrid {
    display: grid;
    grid-template-columns: 881px 1fr;
    grid-gap: 73px;
    align-items: start;
}

.textContent { 
    padding-top: 10px;
}

.subTitle { 
    font-size: 3.125rem;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 274px;
    margin-bottom: 36px;
}

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

.subTitleShadow { 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    filter: blur(2px);
    z-index: 1;
}

.biographyText { 
    font-size: 1.25rem;
    line-height: 1.5;
    max-width: 881px;
}

.biographyText p {
    margin-bottom: 1.5em;
}

/* ==========================================
   PROFILE PICTURE
   ========================================== */

.profilePicture { 
    width: 498px;
    height: 437px;
    overflow: hidden;
    margin-top: 10px;
}

.profilePicture img {
    width: 139.49%;
    height: 119.29%;
    object-fit: cover;
    object-position: -23.42% 0;
    transform: translateX(-23.42%);
}

/* ===================================
   FOOTER
   =================================== */

.siteFooter {
    position: relative;
    height: 139px;
    display: flex;
    align-items: center;
    z-index: 10;
    overflow: hidden;
}

.footerBackground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center bottom;
    transform: scaleY(-1);
    z-index: -2;
}

.siteFooter::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.footerNavigation {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: 100%;
    padding: 0 4.5rem;
    position: relative;
    z-index: 1;
}

.footerLink {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    text-align: center;
    line-height: normal;
}

.socialMediaLinks {
    position: absolute;
    right: 4.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: auto auto;
    gap: 1.5rem;
    z-index: 2;
}

.socialLink {
    display: block;
    width: 43px;
    height: 43px;
}

.socialLink img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0) invert(1);
}

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

.textBlur {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(2px);
    white-space: nowrap;
}

.textMain {
    position: relative;
    display: block;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    white-space: nowrap;
}

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

@media screen and (max-width: 1200px) {
    .contentGrid {
        grid-template-columns: 1fr;
        grid-gap: 40px;
    }

    .textContent { 
        padding-top: 50px;
    }

    .profilePicture { 
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .heroTitle { 
        font-size: 3rem;
        width: auto;
    }

    .aboutSection { 
        padding: 0 20px 50px;
    }

    .profilePicture { 
        width: 100%;
        height: auto;
        max-width: 400px;
    }
}