/* style.css */
:root {
    --primary-color: #7F1146; 
    --secondary-color: #c12872; 
    --background-color: #f9f9f9;
    --text-color: #212121;
    --heading-font: 'Merriweather', serif;
    --body-font: 'PT Sans', sans-serif;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
}

/* Navigation Bar */
nav {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    flex-wrap: wrap;
}

.site-title {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

/* Hero/Header Section */
header {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 4rem 1rem;
    background-image: linear-gradient(rgba(127, 17, 70, 0.9), rgba(127, 17, 70, 0.9)), url('https://ssl.gstatic.com/atari/images/simple-header-blended-small.png');
    background-size: cover;
    background-position: center;
}

header h1 {
    font-family: var(--heading-font);
    font-size: 3rem;
    margin: 0;
    letter-spacing: -0.5px;
}

header p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-top: 1rem;
}

/* Main Content Container */
.container {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

/* Content Sections */
.content-section {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-bottom: 2.5rem;
    border-left: 6px solid var(--primary-color);
}

.section-category {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.content-section h2 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.item-heading {
    font-family: var(--heading-font);
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.content-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.content-section a {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.content-section a:hover {
    border-bottom: 1px solid var(--primary-color);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #333;
    color: white;
    margin-top: 4rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .nav-links {
        justify-content: center;
    }
}
