/* Event List Styles */
.funktionskatalog-event-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.event-list-title {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.event-card-link {
    text-decoration: none;
    display: block;
}

.event-card {
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.event-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-thumbnail-placeholder {
    width: 100%;
    height: 200px;
    background: #ddd;
}

.event-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 10px;
}

.event-meta {
    margin: 0 10px 10px;
    font-size: 14px;
    color: #666;
}

.event-date,
.event-location {
    display: block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
}

.event-date:before,
.event-location:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: #ff0000; /* Red accent */
    border-radius: 50%;
}

/* Event Detail Styles */
.funktionskatalog-event-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.event-hero {
    position: relative;
    margin-bottom: 40px;
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.hero-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 10px;
}

.hero-button {
    display: inline-block;
    padding: 10px 20px;
    background: #ff0000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.hero-button:hover {
    background: #d50000;
}

/* Event Info Section */
.event-info {
    margin-bottom: 40px;
}

.event-info h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.event-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.event-info p strong {
    color: #333;
}

/* About Section */
.event-about {
    margin-bottom: 40px;
}

.event-about h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.event-about p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.about-images {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.about-images img {
    max-width: 200px;
    border-radius: 8px;
}

.about-button {
    display: inline-block;
    padding: 10px 20px;
    background: #ff0000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.about-button:hover {
    background: #d50000;
}

/* Why Section */
.event-why {
    margin-bottom: 40px;
}

.why-caption {
    font-size: 16px;
    color: #ff0000;
    margin-bottom: 10px;
}

.event-why h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.why-bullets {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.why-bullets li {
    margin-bottom: 20px;
}

.why-bullets h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.why-bullets p {
    font-size: 16px;
    color: #666;
}

.why-cta h3 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.why-cta p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.why-cta-button {
    display: inline-block;
    padding: 10px 20px;
    background: #ff0000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.why-cta-button:hover {
    background: #d50000;
}

/* Speakers Section */
.event-speakers {
    margin-bottom: 40px;
}

.event-speakers h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.event-speakers p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.speakers-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.speaker-card {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.speaker-image {
    max-width: 150px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.speaker-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.speaker-position {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.speaker-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.speaker-socials {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-icon {
    width: 24px;
    height: 24px;
}

/* Program Section */
.event-program {
    margin-bottom: 40px;
}

.event-program h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.program-list {
    list-style: none;
    padding: 0;
}

.program-list li {
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
}

.program-time {
    font-size: 16px;
    font-weight: bold;
    color: #ff0000;
    display: block;
    margin-bottom: 5px;
}

.program-list h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.program-speaker {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.program-list p {
    font-size: 16px;
    color: #666;
}

/* Partners Section */
.event-partners {
    margin-bottom: 40px;
}

.event-partners h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.partners-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.partner-card {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.partner-logo {
    max-width: 150px;
    margin-bottom: 10px;
}

.partner-card p {
    font-size: 16px;
    color: #666;
}

/* Contact Section */
.event-contact {
    margin-bottom: 40px;
}

.event-contact h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.event-contact p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.contact-bullets {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.contact-bullets li {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.contact-bullets li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: #ff0000;
    border-radius: 50%;
}

.contact-form-code {
    margin-bottom: 20px;
}

.signup-form {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
}

.signup-form form p {
    margin-bottom: 15px;
}

.signup-form label {
    display: block;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.signup-form input[type="text"],
.signup-form input[type="email"],
.signup-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    color: #333;
}

.signup-form textarea {
    height: 100px;
}

.signup-form button {
    padding: 10px 20px;
    background: #ff0000;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.signup-form button:hover {
    background: #d50000;
}

/* Post-Event Attachments Section */
.event-post-attachments {
    margin-bottom: 40px;
}

.event-post-attachments h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.event-post-attachments ul {
    list-style: none;
    padding: 0;
}

.event-post-attachments li {
    margin-bottom: 10px;
}

.event-post-attachments a {
    color: #ff0000;
    text-decoration: none;
}

.event-post-attachments a:hover {
    text-decoration: underline;
}