/* Define theme colors */
:root {
    --primary-blue-color: #4682A8;
    /* Blue from logo */
    --accent-orange-color: #F9A73E;
    /* Orange/gold from logo */
    --light-gray-background-color: #F4F4F4;
    /* Light gray */
    --dark-gray-text-color: #333;
    /* Dark gray for text */
    --cta-button-hover-color: #005f8a;
    /* Blue for CTA button */
    --hover-orange-color: #D98733;
    /* Slightly darker orange for hover state */
}


/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--dark-gray-text-color);
}

h1,
h2,
h3 {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    /* White background */
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-logo img {
    height: 40px;
    /* Adjust logo size */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.navbar a {
    color: #333333;
    /* Dark text color for contrast */
    font-size: 16px;
    font-weight: bold;
}

.navbar a:hover {
    color: #0077b6;
    /* Accent hover color */
}

.menu-toggle {
    display: none;
    /* Hide toggle button by default */
    background-color: transparent;
    border: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 10px;
        background-color: #0077b6;
        padding: 10px;
    }

    .nav-links.open {
        display: flex;
    }

    .menu-toggle {
        display: block;
        /* Show toggle for mobile */
    }
}


/* Hero Section */
.hero {
    text-align: center;
    background-color: #1e293b;
    /* Dark background */
    color: #ffffff;
    /* White text for contrast */
    padding: 3rem 1rem;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    max-width: 200px;
    /* Logo size */
    margin-bottom: 1.5rem;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.2rem;
    margin: 0;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-orange-color);
    /* Orange CTA */
    color: #fff;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--hover-orange-color);
    /* Darker orange on hover */
}


/* Section Styles */
section {
    padding: 60px 20px;
    text-align: center;
    background-color: var(--light-gray-background-color);
}

/* About Section */
.about {
    background-color: #ffffff;
    /* White background for clarity */
    color: #333333;
    /* Text color for readability */
    padding: 60px 20px;
    text-align: center;
}

.about h2 {
    color: #0077b6;
    /* Primary blue (logo color) */
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.about p {
    font-size: 1.2rem;
    margin: 0 auto 30px;
    max-width: 800px;
    line-height: 1.6;
}

.about-details ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
    text-align: left;
}

.about-details li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #1e293b;
    /* Dark blue (logo color) */
    line-height: 1.5;
}

.about-details strong {
    color: #f0ad4e;
    /* Accent orange for emphasis */
}

.faqs {
    background-color: var(--background-color);
}

/* Pricing Section */
.pricing {
    background-color: #f4f4f4;
    /* Light gray background for the section */
    color: #1e293b;
    /* Dark blue text color */
    text-align: center;
    padding: 60px 20px;
}

.pricing h2 {
    color: #0077b6;
    /* Primary blue from logo */
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.pricing p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #333333;
}

.pricing-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    /* Adds space between the cards */
    flex-wrap: wrap;
    /* Ensures responsiveness */
    margin-top: 20px;
}

.pricing-card {
    background-color: #ffffff;
    /* White background for cards */
    border: 2px solid #0077b6;
    /* Primary blue border */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #1e293b;
    /* Dark blue from the logo */
}

.pricing-card p {
    font-size: 1rem;
    color: #333333;
    margin-bottom: 10px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.pricing-card:nth-child(1) {
    border-top: 8px solid #f0ad4e;
    /* Accent orange for the Basic Package */
}

.pricing-card:nth-child(2) {
    border-top: 8px solid #0077b6;
    /* Primary blue for the Premium Package */
}


/* Contact Section */
.contact button {
    background-color: var(--accent-orange-color);
    color: white;
    cursor: pointer;
    border: none;
    font-size: 16px;
    font-weight: bold;
}

.contact button:hover {
    background-color: var(--hover-orange-color);
    /* Slightly darker orange */
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}



/* Responsive Styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .pricing-options {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }
}

/* ============================================= */
/* Athlete Profile Styles                        */
/* ============================================= */

/* Profile Header */
.profile-header {
    background-color: var(--primary-blue-color);
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-pic {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--accent-orange-color);
}

.profile-info h1 {
    font-size: 2rem;
    margin: 0;
    color: var(--accent-orange-color);
}

.profile-info p {
    font-size: 1.2rem;
    margin: 10px 0 0;
    color: #fff;
}

/* Bio Section */
.profile-bio {
    background-color: var(--light-gray-background-color);
    padding: 40px 20px;
    text-align: center;
}

.profile-bio h2 {
    color: var(--primary-blue-color);
    margin-bottom: 20px;
}

.profile-bio ul {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    max-width: 600px;
    text-align: left;
}

.profile-bio li {
    margin-bottom: 10px;
    font-size: 1rem;
}

/* Performance Stats */
.profile-stats {
    padding: 40px 20px;
    text-align: center;
}

.profile-stats table {
    width: 80%;
    margin: 0 auto;
    border-collapse: collapse;
}

.profile-stats th,
.profile-stats td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.profile-stats th {
    background-color: var(--primary-blue-color);
    color: white;
}

.profile-stats td {
    background-color: white;
}

/* Highlights Section */
.profile-highlights {
    padding: 40px 20px;
    text-align: center;
    background-color: #fff;
}

.profile-highlights iframe {
    margin-top: 20px;
    width: 100%;
    max-width: 640px;
    height: 360px;
    border: none;
}

/* Contact Section */
.profile-contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.profile-contact input,
.profile-contact textarea {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.profile-contact button {
    background-color: var(--accent-orange-color);
    color: #fff;
    border: none;
    font-size: 1rem;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.profile-contact button:hover {
    background-color: var(--hover-orange-color);
}