/* Sports Plus Inc Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Open+Sans:wght@400&display=swap');

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: #FAFAF5;
    color: #2E2E2E;
    display: flex;
    flex-direction: column;
}
nav {
    background: #5372a1;
    color: #FAFAF5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    font-family: 'Montserrat', sans-serif;
}
.logo img {
    width: 90px;
    border-radius: 12px;
}
.menu a {
    color: #FAFAF5;
    text-decoration: none;
    margin: 0 15px;
    padding: 10px 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border-radius: 5px;
    transition: background 0.2s, color 0.2s;
}
.menu a:hover {
    background: #d69418;
    color: #fff;
}
.hamburger {
    display: none;
    font-size: 2em;
    cursor: pointer;
    color: #FAFAF5;
    background: none;
    border: none;
    outline: none;
    z-index: 1002;
}

/* Mobile menu styles */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 220px;
    height: 100vh;
    background: #5372a1;
    box-shadow: -2px 0 12px rgba(0,0,0,0.12);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px 30px;
    z-index: 1001;
    transition: transform 0.3s ease;
}
.mobile-menu a {
    color: #FAFAF5;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 24px;
    font-size: 1.2em;
    display: block;
    width: 100%;
    padding: 10px 0;
    border-radius: 5px;
    transition: background 0.2s, color 0.2s;
}
.mobile-menu a:hover {
    background: #d69418;
    color: #5372a1;
}
.mobile-menu.show {
    display: flex;
}

/*SOCIAL MEDIA BUTTONS*/
.fa {
    padding: 10px;
    font-size: 20px;
    width: 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
}
.fa:hover {
    opacity: 0.7;
}
.fa-google {
    background: black;
    color: #3D5A80;
}

/* Hide desktop menu on mobile, show hamburger */
@media (max-width: 900px) {
    .desktop-menu {
        display: none !important;
    }
    .hamburger {
        display: block;
        position: absolute;
        right: 30px;
        top: 22px;
    }
    .logo {
        z-index: 1003;
    }
}
@media (min-width: 901px) {
    .mobile-menu {
        display: none !important;
    }
    .hamburger {
        display: none !important;
    }
}
.HeadingOverlay {
    background-color:rgba(0,0,0,0.8);
    padding: 30px;
}
.homepage {
    background: rgba(168,203,183,0.10);
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FAFAF5;
    padding: 60px 20px 30px 20px;
}
.homepage h1 {
    font-size: 3rem;
    font-family: 'Montserrat', sans-serif;
}
.homepage p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 1.5em auto;
    font-family: 'Open Sans', sans-serif;
}
.home-contact-btn {
    display: inline-block;
    margin-top: 2em;
    padding: 1em 2.5em;
    background: #d69418;
    color: #5372a1;
    border: none;
    border-radius: 32px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 2px 16px rgba(34,46,58,0.10);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.home-contact-btn:hover, .home-contact-btn:focus {
    background: #BC3908;
    color: #fff;
    box-shadow: 0 4px 24px rgba(242,140,140,0.18);
}
/* === Portfolio Testimonials Section === */
.testimonials {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2.5em 0 2.5em 0;
    text-align: center;
}
.testimonials h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.2em;
    color: #333;
}
.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5em;
    justify-content: center;
    flex-wrap: wrap;
}
.testimonial {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(34,46,58,0.10);
    padding: 2em 1.5em 1.5em 1.5em;
    margin: 0.5em 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.testimonial span {
    font-size: 1em;
    color: #ba8437;
    font-weight: bold;
}
.testimonial-stars {
    margin-bottom: 0.5em;
}
.star {
    color: #ffb347;
    font-size: 1.3em;
    margin: 0 0.05em;
    text-shadow: 0 1px 2px #e0c08a;
}
.content {
    padding: 40px 20px 10px 20px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}
.content h2 {
    color: #BC3908;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 0.5em;
}
.about-columns {
    display: flex;
    gap: 2.5em;
    align-items: center;
    justify-content: center;
    margin: 2em 0 2.5em 0;
    flex-wrap: wrap;
}
.about-img-col img {
    max-width: 350px;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(34,46,58,0.10);
}
.about-text-col {
    max-width: 600px;
    text-align: left;
    font-size: 1.1rem;
}
#contactForm {
    max-width: 500px;
    margin: 0 auto;
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.07);
}
#contactForm label {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    color: #2E2E2E;
}
#contactForm input[type="text"],
#contactForm input[type="email"],
#contactForm textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
}
#contactForm textarea {
    resize: vertical;
}
#contactForm button[type="submit"] {
    margin-top: 20px;
    padding: 12px 20px;
    font-size: 1rem;
    background: #5372a1;
    color: #2E2E2E;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}
#contactForm button[type="submit"]:hover {
    background: #BC3908;
    color: #fff;
}
footer {
    background: #5372a1;
    color: #FAFAF5;
    text-align: center;
    width: 100%;
    padding: 1.2em 0 0.5em 0;
    font-family: 'Open Sans', sans-serif;
    margin-top: 40px;
}
@media (max-width: 900px) {
    .about-columns { flex-direction: column; gap: 1.5em; }
    .about-img-col img { max-width: 90vw; }
    .about-text-col { max-width: 98vw; }
}
@media (max-width: 600px) {
    nav { flex-direction: column; padding: 10px 5px; }
    .menu { flex-direction: column; gap: 0.5em; }
    .logo img { width: 70px; }
    .homepage h1 { font-size: 2.1rem; }
    .content h2 { font-size: 1.3rem; }
    .testimonial-grid {
        flex-direction: column;
        gap: 1.2em;
    }
    .testimonial img {
        max-width: 90vw;
        height: auto;
        border-radius: 12px;
    }
}
