/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.hero-slider .slider-wrapper {
    position: relative;
}

.hero-slider .slide {
    position: relative;
    width: 100%;
    height: 640px;
    outline: none;
}

.hero-slider .slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-slider .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-slider .slide .container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-slider .slide-content {
    max-width: 600px;
    color: #fff;
}

.hero-slider .slide-content h1 {
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;    
    margin-bottom: 10px;
}

.hero-slider .slide-content p {
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 40px;
}

/* Slick Slider Arrows */
.hero-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    font-size: 0;
}

.hero-slider .slick-arrow:hover {
    background: #A22A7D;
    border-color: #A22A7D;
}

.hero-slider .slick-arrow:before {
    content: '';
    display: none;
}

.hero-slider .slick-prev {
    left: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
}

.hero-slider .slick-next {
    right: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
}

/* Slick Dots */
.hero-slider .slick-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 10;
}

.hero-slider .slick-dots li {
    width: 12px;
    height: 12px;
    margin: 0;
}

.hero-slider .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0;
}

.hero-slider .slick-dots li button:hover {
    background: rgba(255, 255, 255, 0.6);
}

.hero-slider .slick-dots li.slick-active button {
    background: #fff;
    width: 30px;
    border-radius: 6px;
}
.event-main {
    padding-top: 50px;
    padding-bottom: 80px;
}
.event-main .event-title {
    font-weight: 700;
    font-size: 27px;
    line-height: 30px;
    margin-bottom: 30px;
}
.event-main .event-info-wrap {
    display: flex;
    gap: 40px;
}
.event-main .event-info-wrap .event-time-date-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}
.event-main .event-info-wrap .event-time-date-col .date, .event-main .event-info-wrap .event-time-date-col .time {
    display: flex;
    gap: 7px;
    align-items: center;
}
.event-main .event-info-wrap .event-time-date-col .date {
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    color: #A22A7D;
}
.event-main .event-info-wrap .event-time-date-col .time {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #6F6F73;
}
.event-main .event-organiser-logo img {
    border-radius: 7px;
}
.event-main .event-organiser {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
}
.event-main .event-organiser .title {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
}
.event-main .event-organiser .name {
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
}
.event-main .event-contacts {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
}
.event-main .event-contacts .title {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
}
.event-main .event-contacts .name {
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    transition: 0.3s all;
}
.event-main .event-contacts .name:hover {
    color: #A22A7D;
}
.event-main .event-location {
    margin-top: 30px;
    display: flex;
    gap: 7px;
    align-items: center;
    color: #6F6F73;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
}
.event-main .event-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    margin-top: 40px;
}
.event-main .main-content {
    max-width: 751px;
}
.event-main .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.event-main .event-sidebar {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 15px;
    height: fit-content;
}
.event-main .event-sidebar .newsletter-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    margin-bottom: 10px;
}
.event-main .event-sidebar.filter-checkbox {
  flex-shrink: 0;
  margin-left: 20px;
  margin-right: 40px;
}
.event-main .event-sidebar .checkbox-label {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  user-select: none;
}
.event-main .event-sidebar .checkbox-label input[type="checkbox"] {
  display: none;
}
.event-main .event-sidebar .checkbox-custom {
    width: 16px;
    height: 16px;
    border: 1px solid #E9E9E9;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background-color: #F8F8F8;
}
.event-main .event-sidebar .checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background: #A22A7D;
}
.event-main .event-sidebar .checkbox-label input[type="checkbox"]:checked + .checkbox-custom:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 3px;
  height: 6px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.event-main .event-sidebar .checkbox-text {
  font-size: 14px;
}
.event-main .event-sidebar .title-add-event {
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    margin-top: 30px;
}
.event-main .event-sidebar .calendar-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.event-main .event-sidebar .calendar-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 17px 36px 17px 20px;
    border: 1px solid #ddd;
    border-radius: 7px;
    text-decoration: none;
    background: #fff;
    transition: 0.3s ease;
}
.event-main .event-sidebar .calendar-btn img {
    width: 30px;
    height: 30px;
    object-fit: cover;
}
.event-main .event-sidebar .calendar-btn:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}
.event-main .event-sidebar .calendar-btn span {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    vertical-align: middle;
}
.event-main .event-sidebar .event-iframe-wrap {
    max-width: 340px;
}
.event-main .event-participate-btn {
    display: block;
    background-color: #A22A7D;
    text-align: center;
    border-radius: 7px;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 25px 0;
    margin-top: 75px;
    transition: 0.3s all ease;
}
.event-main .event-participate-btn:hover{
    background-color: #2C478C;
}
.event-main .share-event-wrap {
    background-color: #FFFFFF;
    border-radius: 15px;
    margin-top: 60px;
    text-align: center;
    padding: 40px 60px 40px 60px;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
}
.event-main .share-event-wrap p a{
    color:#A22A7D;
    text-decoration: underline;
    transition: 0.3s all;
}
.event-main .share-event-wrap p a:hover{
    color:#2C478C;
}
.event-main .share-event-wrap .event-share-fb {
    border: 2px solid #A22A7D;
    padding-top: 13px;
    padding-right: 30px;
    padding-bottom: 13px;
    padding-left: 50px;
    border-width: 2px;
    display: inline-block;
    border-radius: 7px;
    font-weight: 800;
    font-size: 12px;
    line-height: 20px;
    vertical-align: middle;
    text-transform: uppercase;
    color: #A22A7D;
    margin-top: 20px;
    background-image: url('../assets/icons/facebook-purple.svg');
    background-repeat: no-repeat;
    background-position: 30px 13px;
    transition: 0.3s all;
}
.event-main .share-event-wrap .event-share-fb:hover {
    border: 2px solid #A22A7D;
    color: #fff;
    background-color: #A22A7D;
    background-image: url('../assets/icons/fb.svg');
    background-repeat: no-repeat;
    background-position: 30px 13px;
}
.event-related-section {
    margin-top: 50px;
    margin-bottom: 120px;
}
.event-related-section .related-title {
    font-weight: 700;
    font-size: 27px;
    line-height: 30px;
    text-align: center;
    margin-bottom: 35px;
}
/* Responsive */
@media (max-width: 1100px) {
    .event-main .event-info-wrap {
        gap: 15px;
    }
}
@media (max-width: 1000px) {
    .event-main .container {
        display: flex;
        justify-content: space-between;
        gap: 25px;
        flex-direction: column;
        align-items: center;
    }
    .event-main .container {
        display: flex;
        justify-content: space-between;
        gap: 25px;
        flex-direction: column;
    }
}
@media (max-width: 768px) {
    .hero-slider .slide {
        height: 210px;
    }
    
    .hero-slider .slide-content {
        max-width: 100%;
    }
    
    .hero-slider .slide-content h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .hero-slider .slide-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .hero-slider .btn-primary {
        padding: 12px 30px;
        font-size: 13px;
    }
    
    .hero-slider .slick-arrow {
        width: 32px;
        height: 32px;
    }
    
    .hero-slider .slick-prev {
        left: 15px;
    }
    
    .hero-slider .slick-next {
        right: 15px;
    }
    
    .hero-slider .slick-dots {
        bottom: 20px;
    }
    .hero-slider .slick-arrow img {
        width: 13px;
        height: auto;
    }
    .event-main .event-info-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .event-main .event-sidebar {
        background-color: #FFFFFF;
        padding: 24px;
        border-radius: 15px;
        height: fit-content;
    }
    .event-main .event-sidebar .calendar-buttons {
        display: flex;
        gap: 8px;
        margin-top: 30px;
        margin-bottom: 30px;
        justify-content: space-between;
    }

}

@media (max-width: 480px) {
    .hero-slider .slide {
        height: 400px;
    }
    
    .hero-slider .slide-content h1 {
        font-size: 26px;
    }
    
    .hero-slider .slide-content p {
        font-size: 14px;
    }
    
    .hero-slider .slick-arrow {
        width: 32px;
        height: 32px;
    }
    
    .hero-slider .slick-arrow:before {
        font-size: 16px;
    }
}