/* Global Styles */
:root {
    --primary: #4e73df;
    --primary-dark: #3a56b0;
    --secondary: #f8f9fa;
    --dark: #212529;
    --light: #f8f9fa;
    --success: #1cc88a;
    --info: #36b9cc;
    --warning: #f6c23e;
    --danger: #e74a3b;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.section-title {
    font-weight: 700;
    position: relative;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Button Styles */
.btn {
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Navbar Styles */
.navbar {
    padding: 0.5rem 1rem;
}

.navbar-brand img {
    max-height: 60px;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    color: #333 !important;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary) !important;
}

/* Hero Carousel Styles */
.hero-carousel .carousel-item {
    height: 600px;
    background-color: #000;
}

.hero-carousel .carousel-item img {
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    z-index: 1;
}

.carousel-caption {
    bottom: 20%;
    z-index: 2;
}

.carousel-caption h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Features Grid Styles */
.feature-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.feature-card img {
    height: 320px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.feature-card:hover img {
    transform: scale(1.05);
}

.feature-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    transition: all 0.3s ease;
}

/* About Section Styles */
.about-image {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Coaches Section Styles */
.coach-card {
    padding: 2rem;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.coach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.coach-img-wrapper {
    width: 150px;
    height: 150px;
    border: 5px solid var(--primary);
}

.coach-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coach-name {
    margin-top: 1rem;
    font-weight: 600;
}

.coach-title {
    font-weight: 500;
    margin-bottom: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--primary);
    color: #fff;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-3px);
}

/* Testimonials Section Styles */
.testimonial-card {
    padding: 2rem;
}

.testimonial-img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
}

.testimonial-name {
    font-weight: 600;
}

/* Sponsors Section Styles */
.sponsor-logo {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.sponsor-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.sponsor-logo img {
    max-height: 210px;
    transition: all 0.3s ease;
}

.sponsor-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* CTA Section Styles */
.cta {
    background-color: var(--primary);
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
}

/* Footer Styles */
.footer {
    background-color: #1a1e25;
    text-align: left;
}

.footer-title {
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #adb5bd;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-divider {
    background-color: rgba(255,255,255,0.1);
}

.copyright {
    color: #adb5bd;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-carousel .carousel-item {
        height: 500px;
    }

    .carousel-caption h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-carousel .carousel-item {
        height: 400px;
    }

    .carousel-caption h2 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .feature-card img {
        height: 250px;
    }
}

@media (max-width: 575.98px) {
    body {
        font-size: 14px;
    }

    h1, h2, h3 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
        text-align: center;
    }

    .navbar-brand img {
        max-height: 40px;
    }

    .nav-link {
        padding: 0.3rem 0.5rem !important;
        font-size: 0.9rem;
    }

    .hero-carousel .carousel-item {
        height: 350px;
    }

    .carousel-caption {
        bottom: 10%;
        text-align: center;
        padding: 0 1rem;
    }

    .carousel-caption h2 {
        font-size: 1.5rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }

    .feature-card img {
        height: 200px;
    }

    .feature-card {
        margin-bottom: 1.5rem;
    }

    .coach-card {
        padding: 1.2rem;
        text-align: center;
    }

    .coach-img-wrapper {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .coach-name {
        font-size: 1.1rem;
    }

    .coach-title {
        font-size: 0.95rem;
    }

    .sponsor-logo img {
        max-height: 100px;
        width: 100%;
        object-fit: contain;
    }

    .cta-title {
        font-size: 1.3rem;
        text-align: center;
    }

    .btn {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
    }

    .footer {
        text-align: center;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links a {
        font-size: 0.95rem;
    }

    .footer-title {
        font-size: 1rem;
    }
}
