body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: white;
}

header {
    background: linear-gradient(135deg, #FFD700 50%, #E30613 50%);
    padding: 30px;
    text-align: center;
    border-bottom: 5px solid black;
}

header img {
    width: 150px;
    display: block;
    margin: 0 auto 10px;
}

header h1 {
    margin: 0;
    color: black;
    font-size: 2.5em;
}

section {
    padding: 30px;
    max-width: 900px;
    margin: auto;
}

h2 {
    color: #FFD700;
    border-left: 5px solid #E30613;
    padding-left: 10px;
}

.timeline {
    border-left: 3px solid #FFD700;
    margin-left: 20px;
    padding-left: 20px;
}

.event {
    margin-bottom: 20px;
}

.event span {
    font-weight: bold;
    color: #E30613;
}

section img {
    max-width: 100%;
}

.bread {
    color: #FFFFFF;
    font-size: 12px;
}

.bread a,.event a {
    color: #FFFFFF;
}

footer {
    text-align: center;
    padding: 15px;
    background: #111;
    border-top: 2px solid #FFD700;
    font-size: 0.9em;
}

.highlight {
    background-color: #E30613; 
    font-weight: bold;
}

tbody tr td {
    text-align: center;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    padding: 20px;
}

.gallery-item {
    background: white;
    padding: 8px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.gallery-item img {
    width: 100%;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.2s;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.caption {
    margin-top: 5px;
    font-size: 14px;
    color: #000;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    text-align: center;
}

.modal-content {
    max-width: 80%;
    max-height: 70%;
}

.modal-caption {
    color: #fff;
    margin-top: 10px;
    font-size: 18px;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}