@font-face {
    font-family: 'NotoSerif';
    src: url('../assets/fonts/NotoSerif-Medium.ttf') format('truetype');
}

/* Basic rules for all pages */

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'NotoSerif', Arial, sans-serif;
    background-color: white;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    min-height: 100%;
}

h1 {
    font-size: 24px;
    color: black;
}

h2 {
    font-size: 20px;
    color: black;
    margin-bottom: 10px;
}

h3 {
    font-size: 16px;
    color: black;
}

p {
    font-size: 14px;
}

label {
    color: black;
}

/* Scroll bar */

body::-webkit-scrollbar {
    width: 8px; /* Adjust the width as needed */
    opacity: 0; /* Hide it by default */
    transition: opacity 0.5s ease; /* Add a transition for a smooth fade-in effect */
}

body::-webkit-scrollbar-track {
    background: #faeee7; /* Light gray background */
}

body::-webkit-scrollbar-thumb {
    background: #FFB6C1; /* Light pink color for the handle */
    border-radius: 8px; /* Slightly round the handle */
    transition: background 0.3s ease; /* Add smooth transition for the handle */
}

body::-webkit-scrollbar-thumb:hover {
    background: #FF8C9D; /* Slightly darker pink on hover */
}

/* Navigation menu */

.navigation-container {
    max-width: 1800px; /* This change the navigation size based on media */
    margin: auto;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navigation-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: auto;
    /*background-color: rgba(255, 255, 255, 0.7);*/
    /*backdrop-filter: blur(3px);*/
    /*border-radius: 12px;*/
    overflow: hidden;
}

.navigation-header,
.navigation-social-media {
    display: flex;
    align-items: center;
    padding: 20px;
}

/* Navigation header */

.navigation-avatar img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
}

.navigation-pages ul {
    display: flex;
    list-style-type: none;
    padding-left: 0;
}

.navigation-pages ul li {
    margin-left: 20px;
}

.pages-link {
    text-decoration: none;
    color: #FFB6C1;
    font-size: 20px;
    font-weight: bold;
}

#shop-link .pop-out-icon {
    position: relative;
    opacity: 0;
    top: 0;
    width: 20px;
    height: 20px;
    transition: opacity 0.3s ease;
}

#shop-link:hover .pop-out-icon {
    opacity: 1;
}

.navigation-social-media ul {
    display: flex;
    list-style-type: none;
    padding-left: 0;
}

.navigation-social-media ul li {
    margin-right: 10px;
}

.social-media-icons img {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Navigation hamburger menu */

.navigation-hamburger-menu {
    display: none; /* Off by default until media query */
    width: 2rem; /* Size changes with media */
    height: 2rem; /* Size changes with media */
    flex-direction: column;
    justify-content: space-around;
    margin-left: 20px;
    cursor: pointer;
}

.navigation-hamburger-menu div {
    width: 100%;
    height: 12.5%;
    background: #FFB6C1;
    border-radius: 5px;
    box-shadow: 0 0 2px rgba(0,0,0,0.2);
}

/* Navigation menu popup screen */

.navigation-menu {
    opacity: 0;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.navigation-menu ul {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    padding-left: 0;
}

.navigation-menu ul li {
    margin: 20px; /* Margins for menu items */
}

.navigation-menu ul li a {
    text-decoration: none; /* Hide decorations */
    color: #FFB6C1; /* Pink color */
    font-size: 40px; /* Font size of menu items */
    font-weight: bold; /* Make the text bold */
}

/* Navigation menu hover effect */

.navigation-avatar img,
.navigation-pages ul li,
.social-media-icons img,
.navigation-hamburger-menu,
.navigation-menu ul li {
    transition: all 0.2s ease;
}

.navigation-avatar img:hover,
.navigation-pages ul li:hover,
.social-media-icons img:hover,
.navigation-hamburger-menu:hover,
.navigation-menu ul li:hover {
    filter: brightness(0.8);
    transform: scale(1.1);
}

/* Information Page */

.information-page {
    max-width: 1800px; /* This change the navigation size based on media */
    margin: 30px auto;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
}

.information-division {
    flex-direction: row; /* This changes based off of media */
    display: flex;
    width: 100%;
}

.information-container-left {
    width: 60%; /* This changes to 100% based off of media */
    margin-top: 10px;
    display: flex;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(255, 210, 210, 0.7);
    backdrop-filter: blur(2px);
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid rgba(255, 160, 160, 1);
}

.information-container-right {
    width: 40%; /* This changes to 100% based off of media */
    margin-left: 10px;
    margin-top: 10px;
    display: flex;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(255, 210, 210, 0.7);
    backdrop-filter: blur(2px);
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid rgba(255, 160, 160, 1);
}

.information-content {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#header-illustration {
    position: relative;
    width: 100%;
    height: 100%;
    min-width: 100px;
    object-fit: contain;
    z-index: -1;
    max-width: 100%;
    max-height: 100%;
    display: block;
    top: 60px;
}

#information-header {
    max-height: 360px;
}

#information-header-illustration {
    border: none;
    background-color: transparent;
    backdrop-filter: none;
    overflow: visible;
}

