/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans:wght@400;600;700&display=swap');

/* Headers/Titles - Bold, Strong Font */
h1, h2, h3, h4, .cta-button, .btn, .hero-title, .features-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Body Text - Clean, Readable Font */
body, p, .feature-card p, .nav-links li a {
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

/* Additional Gym-Specific Typography Enhancements */
.tagline {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

/* Weights and Styles */
h1 { font-size: 3rem; font-weight: 700; }
h2 { font-size: 2.5rem; font-weight: 600; }
h3 { font-size: 2rem; font-weight: 600; }


/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
}





/* Hero Section */
.hero {
    background: #111 url('../img/services_hero.jpeg') no-repeat center center;
    background-size: cover;
    height: 65vh;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.overlay {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px;
    width: 90%;
    max-width: 900px;
    border-radius: 12px;
}

.tagline {
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #ffc107;
    font-weight: bold;
}

.hero-title {
    font-size: 3.4rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-desc {
    font-size: 1.2rem;
    color: #f5f5f5;
    line-height: 1.8;
}




/* Service Section Styles */
.service-section {
    padding: 20px 20px;
    background-color: #f5f5f5;
    font-family: 'Arial', sans-serif;
}

.service-container {
    display: flex;
    flex-direction: row;
    align-items: center; /* NEW - vertically center content */
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.service-content, .service-image {
    width: 50%;
    box-sizing: border-box;
}

.service-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    /*min-height: 350px;*/
}

.service-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 25px;
    /*border: 1px solid grey;*/
}

.service-number {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.service-title {
    font-size: 42px;
    font-weight: 500;
    color: #333;
    margin-top: 0;
    margin-bottom: 10px;
}

.service-description p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}



/* Service Features */
.service-features {
    /*margin: 25px 0;*/
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-icon {
    color: #ffc107; /* Yellow color to match your theme */
    font-size: 18px;
    margin-right: 15px;
    width: 24px; /* Fixed width for better alignment */
    text-align: center;
}

.feature-item p {
    margin: 0;
    font-weight: 500;
}

/* Space between buttons */
.service-cta .btn:first-child {
    margin-right: 10px;
}

/* For mobile screens */
@media (max-width: 768px) {
    .service-container {
        flex-direction: column;
    }

    .service-content, .service-image {
        width: 100%;
    }

    .service-content {
        margin-bottom: 30px;
    }
}

/* Responsive styling for mobile */
@media (max-width: 576px) {
    .service-cta {
        display: flex;
        flex-direction: column;
    }

    .service-cta .btn {
        margin-bottom: 10px;
    }

    .service-cta .btn:first-child {
        margin-right: 0;
    }
}





/* Footer section */
/*footer {*/
/*    background-color: #171616;*/
/*    width: 100%; !* Ensure full width *!*/
/*    margin: 0; !* Remove any default margins *!*/
/*    padding: 0; !* Remove padding from footer itself *!*/
/*}*/

/*.footer-content {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    justify-content: space-between;*/
/*    padding: 40px 60px;*/
/*    max-width: 1200px; !* Optional: limit max-width for very large screens *!*/
/*    margin: 0 auto; !* Center the content *!*/
/*    width: 100%; !* Ensure content takes full width *!*/
/*    box-sizing: border-box; !* Include padding in width calculation *!*/
/*}*/

/*.footer-column {*/
/*    flex: 1 1 200px;*/
/*    min-width: 200px;*/
/*    text-align: left;*/
/*    margin: 0 45px;*/
/*}*/

/*.footer-column h4 {*/
/*    margin-bottom: 15px;*/
/*    text-transform: uppercase;*/
/*    color: #ffc107;*/
/*}*/

/*.footer-column ul {*/
/*    list-style: none;*/
/*    padding: 0;*/
/*}*/

/*.footer-column ul li {*/
/*    margin-bottom: 10px;*/
/*}*/

/*.footer-column a {*/
/*    text-decoration: none;*/
/*    color: white;*/
/*    transition: color 0.3s ease;*/
/*}*/

/*.footer-column a:hover {*/
/*    color: #ffc107;*/
/*}*/

/*.contact-us {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    gap: 15px;*/
/*}*/

/*.footer-bottom {*/
/*    !*margin-top: 20px;*!*/
/*    padding-bottom: 20px;*/
/*    text-align: center;*/
/*    border-top: 1px solid #ddd;*/
/*    color: white;*/
/*}*/

/*!* Responsive Adjustments *!*/
/*@media screen and (max-width: 768px) {*/
/*    .footer-content {*/
/*        flex-direction: column;*/
/*    }*/

/*    .footer-column {*/
/*        flex: 1 1 100%;*/
/*        margin: 10px 0;*/
/*    }*/

/*    !*.contact-us {*!*/
/*    !*    justify-content: center;*!*/
/*    !*}*!*/
/*}*/

/*@media screen and (max-width: 480px) {*/
/*    footer {*/
/*        padding: 10px;*/
/*    }*/

/*    .footer-column {*/
/*        text-align: center;*/
/*    }*/

/*    !*.contact-us {*!*/
/*    !*    justify-content: center;*!*/
/*    !*}*!*/
/*}*/

/*.social-icons a {*/
/*    color: white;*/
/*    font-size: 24px;*/
/*    margin-right: 15px;*/
/*    transition: color 0.3s ease;*/
/*}*/

/*.social-icons a:hover {*/
/*    color: #ffc107;*/
/*}*/


/*.footer-cta h3 {*/
/*    font-size: 1.8rem;*/
/*    margin-bottom: 10px;*/
/*    color: #ffffff;*/
/*}*/

/*.footer-cta p {*/
/*    font-size: 1.1rem;*/
/*    color: #dddddd;*/
/*}*/

/*!* Responsive *!*/
/*@media (max-width: 768px) {*/
/*    .hero-title {*/
/*        font-size: 2.4rem;*/
/*    }*/

/*    .feature-cards {*/
/*        flex-direction: column;*/
/*        align-items: center;*/
/*    }*/

/*    .navbar {*/
/*        flex-direction: column;*/
/*        align-items: flex-start;*/
/*        gap: 10px;*/
/*    }*/

/*    .nav-links {*/
/*        flex-direction: column;*/
/*        width: 100%;*/
/*    }*/

/*    .overlay {*/
/*        padding: 20px;*/
/*    }*/
/*}*/
/*.feature-card {*/
/*    background: #fff;*/
/*    padding: 25px;*/
/*    border-radius: 12px;*/
/*    transition: transform 0.3s ease;*/
/*    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);*/
/*    position: relative;           !* Needed for stretched-link *!*/
/*    overflow: visible !important; !* Make sure link works *!*/
/*    cursor: pointer;              !* Optional: show pointer on hover *!*/
/*}*/

/*.feature-card:hover {*/
/*    transform: translateY(-8px);*/
/*    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);*/
/*}*/
