html {
    scroll-behavior: smooth;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--soft-white);
    color: var(--rich-black);
    font-family: var(--font-playfair);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

h1, h2, h3, p {
    opacity: .9;
}



/* ========== Header-Nav ========= */
.nav-container {
    position: relative;

    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--rich-black);
    box-shadow: var(--dark-shadow);
    
    height: 10vh;
} 

.nav-logo {
    margin-left: 2rem;
    color: var(--platinum);
}

.nav-logo p {
    font-family: var(--font-roboto);
}

.nav-list {
    display: flex;
    width: auto;
    margin-right: 1rem;
    max-height: 100%;
}

.nav-list li {
    margin-right: 1rem;
    margin-left: 1rem;
    font-weight: 500;
}

.nav-list a {
    color: var(--platinum);
}

/* Header Mobile */

@media all and (max-width: 550px) {
    .nav-logo {
        font-size: 0.8rem;
    }

    .nav-list li {
        font-size: 0.8rem;
    }
}





/* ======= Hero Section ======== */
.hero-section {
    height: 90vh;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-image: url(../data/images/sea-back.jpg);
}

.hero-container {
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    background-color: var(--transparent-white-back);

    width: 43vw;
    height: 65vh;

    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;

}

.hero-left h1 {
    color: var(--rich-black);
    font-size: 4rem;
    margin-left: 4vw;
    margin-right: 4vw;
}

.hero-left p {
    color: var(--rich-black);
    font-size: 1.5rem;
    margin-left: 1.5vw;
    margin-right: 1.5vw;
    text-shadow: var(--dark-shadow);
}

.hero-left h1, .hero-left p {
    margin-bottom: 5vh;
}

.hero-right {
    width: 43vw;
    height: 65vh;
}

/* Hero Mobile */

@media all and (max-width: 550px) {
    .hero-container {
        flex-direction: column;
    }

    .hero-left {
        background-color: var(--transparent-white-back);
    
        width: 90vw;
        height: 80vh;
    }

    .hero-left h1 {
        font-size: 3rem;
        margin-left: 4vw;
        margin-right: 4vw;
    }
    
    .hero-left p {
        font-size: 1.2rem;
        margin-left: 1.5vw;
        margin-right: 1.5vw;
        text-shadow: var(--dark-shadow);
    }

    .hero-right {
        display: none;
    }
}






/* ========= Passage Section ======== */
.passage-section {
    height: auto;
    background-attachment: fixed;
    background-size: cover;
    background-color: var(--shadowblue);
}

.passage-container {
    background-color: var(--soft-blue);
    height: inherit;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

.passage-left {
    background-image: url(../data/images/passage.png);
    background-size: cover;
    background-position: center;

    width: 43vw;
    height: 90vh;   

    margin-top: 5vh;
    margin-bottom: 5vh;
}

.passage-right {
    background-color: var(--rich-black);
    color: var(--platinum);

    width: 43vw;
    height: 90vh;

    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;

}

.passage-content {
    max-height: 90vh;
    overflow-y: auto;

    padding-top: 20px;
    padding-bottom: 20px;

    margin-left: 5vw;
    margin-right: 5vw;
    margin-top: 5vh;
    margin-bottom: 5vh;
}

.passage-content h2 {
    font-size: 2.6rem;
    font-weight: 300;
    margin-bottom: 3vh;
}

.passage-content p {
    font-family: var(--font-roboto);
    line-height: 1.85rem;
}

/* Passage Mobile */
@media all and (max-width: 550px) {
    .passage-section {
        height: auto;
    }
    
    .passage-container {
        flex-direction: column-reverse;
    }
    
    .passage-left {
        background-image: url(../data/images/passage.png);
        background-size: cover;
    
        width: 90%;
        height: 45vh; 
        
        margin: 1rem;
    }
    
    .passage-right {
        height: 100vh;

        width: 100%;

        justify-content: start;
    }
    
    .passage-content {
        overflow: visible;

        margin-top: 5vh;
        margin-bottom: 1vh;
        margin-left: 10vw;
        margin-right: 10vw;
    }
    
    .passage-content h2 {
        font-size: 1.6rem;
        font-weight: 300;
    }
    
    .passage-content p {
        font-family: var(--font-roboto);
        line-height: 1.5rem;

        opacity: .8;
    }
}






/* ======= Story Showcase Section ========*/
.showcase-section {
    height: 80vh;
    background-attachment: fixed;
    background-size: cover;
    background-color: var(--rich-black);
    color: var(--platinum);

    display: flex;
    align-items: center;
    justify-content: center;
}




/* ======== Future Section ========= */
.future-section {
    height: auto;
    background-color: var(--soft-white);
}

.future-container {
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}

.future-left {
    width: 43vw;
    height: inherit;

    margin-left: 5vw;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.future-content {
    margin-left: 8vw;
    margin-right: 2vw;
    margin-bottom: 5vh;
    margin-top: 5vh;
}

.future-content h2 {
    font-size: 2.6rem;
    font-weight: 300;
    color: var(--rich-black);
}

.future-content span {
    font-size: 1.1rem;
}

.future-content p {
    font-family: var(--font-roboto);
    margin-top: 0.75rem;
}

.future-right {
    width: 43vw;
    height: inherit;

    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;

    margin-right: 5vw;
    margin-bottom: 5vh;
    margin-top: 5vh;
}

.future-img img {
    width: 43vw;
    max-width: 500px;
    box-shadow: 20px 25px var(--rich-black);
}

.future-section h2, .future-section p, .future-section span {
    color: var(--rich-black);
    line-height: 1.85rem;
    /* margin-bottom: 5vh; */
    margin-bottom: 1.5rem;
}

/* Future Mobile */
@media all and (max-width: 550px) {
    .future-section {
        height: auto;
    }
    
    .future-container {
        flex-direction: column-reverse;
    }
    
    .future-left {
        width: 100%;
        height: inherit;
        margin-left: 1vw;
        margin-right: 1vw;
    }
    
    .future-content {
        margin-left: 2vw;
        margin-right: 3vw;
    }
    
    .future-content h2 {
        font-size: 1.6rem;
    }
    
    .future-content span {
        font-size: 1.1rem;
    }
    
    .future-content p {
        font-family: var(--font-roboto);
    }
    
    .future-right {
        width: 80%;
        align-items: center;
    }
    
    .future-img {
        width: 80%;
        margin-top: 1rem;
        align-items: center;
    }

    .future-img img {
        width: 80%;
        box-shadow: 10px 12px var(--rich-black);
    }
    
    .future-section h2, .future-section p, .future-section span {
        color: var(--rich-black);
        line-height: 1.5rem;
    }
}










/* ======= Footer ======== */
footer {
    height: 15vh;
    background-color: var(--rich-black);

    display: flex;
    align-items: center;
    justify-content: center;
}

footer p {
    font-size: 1.5rem;
    color: var(--platinum);
}















/* ========  ======== ========= */
/* ========  ======== ========= */
/* ======== Story Page ========= */
/* ========  ======== ========= */
/* ========  ======== ========= */
/* Container- Story */