@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Momo+Trust+Display&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');
body {
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #292F36;
    background-color: #ffffff;
    margin: 0 1.5rem 0 1.5rem ;
}

::selection {
    background-color: #46A6EB;
    color: #ffffff;
}

h1, h2, h3 {
    font-family: "Momo Trust Display", sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.3rem;
}

h1 {
    font-size: 1.8rem;
}

h2 {
    font-size: 1.5rem;
    margin-top: 1rem;
}

h3 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1rem;
}

header {
    padding: 1rem 1.5rem;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 2px 8px rgba(48, 52, 56, 0.37);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 50px;
}

header h1 {
    color: #1d2224;
    margin: 0;
}

.image-container {
    margin-bottom: 1rem;
}

.image-container img {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(46, 58, 70, 0.37);
}

.text-container {
    display: flex;
}

.image-text i {
    width: 50px;
}

a {
    color: #ffffff;
    text-decoration: none;
}

figcaption a {
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    color: #1d88d5;
}

figcaption a:hover {
    margin-top: 3px;
    border-radius: 10px;
    color: #211e5d;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav li {
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
    border-left: 3px solid #46A6EB;
}

nav a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 5px;
}

nav a:hover{
    background-color: rgba(222, 222, 222, 0.1);
    padding-left: 0.8rem;
}

nav i {
    color: #d4d8dc;
    width: 20px;
}

nav i:hover {
    color: #ffffff;
}

figure {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    border-radius: 10px;
    display: inline-block;
    margin: 1.5rem 0;
    box-sizing: border-box;
}

img {
    object-fit: cover;
    align-content: center;
}

figcaption {
    font-style: italic;
    font-size: 0.8rem;
    margin: 0.3rem 0 0.5rem 0;
}

.session {
    border-collapse: collapse;
    margin: 1rem 0;
}

.session th {
    padding: 0.5rem;
}
.session td{
    padding: 0.3rem;
    position: relative;
    padding-left: 1rem;
}

.session tr:first-of-type th:first-child {
    border-radius: 15px 0 0;
}

.session caption {
    font-weight: bold;
    border-radius: 15px 0 0 15px;
}

footer {
    color: #ffffff;
    padding: 1rem 0;
    margin-top: 3rem;
    border-radius: 20px 20px 0 0;
    margin-bottom: 0;
    box-shadow: 0 0 8px rgba(48, 52, 56, 0.37);
}

footer nav ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

footer nav li {
    border-left: none;
    margin: 0;
    padding: 0;
}

footer a {
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

footer p {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/*landscape color pallete*/
.landscape header, .landscape footer, .session th{
    background-color: #3f4d3f;
}

.landscape caption {
    background-color: #a6b79b;
    font-size: large;
}

.landscape .session tr:nth-child(odd), .landscape .session td, .landscape figure {
    background-color: rgba(158, 170, 139, 0.28);
}

.landscape figure {
    outline: 3px solid rgba(158, 170, 139, 0.12);
}
.landscape .session th {
    color: white;
}

.landscape footer a:hover {
    color: #b7d082;
}
/*nature color pallete*/
.nature header, .nature footer, .nature th{
    background-color: #614e76;
}

.nature caption {
    background-color: #c7b3c8;
    font-size: large;
}

.nature .session tr:nth-child(odd), .nature .session td, .nature figure {
    background-color: rgba(196, 156, 181, 0.28);
}

.nature figure {
    outline: 3px solid rgba(214, 209, 224, 0.09);
}
.nature .session th {
    color: white;
}

.nature footer a:hover {
    color: #e2a5da;
}
/*plushies color pallete*/
.plushies header, .plushies footer, .plushies th{
    background-color: #74645a;
}

.plushies caption {
    background-color: #bfaea2;
    font-size: large;
}

.plushies .session tr:nth-child(odd), .plushies .session td, .plushies figure {
    background-color: rgba(186, 156, 137, 0.28);
}

.plushies figure {
    outline: 3px solid rgba(211, 199, 194, 0.09);
}
.plushies .session th {
    color: white;
}

.plushies footer a:hover {
    color: #dac19a;
}