* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #e8e8e8;
}

header {
    background-color: #d0d0d0;
    padding: 1rem 0;
    border-bottom: 1px solid #a0a0a0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #d4a631;
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
    color: #d4a631;
}

main {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title {
    font-size: 2.5rem;
    color: #d4a631;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #7a7a7a;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-size: 1.8rem;
    color: #d4a631;
    margin-bottom: 1rem;
}

.content-section p {
    margin-bottom: 1rem;
    color: #333;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    color: #d4a631;
    margin-bottom: 1rem;
}

.event-date {
    background: #d4a631;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: bold;
}

.person-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
}

footer {
    background-color: #4a4a4a;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #d4a631;
    margin-bottom: 1rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.footer-section a:hover {
    color: #d4a631;
}

.footer-bottom {
    border-top: 1px solid #666;
    padding-top: 1rem;
    color: #b0b0b0;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .language-flags {
        order: 3;
        margin-left: 10px;
    }
}

/* Language flags styling */
.language-flags {
    display: flex;
    align-items: center;
    gap: 8px;
}

.flag-link {
    display: inline-block;
    padding: 4px;
    border-radius: 3px;
    transition: opacity 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.flag-link:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.flag-link.active {
    box-shadow: 0 0 0 2px #d4a631;
}

.flag-link img {
    display: block;
    border-radius: 2px;
}