/* SAM89 Soccer School CSS Styles */

:root {
    /* Colors based on SAM89 logo */
    --primary-blue: #275186;
    --primary-yellow: #FEC459;
    --dark-blue: #1a3a6a;
    --light-yellow: #ffd485;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
}


/* Hero section */
.hero-section {
    background: linear-gradient(rgba(39, 81, 134, 0.8), rgba(39, 81, 134, 0.9)), url('https://placehold.co/1200x600/275186/fec459?text=Soccer+Field') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 5rem 0;
    margin-bottom: 2rem;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.btn-primary {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: var(--primary-blue);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--light-yellow);
    border-color: var(--light-yellow);
    color: var(--dark-blue);
}

.btn-outline-primary {
    color: var(--primary-yellow);
    border-color: var(--primary-yellow);
}

.btn-outline-primary:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-blue);
}

/* Section styling */
.section-title {
    position: relative;
    margin-bottom: 2rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-yellow);
    margin-top: 10px;
}

section {
    padding: 4rem 0;
}

/* Card styling */
.card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 1.5rem;
}

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

.card-title {
    color: var(--primary-blue);
    font-weight: 600;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Team cards */
.team-card {
    border-left: 4px solid var(--primary-yellow);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.team-card h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.coach-name {
    font-weight: 600;
    color: var(--dark-gray);
}

.age-range {
    display: inline-block;
    background-color: var(--primary-yellow);
    color: var(--primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Schedule table */
.schedule-table {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.schedule-table thead th {
    background-color: var(--primary-blue);
    color: white;
    border: none;
}

.schedule-table tbody tr:nth-child(even) {
    background-color: var(--light-gray);
}

/* News items */
.news-date {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

/* Gallery */
.gallery-container {
    margin: 2rem 0;
}

.gallery-item {
    margin-bottom: 2rem;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.gallery-caption {
    margin-top: 0.75rem;
    font-weight: 500;
    color: var(--dark-blue);
    text-align: center;
}




/* Responsiveness */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-section h1 {
        font-size: 2.25rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}
