/* Custom styles for the landing page */

/* Hero section enhancements */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(36, 45, 96, 0.85), rgba(5, 19, 32, 0.85));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(36, 45, 96, 0.7), rgba(5, 19, 32, 0.8));
    z-index: 1;
}

.hero .blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero .container-fluid {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.hero .row {
    width: 100%;
    margin: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero .col-12.col-lg-10.col-xl-8 {
    padding: 0 15px;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
}

/* Typography improvements */
.hero .display-3 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.hero .lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
    opacity: 0.95;
    text-align: center;
    width: 100%;
    max-width: 600px;
}

/* Button container centering */
.hero .d-flex.justify-content-center {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Ensure all text elements use mx-auto for perfect centering */
.hero .mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.display-3 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

/* Card enhancements */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
}

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

/* Icon styling */
.text-success {
    color: #58BA52 !important;
}

.text-primary {
    color: #242D60 !important;
}

/* Button enhancements */
.btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero .btn-success {
    background-color: #58BA52;
    border-color: #58BA52;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(88, 186, 82, 0.3);
}

.hero .btn-success:hover {
    background-color: #4a9944;
    border-color: #4a9944;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 186, 82, 0.4);
}

.hero .btn-outline-light {
    color: #ffffff;
    border-color: #ffffff;
    background-color: transparent;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.hero .btn-outline-light:hover {
    background-color: #ffffff;
    color: #242D60;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-success {
    background-color: #58BA52;
    border-color: #58BA52;
}

.btn-success:hover {
    background-color: #4a9944;
    border-color: #4a9944;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(88, 186, 82, 0.3);
}

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

/* Section spacing */
.section {
    padding: 80px 0;
}

/* Testimonial cards */
.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

/* Star ratings */
.text-warning {
    color: #ffc107 !important;
}

/* FAQ accordion */
.accordion .card {
    border: none;
    border-bottom: 1px solid #e9ecef;
    border-radius: 0;
}

.accordion .card:first-child {
    border-radius: 15px 15px 0 0;
}

.accordion .card:last-child {
    border-radius: 0 0 15px 15px;
    border-bottom: none;
}

.accordion .btn-link {
    color: #242D60;
    text-decoration: none;
    font-weight: 600;
}

.accordion .btn-link:hover {
    color: #58BA52;
}

/* Form styling */
.form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 12px 15px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #58BA52;
    box-shadow: 0 0 0 0.2rem rgba(88, 186, 82, 0.25);
}

/* Newsletter section */
.newsletter-section {
    background: linear-gradient(135deg, #242D60, #051320);
}

/* Footer */
.site-football {
    background: linear-gradient(135deg, #051320, #242D60);
}

/* Social icons */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #58BA52;
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        justify-content: center;
        align-items: center;
    }
    
    .hero .container-fluid {
        height: 80vh;
        padding: 0 20px;
    }
    
    .hero .col-12.col-lg-10.col-xl-8 {
        padding: 0;
        text-align: center;
        min-height: 60vh;
    }
    
    .hero .display-3 {
        font-size: 2.5rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero .lead {
        font-size: 1.1rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .hero .btn {
        width: 100%;
        max-width: 250px;
        margin: 5px auto;
    }
    
    .hero .d-flex.justify-content-center.flex-wrap {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 70vh;
        justify-content: center;
        align-items: center;
    }
      .hero .display-3 {
        font-size: 2rem;
        margin-bottom: 1rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
        line-height: 1.1;
    }
      .hero .lead {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
        line-height: 1.4;
    }
    
    .hero .container-fluid {
        height: 70vh;
        padding: 0 15px;
    }
    
    .hero .col-12.col-lg-10.col-xl-8 {
        padding: 0;
        text-align: center;
        min-height: 50vh;
    }
    
    .hero .d-flex.justify-content-center.flex-wrap {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero .btn {
        width: 90%;
        max-width: 200px;
        margin: 5px auto;
        display: block;
    }
}

@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }
    
    .hero {
        min-height: 80vh;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* Animation enhancements */
[data-aos="fade-up"] {
    transform: translateY(50px);
    opacity: 0;
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

/* Custom utilities */
.font-weight-bold {
    font-weight: 700 !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.bg-dark {
    background-color: #212529 !important;
}

/* Feature icons */
.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #58BA52, #4a9944);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}
