/* ========================================
   Elementor Custom Widgets - Additional Styles
   ======================================== */

/* Club Identity Widget */
.club-identity .identity-box {
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.club-identity .identity-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.club-identity .colors-display {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Management Staff Widget */
.management-staff .staff-card {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.management-staff .staff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.management-staff .staff-card img {
    border: 4px solid #1e3a8a;
}

.management-staff .staff-card h4 {
    margin: 15px 0 5px;
    color: #1e3a8a;
    font-weight: 600;
}

/* Membership Benefits Widget */
.membership-benefits .benefit-card {
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.membership-benefits .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.membership-benefits .benefit-card i {
    display: block;
    margin-bottom: 20px;
}

.membership-benefits .benefit-card h4 {
    color: #1e3a8a;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Contact Form Widget */
.contact-form-widget {
    max-width: 100%;
}

.contact-form-widget .form-control,
.contact-form-widget .form-select {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px 15px;
}

.contact-form-widget .form-control:focus,
.contact-form-widget .form-select:focus {
    border-color: #1e3a8a;
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.15);
}

.contact-form-widget .btn-primary {
    padding: 12px 40px;
    border-radius: 8px;
    font-weight: 600;
}

/* Youth Team Widget */
.youth-team .youth-category-card {
    padding: 40px 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.youth-team .youth-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.youth-team .youth-category-card i {
    display: block;
    margin-bottom: 20px;
}

.youth-team .youth-category-card h4 {
    color: #1e3a8a;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Gallery Widget */
.match-gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.match-gallery .gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.match-gallery .gallery-item:hover img {
    transform: scale(1.1);
}

.match-gallery .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 138, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
}

.match-gallery .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.match-gallery .gallery-overlay h4 {
    color: #fff;
    margin-bottom: 15px;
}

.match-gallery .gallery-overlay i {
    font-size: 2rem;
}

/* Video Widget */
.video-highlights .video-item {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.video-highlights .video-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.video-highlights .video-thumbnail {
    position: relative;
    overflow: hidden;
}

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

.video-highlights .play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-highlights .video-item:hover .play-overlay {
    opacity: 1;
}

.video-highlights .video-item h4 {
    padding: 20px;
    margin: 0;
}

.video-highlights .video-item h4 a {
    color: #1e3a8a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.video-highlights .video-item h4 a:hover {
    color: #0f1f4a;
}

/* Donation Widget */
.donation-section .donation-methods {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.donation-section .donation-method {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.donation-section .donation-method h5 {
    color: #1e3a8a;
    margin-bottom: 15px;
    font-weight: 600;
}

.donation-section .donation-method i {
    margin-right: 10px;
}

.donation-section .donation-method p {
    margin-bottom: 10px;
}

.donation-section .donation-method .btn {
    margin-top: 15px;
}

/* Map Section */
.map-section iframe {
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Working Hours Widget */
.working-hours {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.working-hours h4 {
    color: #1e3a8a;
    margin-bottom: 15px;
    font-weight: 600;
}

.working-hours ul li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.working-hours ul li:last-child {
    border-bottom: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .club-identity .col-md-4,
    .management-staff .col-lg-3,
    .membership-benefits .col-md-4,
    .youth-team .col-md-4 {
        margin-bottom: 20px;
    }
    
    .gallery-item img,
    .video-thumbnail img {
        height: 200px;
    }
}
