:root {
    --teal-dark: #0A4F52;
    --teal-main: #0F6B6E;
    --aqua-accent: #2FC7C9;
    --aqua-light: #AEECEC;
    --gold: #F2C14E;
    --orange: #F28C38;
}

/* ================= BODY ================= */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: #ffffff;
    color: #1f1f1f;
}

/* ================= HEADER ================= */

header {
    position: relative;
    overflow: hidden;
    background: url('images/bg.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

/* Header content */
header * {
    position: relative;
    z-index: 1;
    background: transparent !important;
}

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

header p {
    margin: 6px 0 0;
    font-size: 1.15rem;
    opacity: 0.95;
    background: transparent;
}

/* ================= SECTIONS ================= */

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

h2 {
    border-left: 6px solid var(--aqua-accent);
    padding-left: 12px;
    margin-bottom: 20px;
    color: var(--teal-main);
}

h3 {
    color: var(--teal-main);
    margin-top: 25px;
    margin-bottom: 12px;
}

h4 {
    color: var(--teal-dark);
    margin-top: 18px;
    margin-bottom: 8px;
}

/* Tables */
.dates-table {
    width: 100%;
    max-width: 600px;
    border-collapse: collapse;
    margin-top: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.dates-table thead {
    background: linear-gradient(135deg, var(--teal-dark), var(--teal-main));
    color: white;
}

.dates-table th,
.dates-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.dates-table tbody tr:hover {
    background: var(--aqua-light);
    transition: background 0.2s ease;
}

.dates-table tbody tr:last-child td {
    border-bottom: none;
}

/* Highlight Theme Box */
.highlight-box {
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: #1a1a1a;
    padding: 20px 24px;
    border-radius: 14px;
    font-weight: bold;
    margin-top: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Buttons */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: #1a1a1a;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 15px;
    font-weight: bold;
    transition: 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* Poster */
.poster-card {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.poster-thumb {
    width: 220px;
    max-width: 80vw;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.poster-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Logos */
.logo-container,
.logo-funders {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 20px;
}

.logo-img {
    height: 55px;
    object-fit: contain;
}

.logo-large {
    height: 90px;
}

.logo-jic {
    height: 70px !important;
}

/* Responsive - allow wrapping on smaller screens */
@media (max-width: 900px) {
    .logo-container,
    .logo-funders {
        flex-wrap: wrap;
    }
}

/* Footer */
.footer {
    position: relative;
    overflow: hidden;
    background: url('images/footer.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: 50px;
}

/* Footer content */
.footer * {
    position: relative;
    z-index: 1;
    background: transparent !important;
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.9rem;
    }

    .logo-img {
        height: 55px;
    }

    .logo-large,
    .logo-jic {
        height: 65px !important;
    }
}
