@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');

/* BODY PARALLAX */

.parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.section {
    position: relative;
    height: 120vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    background-repeat: no-repeat;
}

/* .section1 {
    background-image: url('images/dw-classic.jpg');
} */

.section2 {
    background-image: url('images/wallaby-top-side-better.png');
}

.section3.parallax {
    background-image: url('images/orca-top-side.png');
}

/* SECTION STYLES END */





/* TEXT OVERLAY STYLES */
.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-55%, -150%);
    z-index: 1;
    font-family: var(--font-family);
}

.fade-element {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    position: absolute;
}
  
.fade-in {
    opacity: 1;
}


.text-overlay a {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.text-overlay p {
    padding-top: 20px;
}

.text-overlay p {
    padding-bottom: 5px;
    font-size: 1.2rem;
    font-weight: 400;
    font-style: italic;
}

.text-overlay a::before {
    content: "";
    position: absolute;
    display: flex;
    align-items: center;
    width: 50%;
    height: 3px;
    top: 45%;
    background-color: #ffffff;
    transition: transform 0.3s ease;
}

@media only screen and (max-width: 650px) {
    .text-overlay a {
        font-size: 2rem;
    }
    .text-overlay a::before {
        top: 45%;
    }
}

.text-overlay a::after {
    content: "";
    position: absolute;
    display: flex;
    align-items: end;
    justify-content: right;
    width: 50%;
    height: 3px;
    right: 0;
    top: -4%;
    background-color: #ffffff;
    transition: transform 0.3s ease;
}

/* TEXT OVERLAY STYLES END */





/* ABOUT US SECTION STYLES */
.about {
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 20px 0;
    background-color: var(--maroon) !important;
}

.vert-line-container {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
    grid-template-rows: 0.1fr 2fr;
    background:linear-gradient(#c0c0c0,#c0c0c0) center/2px 100% no-repeat;
}

.who-title {
    grid-column: 1;
    grid-row: 1;
}

.mission-title {
    grid-column: 2;
    grid-row: 1;
}

.who-desc {
    grid-column: 1;
    grid-row: 2;
    padding-left: 20px;
}

.mission-desc {
    grid-column: 2;
    grid-row: 2;
    padding-right: 20px;
}