/* Reset and base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}   

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212; /* deep black */
    color: #d1d5db; /* soft light gray */
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.page-header {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #1e1e1e; /* very dark gray */
    border-bottom: 2px solid #333333; /* darker border */
    color: #a1a1a1; /* medium gray */
}

.page-header h1 {
    font-size: 2.5rem;
    color: #9ca3af; /* subtle light gray */
    margin-bottom: 0.25rem;
    letter-spacing: 3px;
    text-shadow: 0 0 6px #374151; /* soft glow for depth */
}

.subtitle {
    font-style: italic;
    font-size: 1rem;
    color: #6b7280; /* muted gray */
}

/* Main content */
main {
    flex: 1;
    padding: 2rem 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.section {
    margin-bottom: 3rem;
    text-align: center;
}

.section h2 {
    font-size: 1.75rem;
    color: #4b5563; /* dark gray-blue */
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 0 4px #111827; /* subtle dark glow */
}

.section p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #9ca3af; /* lighter gray */
}

/* Caption styling */
.caption {
    font-style: italic;
    color: #6b7280; /* muted gray */
    margin-top: 0.5rem;
}

/* Audio and Video */
audio, video {
    border-radius: 10px;
    max-width: 100%;
    outline: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

/* Gallery */
.gallery {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.gallery img {
    width: 300px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(30, 41, 59, 0.9);
    transition: transform 0.3s ease;
    cursor: pointer;
    filter: brightness(0.9) contrast(1.2);
}

.gallery img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(30, 41, 59, 1);
    filter: brightness(1) contrast(1.3);
}

/* Horizontal rule styling */
hr {
    border: none;
    border-top: 1px solid #2f2f2f;
    margin: 3rem 0;
}

a{
    text-decoration: none;
    background-color: #111827;
    border-radius: 5px;
}

/* Footer */
.page-footer {
    text-align: center;
    padding: 1rem;
    background-color: #1e1e1e;
    border-top: 2px solid #333333;
    color: #a1a1a1;
    font-size: 0.9rem;
}
