/* Seminars Component CSS - Front-end */

/* General styles */
.seminars-container {
    font-family: 'Play', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    color: #272727;
    line-height: 1.6;
    background-color: #fff;
}

/* Header section */
.seminars-header {
    margin-bottom: 40px;
    text-align: left;
    position: relative;
}

.seminars-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #272727;
    position: relative;
    display: inline-block;
}

.seminars-header h1:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #dd262b;
    margin-top: 15px;
}

.seminars-intro, .seminars-contact {
    font-size: 16px;
    margin-bottom: 10px;
    color: #535353;
}

.seminars-contact a {
    color: #dd262b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.seminars-contact a:hover {
    text-decoration: underline;
}

/* Seminars list */
.seminars-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.seminar-item {
    padding: 25px;
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 5px;
    position: relative;
    overflow: hidden;
}

.seminar-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Diagonal design element similar to the reference site */
.seminar-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #dd262b;
}

/* Date styling */
.seminar-date {
    font-size: 18px;
    font-weight: 700;
    color: #dd262b;
    margin-bottom: 15px;
    display: inline-block;
    padding-right: 15px;
}

/* Title styling */
.seminar-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #272727;
}

/* Location styling */
.seminar-location {
    font-size: 16px;
    color: #403935;
    margin-bottom: 15px;
    font-weight: 500;
}

/* Theme, Instructor, Organizer styling */
.seminar-theme, .seminar-instructor, .seminar-organizer {
    display: flex;
    margin-bottom: 10px;
    line-height: 1.5;
}

.theme-label, .instructor-label, .organizer-label {
    font-weight: 600;
    margin-right: 10px;
    min-width: 100px;
    color: #535353;
}

.theme-content, .instructor-content, .organizer-content {
    flex: 1;
    color: #403935;
}

/* Description styling */
.seminar-description {
    margin-top: 15px;
    font-size: 15px;
    color: #535353;
    line-height: 1.6;
}

/* Pagination styling */
.pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.pagination ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 5px;
}

.pagination ul li {
    display: inline-block;
}

.pagination ul li a, .pagination ul li span {
    padding: 8px 15px;
    background-color: #f8f8f8;
    color: #535353;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.pagination ul li a:hover {
    background-color: #dd262b;
    color: #fff;
}

.pagination ul li.active span {
    background-color: #dd262b;
    color: #fff;
}

/* Responsive styles */
@media (max-width: 768px) {
    .seminar-theme, .seminar-instructor, .seminar-organizer {
        flex-direction: column;
    }

    .theme-label, .instructor-label, .organizer-label {
        margin-bottom: 5px;
    }

    .seminars-header h1 {
        font-size: 28px;
    }

    .seminar-date {
        font-size: 16px;
    }

    .seminar-title {
        font-size: 18px;
    }

    .seminar-item {
        padding: 20px;
    }
}