#header-artwork-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#information-header-images {
    display: flex;
    max-width: 100%;
    max-height: calc(100% - 50px);
    justify-content: center;
    overflow: hidden;
}

.information-image {
    display: inline-block;
    max-width: 100%;
    max-height: 100%;
    padding: 5px;
}

/* Second division */

#biography-lists {
    display: flex;
    flex-wrap: nowrap;
}

#first-list {
    padding: 10px;
    width: 100%;
}

#second-list {
    padding: 10px;
    width: 100%;
}

.biography-info-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

#biography-social-buttons {
    display: flex;
    flex-wrap: wrap;
}

.social-buttons {
    display: block;
    text-decoration: none;
    color: #fffffe;
    margin: 5px;
    border: 3px;
    padding: 5px;
    background-color: #FFB6C1;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.social img {

    fill: #FFB6C1;
}

.social-buttons p {
    font-size: 13px;
}

.social-buttons:hover {
    background-color: #FF8C9D;
    transform: scale(1.1);
}

/* Third division */

#resource-section {
    display: flex;
}

#resources-list {
    display: flex;
    flex-direction: column;
}

#resources-list ul {
    list-style-type: none;
}

#resources-list ul li a {
    text-decoration: none;
    color: #6495ED;
}

#resources-list ul li a:hover {
    color: #A4C6FF;
}

#resource-list-first-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

#resource-list-second-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

/* #video-embed {
    justify-content: center;
    margin: 0 auto;
} */

/* Scroll button */

#scrollToTopButton {
    visibility: hidden;
    position: fixed;
    bottom: 70px;
    right: 50px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    opacity: 0;
    fill: #FFB6C1;
    transition: opacity 0.3s ease, visibility 0.3s ease-out;
}

#scrollToTopButton.show {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

/* Gallery */

.gallery-page {
    margin: auto;
    display: flex;
}

.gallery-container {
    margin: auto;
    display: flex;
    padding: 20px;
    max-width: 1800px;
}

.gallery-container #mygallery a img {
    width: 100%;
    height: auto;
    transition: opacity 0.5s ease;
}

/* Side banners */

.full-page {
    display: flex;
    flex-direction: row;
}

/* Footer */

.footer-container {
    bottom: 0;
    left: 0;
    margin: 30px 0 0 0;
    padding: 0;
    width: 100%;
    background-color: #FFB6C1;
    color: white;
    text-align: right;
    opacity: 0;
}

.footer-content {
    padding: 1px;
    max-width: 1800px;
    margin: 0 auto;
}

.llc {
    font-style: italic;
    font-weight: bold;
    padding-right: 20px;
}

/* Media Queries */

@media (max-width: 630px) {
    h1 {
        font-size: 30px;
    }
    h2 {
        font-size: 24px;
    }
    h3 {
        font-size: 20px;
    }
    p {
        font-size: 16px;
    }
    label {
        font-size: 16px;
    }
    .navigation-pages {
        display: none;
    }
    .navigation-hamburger-menu {
        display: flex;
    }
    .information-division {
        flex-direction: column;
    }
    .information-container {
        width: 100%;
    }
    #header-artwork-container {
        display: none;
    }
    .information-container-left {
        width: 100%;
    }
    .information-container-right {
        width: 100%;
        margin-left: 0;
    }
    #biography-lists {
        flex-direction: column;
    }
    .biography-tools-list {
        display: flex;
    }
    .footer-content p {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .navigation-social-media {
        display: none;
    }
}

@media (max-width: 1500px) {
    #information-image3 {
        display: none;
    }
}

@media (max-width: 1100px) {
    #video-embed {
        display: none;
    }
}

@media (max-width: 1000px) {
    #information-image2 {
        display: none;
    }
}

@media (min-width: 2560px) {
    .side-banner {
        display: flex;
    }
}

