/* Add these styles for the title section */
.page-title-section {
    text-align: center;
    position: relative;
    padding: 2rem 0;
}

.page-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #dc3545;
    border-radius: 2px;
}

.page-subtitle {
    color: #dc3545;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.coach-details-section {
    min-height: calc(100vh - 76px);
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 2rem 0;
}

.card {
    background: linear-gradient(145deg, #343a40, #212529);
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.coach-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding-top: 125%;
}

.coach-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.coach-image-container:hover img {
    transform: scale(1.1);
}

.display-5 {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.text-danger {
    color: #dc3545 !important;
}

.btn-outline-dark {
    color: #ffffff;
    border: 2px solid #dc3545;
    background: transparent;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.btn-outline-dark:hover {
    transform: translateY(-2px);
    background-color: #dc3545;
    border-color: #dc3545;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

h2.text-center {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    margin-bottom: 2rem;
}

.lead {
    color: #f8f9fa;
    font-size: 1.1rem;
    line-height: 1.6;
}

.coach-info {
    padding: 1rem;
}

.coach-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-body {
    padding: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-body {
        padding: 1.5rem;
    }

    .display-5 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1rem;
    }

    .btn-outline-dark {
        width: 100%;
        margin-top: 1rem;
    }
}

/* Animation for content loading */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeIn 0.5s ease-out;
}

.coaches-view {
    min-height: calc(100vh - 76px);
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 2rem 0;
}

.coach-card {
    transition: all 0.3s ease;
    background: linear-gradient(145deg, #343a40, #212529);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.coach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.coach-image {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
}

.coach-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.coach-card:hover .coach-image img {
    transform: scale(1.1);
}

.coach-info {
    position: relative;
    z-index: 1;
}

.btn-outline-light {
    border-width: 2px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.text-danger {
    color: #dc3545 !important;
}

/* Add this at the top of the file */
.col-lg-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
}

/* Add responsive breakpoints */
@media (max-width: 1200px) {
    .col-lg-2-4 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (max-width: 992px) {
    .col-lg-2-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (max-width: 768px) {
    .col-lg-2-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .col-lg-2-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
} 

