@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Syriac+Western:wght@100..900&display=swap');

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-sizing: border-box;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: flex-end;
}

nav div {
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    font-family: "Noto Sans Syriac Western", sans-serif;
    font-size: 16px;
    color: black;
}

nav a:hover {
    text-decoration: underline;
}

nav { z-index: 10; }

html, body {
    height: 100%;
    margin: 0;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}
/* Scrolling: https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Properties/scroll-snap-type */

#thoughtsPage1, #thoughtsPage2, #thoughtsPage3 {
    height: 100%;
    scroll-snap-align: start;
}

#thoughtsPage1 {
    background-color: rgb(234, 234, 234);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#thoughtsPage2 {
    background-color: rgb(245, 245, 245);
    background-size: cover;
    background-position: center;
    position: relative;
}

.textRow {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    box-sizing: border-box;
    padding: 2rem;
}

.textColumn {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.textLabel {
    font-family: "Noto Sans Syriac Western", sans-serif;
    font-size: 16px;
    color: rgba(0,0,0,0.85);
    text-align: center;
}

.textBox {
    height: 70vh;
    aspect-ratio: 1 / 1;
    background: rgba(255,255,255);
    display: flex;
    align-items: center;
    justify-content: center;
}

.textBoxInner {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: grid;
    place-items: center;
    font-family: "Noto Sans Syriac Western", sans-serif;
    color: rgba(0,0,0);
}

.textBoxContent {
    width: 100%;
    max-height: 100%;
    box-sizing: border-box;
    padding: 10%; 
    margin: auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.textBoxContent ul {
    margin: 0;
    padding-left: 1.25rem;
}

.thoughtPage2Label {
    font-family: "Noto Sans Syriac Western", sans-serif;
    font-size: 16px;
    transform: rotate(-90deg);
}

@media (max-width: 900px) {
    .textRow {
        flex-direction: column; 
    }

    .textBox {
        width: 75vw;
        height: 30vw;
    }

    .thoughtPage2Label {
        transform: rotate(0deg);
    }

    /* responsive adjustments for the center text box */
    .centerTextBox {
        width: 75vw;
        padding: 1.5rem;
    }
}

#thoughtsPage3 {
    background-color: rgb(232, 232, 232);
    background-size: cover;
    background-position: center;
    position: relative;
}

.thoughtPage3Label {
    font-family: "Noto Sans Syriac Western", sans-serif;
    text-align: center;
    padding-top: 7%;
    font-size: 16px;
}

.page3Text {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding-top: 5%;
}

.centerTextBox {
    width: 20%;
    aspect-ratio: 1 / 1;
    background: rgba(255,255,255);
    display: flex;
    align-items: center;
    padding: 2rem;
}

.centerTextContent {
    margin: 0;
    font-family: "Noto Sans Syriac Western", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(0,0,0);
    text-align: left;
    max-height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.thoughtsImage {
    height: 100vh;
    width: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
}

.thoughtPage1Label {
    position: absolute;
    right: 19%;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    font-family: "Noto Sans Syriac Western", sans-serif;
    font-size: 18px;
    z-index: 5;
}

.bottomLeft, .bottomRight, .bottomCenter {
    position: absolute;
    bottom: 5px;
    font-family: "Noto Sans Syriac Western", sans-serif;
    font-size: 16px;
    color: rgba(0,0,0,0.95);
    z-index: 12;
}

.bottomLeft { left: 8%; }
.bottomRight { right: 8%; }
.bottomCenter {
    left: 50%;
    transform: translateX(-50%);
}

.view {
    height: 100%; 
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f2f2;
}

.viewContent {
    text-align: center;
    width: 100%;
}

.viewTitle {
    font-family: "Noto Sans Syriac Western", sans-serif;
    font-size: 38px;
    color: rgba(0,0,0);
}

.viewArtist {
    font-family: "Noto Sans Syriac Western", sans-serif;
    font-size: 20px;
    color: rgba(0,0,0);
}

.viewDate {
    font-family: "Noto Sans Syriac Western", sans-serif;
    font-size: 16px;
    color: rgba(0,0,0,0.75);
}

.viewButton {
    display: inline-block;
    padding: 0.7rem 1.4rem;
    font-size: 16px;
    font-family: "Noto Sans Syriac Western", sans-serif;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
}

.viewButton:hover,
.viewButton:focus {
    background: #333;
}

@media (max-width: 600px) {
    .hero-title { font-size: 28px; }
    .hero-artist { font-size: 18px; }
}