.logo { 
    display: block; 
    max-width: 180px; /* adjust size here */ 
    width: 100%; 
    height: auto; 
    margin: 2rem auto 0.5rem auto; /* centers the image */ }

.logo-note { 
    font-size: 0.8rem; 
    opacity: 0.7; 
    margin-top: 0.25rem; 
}

/* Page layout styles (moved from index.html) */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #222;
}

header {
    background: #111;
    color: white;
    padding: 2rem 1.5rem;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    letter-spacing: 1px;
}

header p {
    margin-top: 0.5rem;
    opacity: 0.8;
}

.section {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    text-align: center;
}

.section h2 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 4rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Accessibility: skip link */
.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.skip-link:focus {
    left: 1rem;
    top: 1rem;
    width: auto;
    height: auto;
    padding: 0.5rem 0.75rem;
    background: #111;
    color: #fff;
    z-index: 1000;
    text-decoration: none;
    border-radius: 4px;
}

/* Overlay area between header and footer showing the dragon image */
#imageOverlay {
    position: fixed;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.45);
    z-index: 999;
    overflow: auto;
}

#imageOverlay img#overlayImage {
    display: block;
    max-width: none;
    max-height: none;
    width: auto;
    height: auto;
}

/* Back button in the top-left of the overlay area */
#overlayBack {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255,255,255,0.95);
    border: 0;
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
