:root {
    --primary: rgb(0, 124, 224);
    --primary-dark: #005bb5;
    --secondary: rgb(20, 33, 61);
    --accent: #FCA311;
    --accent-dark: #e6920f;
    --dark-bg: #0f0f0f;
    --dark-card: #1a1a1a;
    --dark-text: #e4e4e7;
    --dark-text-secondary: #a1a1aa;
}

a {
    text-decoration: none;
    color: inherit;
}

#main-header {
    background: url("https://www.bimun.hu/build/assets/mun-1-D2d5ZQaD.jpg") no-repeat fixed center;
    background-size: 100% 100%;
    height: 70vh;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 15px 0;
}

/* .title-text {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    z-index: 100;
}

.title-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--orange);
} */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Header Styles */
/* .header-section {
    background: var(--secondary);
    height: 70vh;
    color: white;
}

.header-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
} */

/* Committee Card Styles */
.committee-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 40px;
    position: relative;
    overflow: visible;
    transition: all 0.3s ease;
    max-width: 1080px;
    margin: 0 auto 40px;
}

.committee-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent-dark);
    box-shadow: 0 20px 40px rgba(252, 163, 17, 0.102);
}

.image-container {
    position: absolute;
    left: -70px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    border-radius: 20px;
    background: rgba(20, 33, 61, 0.701) !important;
    border: 2px solid var(--accent);
    box-shadow: 0 8px 25px rgba(252, 163, 17, 0.102);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.committee-card:hover .image-container {
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(0, 124, 224, 0.102);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.3s ease-in-out;
    filter: brightness(0.9);
}

.image-container:hover img {
    transform: scale(1.1);
}

.card-content {
    margin-left: 140px;
}

.committee-title {
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.committee-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.agenda-header {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 600;
}

.agenda-list {
    list-style: none;
    padding-left: 0;
}

.agenda-list li {
    color: var(--dark-text);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
}

.agenda-list li::before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.chairs-info {
    background: var(--dark-bg);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
}

.chairs-label {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chairs-names {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.download-btn {
    background: var(--accent);
    color: black;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.download-btn:hover {
    background: var(--accent-dark);
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(252, 163, 17, 0.3);
}

.committee-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-beginner {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.badge-intermediate {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.badge-advanced {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .committee-card {
        padding: 80px 30px 40px;
        margin-top: 40px;
    }

    .image-container {
        position: absolute;
        top: -50px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 100px;
    }

    .image-container img {
        width: 60px;
        height: 60px;
    }

    .card-content {
        margin-left: 0;
        margin-top: 20px;
    }

    .committee-title {
        font-size: 1.5rem;
    }

    .committee-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .committee-badge {
        top: 10px;
        right: 10px;
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .committee-card {
        padding: 70px 20px 30px;
    }

    .committee-title {
        font-size: 1.3rem;
    }

    .agenda-list li {
        font-size: 0.9rem;
    }
}