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

html, body {
    height: 100%;
    margin: 0;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

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;
}

.imageContents {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    justify-content: start;
    align-content: start;
    justify-items: start;
    align-items: start;
    height: 100vh; 
    overflow-y: auto;
    scroll-snap-align: start;
}

.imageContents img {
    display: block; 
    width: 100%;
    height: auto;
}

body {
    margin: 0;
}

.introduction {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    background: #f7f7f7;
    box-sizing: border-box;
    padding-top: 5%;
}

.introContent {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.introLine1 {
    margin: 0;
    font-family: "Noto Sans Syriac Western", sans-serif;
    font-size: 24px;
    color: rgba(0,0,0,0.85);
}

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

.introImage {
    max-width: 50%;
    height: auto;
    display: block;
    transition: transform 220ms ease, box-shadow 220ms ease;
    will-change: transform;
    border-radius: 4px;
    margin: 0 auto;
}

.introImage:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

@media (max-width: 700px) {
    .imageContents {
        grid-template-columns: repeat(3, 1fr);
    }
}