.single-event-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.event-hero {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
   
  
    overflow: hidden;
}

.event-hero-overlay {
    background: rgba(0, 0, 0, 0.4);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.event-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.event-meta {
    font-size: 16px;
    color: #ddd;
}

.event-body {
    padding: 30px 0;
}

.event-image img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.event-description {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 30px;
}

.event-footer {
    text-align: center;
    margin-top: 30px;
}

.back-to-events {
    display: inline-block;
    padding: 12px 24px;
    background-color: #6a7633;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.back-to-events:hover {
    background-color: #5a632c;
}

.cta-contact-link {
    text-align: center;
    margin: 50px 0 20px;
}

.cta-contact-link a {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6a7633;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cta-contact-link a:hover {
    color: #4d5523;
}

@media (max-width: 768px) {
    .event-title {
        font-size: 26px;
    }

    .event-meta {
        font-size: 14px;
    }

    .event-description {
        font-size: 16px;
    }
}
