/* HOME PAGE CONTENT STYLING */
.hero-section {
    background-color: #ffffff;
}

.hero-slide {
    position: relative;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.sponsor-marquee {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.marquee-content {
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.section-header {
    position: relative;
}

.underline {
    border-radius: 2px;
}

.match-card, .tournament-card, .winner-card, 
.program-card, .activity-card, .contact-card {
    transition: all 0.3s ease;
}

.match-card:hover, .tournament-card:hover, 
.winner-card:hover, .program-card:hover, 
.activity-card:hover, .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.sponsor-card {
    transition: all 0.3s ease;
}

.sponsor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.notice-item {
    transition: all 0.3s ease;
}

.notice-item:hover {
    transform: translateX(5px);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: #1E88E5;
    border: none;
}

.btn-primary:hover {
    background-color: #1976D2;
}

.btn-warning {
    background-color: #FF8C00;
    border: none;
}

.btn-warning:hover {
    background-color: #E65100;
}

.btn-success {
    background-color: #4CAF50;
    border: none;
}

.btn-success:hover {
    background-color: #388E3C;
}

.gallery-item {
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(30, 136, 229, 0.7);
    border-radius: 50%;
    padding: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-slide {
        min-height: 400px !important;
    }
    
    .text-end {
        text-align: center !important;
    }
    
    .justify-content-end {
        justify-content: center !important;
    }
    
    .d-flex.flex-wrap.justify-content-end {
        justify-content: center !important;
    }
    
    .marquee-content {
        flex-direction: column;
        align-items: center !important;
    }
    
    .sponsor-logo {
        margin: 10px 0 !important;
    }
}