/* Enhanced Events Page Styles */
.events-page {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-title {
    margin-bottom: 80px;
}

.section-title__tagline-box {
    margin-bottom: 15px;
}

.section-title__tagline {
    display: inline-block;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title__title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title__text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced Event Card Styles */
.event-one__single {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-one__single:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
}

.event-one__img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.event-one__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-one__single:hover .event-one__img img {
    transform: scale(1.1);
}

.event-one__date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 12px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 123, 255, 0.3);
    z-index: 2;
}

.event-one__date p {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.event-one__date span {
    font-size: 12px;
    font-weight: 500;
    display: block;
    margin-top: 3px;
    opacity: 0.9;
}

.event-one__content {
    padding: 30px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-one__time {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.event-one__time .icon-clock {
    margin-right: 8px;
    color: #007bff;
}

.event-one__title {
    margin-bottom: 15px;
    flex: 0 0 auto;
}

.event-one__title a {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.event-one__title a:hover {
    color: #007bff;
}

/* Event Description Styles */
.event-one__description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-one__location {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.event-one__location-icon {
    flex-shrink: 0;
    margin-right: 10px;
    margin-top: 2px;
}

.event-one__location-icon .icon-location {
    color: #007bff;
    font-size: 16px;
}

.event-one__loation-text {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.event-one__btn-box {
    margin-top: auto;
    flex: 0 0 auto;
}

.event-one__btn-box .thm-btn {
    width: 100%;
    padding: 12px 20px;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.event-one__btn-box .thm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.event-one__btn-box .thm-btn .icon-angles-right {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.event-one__btn-box .thm-btn:hover .icon-angles-right {
    transform: translateX(3px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .events-page {
        padding: 80px 0;
    }
    
    .section-title {
        margin-bottom: 60px;
    }
    
    .section-title__title {
        font-size: 36px;
    }
    
    .event-one__img {
        height: 220px;
    }
    
    .event-one__content {
        padding: 25px 20px;
    }
    
    .event-one__title a {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .events-page {
        padding: 60px 0;
    }
    
    .section-title {
        margin-bottom: 50px;
    }
    
    .section-title__title {
        font-size: 28px;
    }
    
    .section-title__text {
        font-size: 14px;
    }
    
    .event-one__img {
        height: 200px;
    }
    
    .event-one__content {
        padding: 20px 15px;
    }
    
    .event-one__title a {
        font-size: 16px;
    }
    
    .event-one__description {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
    
    .event-one__date {
        padding: 10px 12px;
    }
    
    .event-one__date p {
        font-size: 20px;
    }
    
    .event-one__date span {
        font-size: 11px;
    }
}

@media (max-width: 575px) {
    .section-title__title {
        font-size: 24px;
    }
    
    .event-one__single {
        margin-bottom: 20px;
    }
    
    .event-one__img {
        height: 180px;
    }
    
    .event-one__content {
        padding: 15px 12px;
    }
    
    .event-one__title a {
        font-size: 15px;
    }
    
    .event-one__description {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .event-one__time,
    .event-one__loation-text {
        font-size: 12px;
    }
}
