
:root {
    --p3-accent: #FFC20E;
    --p3-secondary: #0085CA;
    --p3-dark: #002A5E;
    --p3-light-text: #E2E8F0;
    --p3-dark-text: #A0AEC0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--p3-dark);
    color: var(--p3-light-text);
    margin: 0;
}

.text-gradient {
    background-image: -webkit-linear-gradient(to right, var(--p3-accent), var(--p3-secondary));
    background-image: linear-gradient(to right, var(--p3-accent), var(--p3-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

header {
    background-color: #001f44;
    -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 50;
}

.top-bar {
    background-color: #001429;
    padding: 0.5rem 1.5rem;
    color: #a0aec0;
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

.top-bar-content a {
    color: #a0aec0;
    text-decoration: none;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

.top-bar-content a:hover {
    color: var(--p3-accent);
}

.main-header {
    padding: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-img {
    max-height: 50px;
}

.logo-text {
    font-size: 1.875rem;
    font-weight: 800;
    color: white;
}

.desktop-nav {
    display: flex;
    gap: 1.5rem;
}

.mobile-menu-btn {
    display: none;
}


@media (max-width: 1023px) {
    .top-bar-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    .desktop-nav {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }

    .footer-contact {
        flex-direction: column;
        gap: 1rem;
    }
}

.cta-button {
    background-color: var(--p3-accent);
    color: var(--p3-dark);
    font-weight: 600;
    padding: 0.5rem 1rem;
    -webkit-border-radius: 0.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e6ac00;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background-color: #001f44;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.mobile-menu a {
    text-decoration: none;
    color: var(--p3-light-text);
    font-weight: 600;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 0.25rem;
}

.hero-section {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    overflow: hidden;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
}

.hero-content {
    max-width: 42rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 1;
    background-color: rgba(0, 42, 94, 0.7);
    padding: 2rem;
    -webkit-border-radius: 1rem;
    border-radius: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--p3-secondary);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--p3-light-text);
    max-width: 36rem;
    margin: 0 auto;
}

.cta-button-2 {
    margin-top: 2rem;
    background-color: var(--p3-accent);
    color: var(--p3-dark);
    font-size: 1.125rem;
    font-weight: 700;
    padding: 0.75rem 2rem;
    -webkit-border-radius: 0.75rem;
    border-radius: 0.75rem;
    text-decoration: none;
    -webkit-transition: background-color 0.3s, -webkit-transform 0.3s;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button-2:hover {
    background-color: #e6ac00;
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

.section {
    padding: 4rem 1.5rem;
    background-color: #002A5E;
}

.section-dark {
    padding: 4rem 1.5rem;
    background-color: #001f44;
}

.section-container {
    max-width: 80rem;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--p3-dark-text);
}

.card-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .card-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card {
    background-color: transparent;
    height: 350px;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    position: relative;
    cursor: pointer;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    -webkit-transition: -webkit-transform 0.8s;
    transition: transform 0.8s;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin: center;
    transform-origin: center;
}

.card:hover .card-inner, .card.flipped .card-inner {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: #001f44;
    padding: 1.5rem;
    -webkit-border-radius: 1rem;
    border-radius: 1rem;
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--p3-secondary);
}

.card-back {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    background-size: cover;
    background-position: center;
}

.card-back-kuony {
    background-image: -webkit-linear-gradient(rgba(0, 42, 94, 0.8), rgba(0, 42, 94, 0.8)), url('Kuony_Bear.JPG');
    background-image: linear-gradient(rgba(0, 42, 94, 0.8), rgba(0, 42, 94, 0.8)), url('Kuony_Bear.JPG');
}

.card-back-tiffany {
    background-image: -webkit-linear-gradient(rgba(0, 42, 94, 0.8), rgba(0, 42, 94, 0.8)), url('Tiffany_Sprint-EDIT.jpg');
    background-image: linear-gradient(rgba(0, 42, 94, 0.8), rgba(0, 42, 94, 0.8)), url('Tiffany_Sprint-EDIT.jpg');
}

.card-back-chuol {
    background-image: -webkit-linear-gradient(rgba(0, 42, 94, 0.8), rgba(0, 42, 94, 0.8)), url('Coach Chuol_Z.png');
    background-image: linear-gradient(rgba(0, 42, 94, 0.8), rgba(0, 42, 94, 0.8)), url('Coach Chuol_Z.png');
}

.card-back-carlos {
    background-image: -webkit-linear-gradient(rgba(0, 42, 94, 0.8), rgba(0, 42, 94, 0.8)), url('../Coach Carlos.png');
    background-image: linear-gradient(rgba(0, 42, 94, 0.8), rgba(0, 42, 94, 0.8)), url('../Coach Carlos.png');
}

.card-back-rich {
    background-image: -webkit-linear-gradient(rgba(0, 42, 94, 0.8), rgba(0, 42, 94, 0.8)), url('Rich_Headshot.jpg');
    background-image: linear-gradient(rgba(0, 42, 94, 0.8), rgba(0, 42, 94, 0.8)), url('Rich_Headshot.jpg');
}

.card-header {
    text-align: center;
}

.card-image {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 1rem;
    -webkit-border-radius: 9999px;
    border-radius: 9999px;
    object-fit: cover;
}

.chuol-face-center {
    object-position: center 5%;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.card-subtitle {
    color: var(--p3-secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.star {
    margin-right: 0.5rem;
    color: var(--p3-accent);
}

.sports-focus {
    background-color: #002A5E;
    margin-top: 4rem;
    padding: 2rem;
    -webkit-border-radius: 1rem;
    border-radius: 1rem;
    -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.sports-focus-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-align: center;
}

.sports-focus-text {
    color: var(--p3-dark-text);
    text-align: center;
    margin-bottom: 1.5rem;
}

.sports-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    color: white;
    font-weight: 500;
}

.sports-tags button {
    background-color: #003366;
    padding: 0.5rem 1rem;
    -webkit-border-radius: 9999px;
    border-radius: 9999px;
    border: 1px solid var(--p3-accent);
    color: white;
    font-weight: 500;
    cursor: pointer;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.sports-tags button:hover {
    background-color: #004488;
}

.testimonial-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .testimonial-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial-card {
    background-color: #001f44;
    padding: 1.5rem;
    -webkit-border-radius: 1rem;
    border-radius: 1rem;
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-image {
    width: 4rem;
    height: 4rem;
    -webkit-border-radius: 9999px;
    border-radius: 9999px;
    object-fit: cover;
    margin-right: 1rem;
}

.testimonial-author {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
}

.testimonial-text {
    color: var(--p3-light-text);
    font-style: italic;
}

.community-container {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .community-container {
        flex-direction: row;
    }
}

.community-image-container {
    flex: 1;
}

.community-image {
    -webkit-border-radius: 1rem;
    border-radius: 1rem;
    -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.community-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.community-text {
    font-size: 1.25rem;
    color: var(--p3-light-text);
}

.community-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 1.125rem;
    color: var(--p3-dark-text);
}

.checkmark {
    color: var(--p3-accent);
    margin-right: 0.75rem;
}

.community-link {
    margin-top: 1rem;
    color: var(--p3-secondary);
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    border-bottom: 2px solid var(--p3-secondary);
    padding-bottom: 0.25rem;
    -webkit-transition: color 0.3s, border-color 0.3s;
    transition: color 0.3s, border-color 0.3s;
}

.community-link:hover {
    color: #00aaff;
    border-color: #00aaff;
}

.contact-section {
    padding: 4rem 1.5rem;
    background-color: var(--p3-accent);
}

.contact-container {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
    color: #002A5E;
}

.contact-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.form-container {
    background-color: white;
    padding: 2rem;
    -webkit-border-radius: 0.75rem;
    border-radius: 0.75rem;
    -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    max-width: 36rem;
    margin: 0 auto;
    color: #4a5568;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .contact-form {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-form input {
    width: 100%;
    padding: 0.75rem;
    -webkit-border-radius: 0.5rem;
    border-radius: 0.5rem;
    border: 2px solid #d2d6dc;
    -webkit-transition: border-color 0.3s;
    transition: border-color 0.3s;
}

.contact-form input:focus {
    border-color: var(--p3-accent);
    outline: none;
}

.submit-button {
    grid-column: 1 / -1;
    background-color: #002A5E;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 0.75rem;
    -webkit-border-radius: 0.5rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #001f44;
}

footer {
    padding: 2rem;
    background-color: #001429;
    text-align: center;
    color: #a0aec0;
    font-size: 0.875rem;
}

.hidden {
    display: none;
}

/* Carousel Styles */
.carousel {
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 1rem;
    border-radius: 1rem;
    -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    aspect-ratio: 4 / 3;
}

.carousel-inner {
    display: flex;
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-item {
    min-width: 100%;
    display: none;
    height: 100%;
}

.carousel-item.active {
    display: block;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-control {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    z-index: 10;
}

.carousel-control.prev {
    left: 1rem;
}

.carousel-control.next {
    right: 1rem;
}

/* Utility Classes */
.max-w-7xl {
    max-width: 80rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.h-8 {
    height: 2rem;
}

.w-8 {
    width: 2rem;
}


/* Navigation Link Styling */
.desktop-nav a {
    text-decoration: none;
    color: var(--p3-light-text);
    font-weight: 600;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 0.25rem;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: var(--p3-accent);
    -webkit-transition: width 0.3s;
    transition: width 0.3s;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    height: 80%;
    -webkit-border-radius: 1rem;
    border-radius: 1rem;
    position: relative;
}

.close-button {
    color: #aaa;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer-contact {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

.footer-contact a {
    color: #a0aec0;
    text-decoration: none;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--p3-accent);
}

.social-icons {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icons a {
    color: #a0aec0;
    font-size: 1.5rem;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--p3-accent);
}
