@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Dancing+Script:wght@400..700&family=Fjalla+One&family=Lora:ital,wght@0,400..700;1,400..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');/* ======== General Styling ======== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

/* =========== Navigation =========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 12vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 10px slategray;
    background-color: rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease-in-out;
}

.navbar.hidden {
    transform: translateY(-100%);
}


.navbar nav ul {
    display: flex;
    list-style: none;
    min-width: 100%;
}

.navbar nav li {
    box-sizing: border-box;
}

.navbar nav a {
    text-decoration: none;
    padding: 0 30px;
    font-size: 20px;
    color: #000;
    text-shadow: 5px 5px 5px slategray;
}

.navbar nav li:hover {
    color: black;
    border: 1px solid black;
    padding: 5px 0;
    border-radius: 5px;
    background-color: white;
	font-family: "Dancing Script", serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: bold;
}
/* ======= General page divs ====== */
.content {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    padding-top: 2vh;
    scroll-margin: 12vh;
}

.content h2 {
    font-size: 5rem;
    color: black;
    -webkit-text-stroke: 0.5px white;
	font-family: "Dancing Script", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

.content p {
    font-size: 1rem;
    color: black;
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.content hr {
    width: 75%;
    text-align: center;
}

/* ===== Gallery Pages ====== */
#originals, #sketchbook, #architecture, #illustrations {
    height: auto;
}

#about, #originals {
    margin-top: 12vh;
}

.layout-container {
    padding-top: 1em;
    margin: 0;
    width: min(75%, 100%);
    columns: 3 300px;
    column-gap: 1em;
    padding-bottom: 12vh;
}

.layout-container img {
    width: 100%;
    display: block;
    margin-bottom: 1em;
    box-shadow: 0.3rem 0.4rem 0.4rem rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.layout-container img:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    margin: auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lightbox-title {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    text-shadow: 0px 0px 10px black;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 2rem;
    user-select: none;
    transition: 0.6s ease;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}


/* ========= Shadow Box ========= */

.shadow-box {
    padding: 20px;
    background-color: #fff; 
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 20px 0; 
    max-width: 90vw;
}

/* ========= Landing Screen ========== */
#landing-screen {
    padding-top: 12vh;
    scroll-margin-top: 12vh;
}

#landing-screen h1 {
	font-size: 5rem;
    color: white;
    -webkit-text-stroke: 2px black;
    /* text-decoration: overline;
    text-decoration-color: teal; */
}

#landing-screen p {
	font-size: 5rem;
    color: black;
    -webkit-text-stroke: 0.5px white;
	font-family: "Dancing Script", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

#landing-screen h1, #landing-screen p {
    z-index: 20;
    text-shadow: 15px 15px 15px #000;
}

.about {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 30%;
}

  

footer {
    position: absolute;
    z-index: 1000;
}