/* Hero Sections CSS - Professional Image-Based Layouts */

/* Main Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-bottom: 60px;
}

.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 32, 91, 0.85) 0%, rgba(0, 32, 91, 0.4) 100%);
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.hero-content {
    max-width: 700px;
    color: #ffffff;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: inline-block;
    padding: 15px 40px;
    background-color: #f7941d;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 148, 29, 0.3);
}

.hero-cta:hover {
    background-color: #d67d0f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 148, 29, 0.4);
}

/* Image Gallery Section */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 32, 91, 0.9), transparent);
    color: #ffffff;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Feature Cards with Images */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-card-content {
    padding: 25px;
}

.feature-card-content h3 {
    color: #00205b;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-card-link {
    color: #f7941d;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.feature-card-link:hover {
    color: #d67d0f;
}

/* Coach/Staff Profile Cards */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.profile-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

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

.profile-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.profile-info {
    padding: 20px;
}

.profile-name {
    color: #00205b;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.profile-title {
    color: #f7941d;
    font-size: 1rem;
    margin-bottom: 15px;
}

.profile-bio {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Action Image Section */
.action-section {
    position: relative;
    margin: 60px 0;
    border-radius: 10px;
    overflow: hidden;
}

.action-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.action-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 32, 91, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.action-text {
    color: #ffffff;
    max-width: 800px;
}

.action-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.action-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 400px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .feature-cards,
    .profile-grid {
        grid-template-columns: 1fr;
    }
    
    .action-text h2 {
        font-size: 2rem;
    }
    
    .action-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 300px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-cta {
        padding: 12px 30px;
        font-size: 1rem;
    }
}
