body {
    background-color: #ddd7cc;
    margin: 0;
    padding: 20px;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
#header-bar {
    background-color: #6b1d2f;
    color: #ddd7cc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: relative;
    z-index: 1001;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
#logo {
    font-size: 24px;
    font-weight: bold;
    font-family: 'Garamond', 'Baskerville', 'Times New Roman', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
#menu-toggle {
    background: none;
    border: 1px solid #ddd7cc;
    padding: 12px 12px;
    border-radius: 12px;
    font-size: .9rem;
}
#nav-menu {
    background-color: #ddd7cc;
    border-bottom: 3px solid #6b1d2f;
    display: flex;
    flex-direction: column;
    width: 100%;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    position: absolute;
    top: 100%;
    left: 0;
}
#nav-menu.open {
    transform: translateY(0);
}
#nav-menu li {
    padding: 10px 20px;
    border-bottom: 1px solid #1a1a1a;
}
#nav-menu li a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Baskerville', 'Baskerville Old Face', 'Hoefler', 'Garamond', serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.main-content {
    padding-top: 20px;
    background-color: #ddd7cc;
}
.layout-block {
    width: 100%;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
#spotlight-com {
   display: none;
}

#spotlight-content {
    width: 100%;
    height: 90%;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
}
#spotlight-title {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Garamond', 'Baskerville', 'Times New Roman', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: #1a1a1a;
}
#spotlight-info {
   width: 90%;
   height: 60%;
   display: flex;
   flex-direction: row;
   justify-content: center;
   align-items: center;
   gap: 10px;
}
#spotlight-image {
    max-width: 60%;
    max-height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.7);
}
#spotlight-description {
    width: 40%;
    height: 90%;
    font-size: 4dvw;
    color: #1a1a1a;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
    font-family: 'Baskerville', 'Baskerville Old Face', 'Hoefler', 'Garamond', serif;
}
#spotlight-link {
    margin-top: 20px;
    color: #ddd7cc;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    background-color: #6b1d2f;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Garamond', 'Baskerville', 'Times New Roman', serif;
}
#spotlight-chooser {
    margin-top: 10px;
    font-size: 1rem;
    color: #1a1a1a;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-family: 'Garamond', 'Baskerville', 'Times New Roman', serif;
}

#bookshelf {
    background-image: url('Art-Stuff/bookshelf.png');
    background-size: cover;
    background-position: center;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 6px 9px rgba(0, 0, 0, 0.9);
}
#bookshelf-row {
    height: 100%;
    width: max-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}
.book-container {
    width: 70vw;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.book-cover {
    max-width: 90%;
    max-height: 70%;
    box-shadow: 0 7px 10px rgba(0, 0, 0, 0.9);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.bookshelf-link {
    text-align: center;
    color: #ddd7cc;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Garamond', 'Baskerville', 'Times New Roman', serif;
    text-decoration: none;
    background-color: #6b1d2fd3;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    border-radius: 8px;
}


#aboutAuthor {
    height: max-content;
    padding-bottom: 20px;
    padding-top: 20px;
}
#family-photo {
    background-image: url(Art-Stuff/full-family.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 45dvh;
    max-height: 60dvh;
    width: 100%;
    position: relative;
    filter: drop-shadow(0 7px 10px rgba(0, 0, 0, 0.9));
}
.family-button {
    max-width: 60px;
    max-height: 60px;
    border-radius: 15px;
    position: absolute;
    transform: translate(-50%, -50%);
}
#Allison {
    left: 16%;
    top: 19%;
    height: 60px;
    width: 25px;
}
[id="Ammon & Jeanelle Stark"] {
    left: 27%;
    top: 16%;
    height: 45px;
    width: 30px;
}
#Ben {
    left: 48%;
    top: 18%;
    height: 60px;
    width: 35px;
}
#Theresa {
    left: 67%;
    top: 16%;
    width: 35px;
    height: 60px;
}
#Stanley {
    left: 85%;
    top: 30%;
    height: 60px;
    width: 30px;
}
#Rob {
    left: 25%;
    top: 50%;
    height: 40px;
    width: 30px;
}
[id="Stan (Gooby)"] {
    left: 36%;
    top: 50%;
    height: 40px;
    width: 30px;
}
#Tommy {
    left: 46%;
    top: 50%;
    width: 40px;
    height: 40px;
}
#Kyle {
    left: 57%;
    top: 50%;
    width: 40px;
    height: 40px;
}
#Suzy {
    left: 85%;
    top: 55%;
    width: 40px;
    height: 60px;
}
#Rebekah {
    left: 28%;
    top: 70%;
    width: 40px;
    height: 60px;
}
#Dorothy {
    left: 43%;
    top: 70%;
    width: 40px;
    height: 60px;
}
#Jeanette {
    left: 61%;
    top: 70%;
    width: 40px;
    height: 60px;
}
#Cindy {
    left: 75%;
    top: 84%;
    width: 50px;
    height: 60px;
}



#media {
    display: none;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    height: 339px;
}
.filmstrip {
    width: 1405px;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
}
.filmstrip::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
    background-image: url(Art-Stuff/vecteezy_filmstrip_1195071.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1;
}
.video-container {
    width: 23%;
    height: 55%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
#video1 {
    background-image: url("https://img.youtube.com/vi/V2FXntcrMtY/hqdefault.jpg");
}
#video2 {
    background-image: url("https://img.youtube.com/vi/LsYW3fB81D8/hqdefault.jpg");
}
#video3 {
    background-image: url("https://img.youtube.com/vi/oNmoAIs4Y7E/hqdefault.jpg");
}
.playbutton {
    height: 50px;
    width: 50px;
    background-color: #fff;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    z-index: 5;
}
#youtube-link {
    color: #1a1a1a;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    z-index: 5;
    font-family: 'Garamond', 'Baskerville', 'Times New Roman', serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
