/* ===== Fonts ===== */
@font-face {font-family: Gabriola;src: url(../media/fonts/gabriola.woff)}
@font-face {font-family: Harrington; src: url(../media/fonts/HARRINGT.woff);}
@font-face {font-family: Cambria; src: url(../media/fonts/Cambria\ Regular.ttf);}
*, *::before, *::after { 
    box-sizing: border-box; margin: 0; padding: 0;
}
html { 
    scroll-behavior: smooth; 
}
body {
    font-family: Cambria, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #222;
    background-color: rgb(0, 255, 255);
}
img { 
    max-width: 100%; height: auto; display: block; 
}
a { 
    color: #5a1a8a; 
}
a:hover { 
    text-decoration: underline; 
}
h1,h2{
    text-shadow: 1px 1px 0 #000;
}
li {
    margin-left: 1.5rem;
 }

/* ===== Layout ===== */
#PageContentContainer {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 1rem 3rem;
}

/* ===== Section Cards ===== */
.ContainerSection {
    background: white;
    border-radius: 18px;
    padding: 1.75rem;
    margin: 2rem 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.08);
    border: 3px solid transparent;
}
.SubSectionTitle {
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid currentColor;
    font-family: Harrington;
    text-align: center;
    font-size: x-large;
}

/* Summarized Information */
details {
    border-radius: 10px;
}
details summary {
    display: inline;
    cursor: pointer;
    font-weight: 700;
    /* color: #5a1a8a; */
}
details img {
    max-width: 180px;
    margin: 0.8rem 0;
    border-radius: 8px;
}

/* Subsection Div Box */
.subsection {
    margin: 1rem;
    padding: 0.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.08);
    border-radius: 15px;
    border-width: 6px 2px 2px 2px;
    border-style:  solid;
}
.subsection h3 {
    border-bottom: 2px dashed currentColor;
}

.subsectionContainer {
    display: flex;
    flex-direction: row;
}

ul ul {
    padding-left: 1.5rem;
}