
/* Custom Styles for Faith Atletico Academy */
:root {
    --primary-color: #1a5276;
    --secondary-color: #e74c3c;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

/* Top Bar */
.top-bar {
    font-size: 0.9rem;
}

.top-bar i {
    width: 16px;
}

/* Navigation */
.navbar-brand img {
    height: 60px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 10px;
    color: var(--dark-color);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.carousel-slide {
    height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.carousel-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.carousel-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-content p {
    font-size: 1.2rem;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.bg-1 { background-image: url('../images/tembela.jpg'); }
.bg-2 { background-image: url('../images/football20.jpg'); }
.bg-3 { background-image: url('../images/competing.jpg'); }
.bg-4 { background-image: url('../images/drills.jpg'); }

/* Section Titles */
.section-title {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

/* Feature Boxes */
.feature-box {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    color: var(--primary-color);
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 30px;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #154360;
    border-color: #154360;
}

/* Social Icons */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Contact Info */
.contact-info i {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider {
        height: 50vh;
    }
    
    .carousel-slide {
        height: 50vh;
    }
    
    .carousel-content h2 {
        font-size: 2rem;
    }
    
    .carousel-content p {
        font-size: 1rem;
    }
    
    .top-bar .col-md-8,
    .top-bar .col-md-4 {
        text-align: center;
    }
    
    .top-bar .social-icons {
        margin-bottom: 10px;
    }
}




/* About Page Specific Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), #2c3e50);
}

/* Philosophy Content */
.philosophy-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 4px solid var(--primary-color);
}

/* Approach Items */
.approach-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.approach-item:hover {
    transform: translateX(10px);
}

/* Blockquote Styling */
.blockquote {
    border-left: 5px solid var(--primary-color);
    padding-left: 2rem;
}

/* Leadership Images */
.leadership-img {
    border: 5px solid var(--primary-color);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.leadership-img:hover {
    transform: scale(1.05);
}

/* Feature Icons */
.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

/* Methodology List */
.methodology-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.methodology-list li:last-child {
    border-bottom: none;
}

/* Skills Connect Section */
.skills-connect-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .philosophy-content p {
        padding-left: 0.5rem;
        font-size: 1rem;
    }
    
    .approach-item {
        padding: 1rem;
    }
    
    .blockquote {
        padding-left: 1rem;
    }
    
    .blockquote p {
        font-size: 1.5rem !important;
    }
}




/* Academy Page Specific Styles */

/* Service Cards */
.service-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #2c3e50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

/* Skills Level Sections */
.skills-level {
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
    background: #f8f9fa;
    border-radius: 0 10px 10px 0;
}

.skills-level h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Coaching Philosophy */
.coaching-philosophy {
    background: linear-gradient(135deg, var(--primary-color), #2c3e50);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.coaching-philosophy h3 {
    color: white;
    margin-bottom: 2rem;
}

/* Program Features */
.program-feature {
    padding: 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.program-feature:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.02);
}

.program-feature:hover h5 {
    color: white;
}

/* Age Groups */
.age-group {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.age-group:hover {
    transform: translateY(-5px);
}

.age-group-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-card {
        margin-bottom: 2rem;
    }
    
    .skills-level {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .coaching-philosophy {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }
    
    .program-feature {
        padding: 1rem;
    }
    
    .age-group {
        padding: 1.5rem 0.5rem;
    }
}

/* Image Styling */
.academy-img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.academy-img:hover {
    transform: scale(1.02);
}

/* Section Dividers */
.section-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 3rem 0;
}

/* Call to Action Enhancement */
.cta-section {
    background: linear-gradient(135deg, var(--dark-color), #2c3e50);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png');
    opacity: 0.1;
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

