html {
    scroll-behavior: smooth;
}
/* Global Styles */
:root {
    --primary-color: #FF6B00;
    --secondary-color: #333;
    --background-color: #fff;
    --text-color: #333;
    --spacing-unit: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Header & Navigation */
.header {
    position: fixed;
    width: 100%;
    background: var(--background-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    max-width: 100%;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 0;
}

.brand-logo img {
    height: 80px;
    width: 80px;
}

.title-logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.map-container {
    margin-top: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.map-container iframe {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
    position: relative;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000, 0 0 15px rgba(255, 255, 255, 0.5);
}

.hero p {
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000, 0 0 10px rgba(255, 255, 255, 0.5);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 2rem;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background: #ff8533;
}

/* Programs Section */
.programs {
    padding: 5rem 1rem;
    background: #f9f9f9;
}

.programs h2,
.facilities h2,
.coaches h2,
.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.program-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 90%;
    margin: 0 auto;
    padding: 0 1rem;
}

.program-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.program-card:hover {
    transform: translateY(-5px);
}

/* Facilities Section */
.facilities {
    padding: 5rem 1rem;
}

.facility-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 90%;
    margin: 0 auto;
}

.feature {
    text-align: center;
    padding: 2rem;
}

/* Coaches Section */
.coaches {
    padding: 5rem 1rem;
    background: #f9f9f9;
}

.coach-profiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.coach {
    text-align: center;
    padding: 2rem;
}

/* Coaching Details Page */
.coaching-details {
    padding-top: 80px;
    background: var(--background-color);
}

.coaching-intro {
    background: var(--primary-color);
    color: white;
    padding: 4rem 1rem;
    text-align: center;
}

.coaching-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    background: var(--background-color);
}

.program-level {
    color: #ff6600;
    font-weight: 600;
    margin: 0.5rem 0;
}

.program-desc {
    margin-bottom: 1rem;
}

.program-details {
    list-style: none;
    padding: 0;
}

.program-details li {
    margin: 0.5rem 0;
}

.kids-programs,
.adult-programs {
    padding: 4rem 0;
}

.kids-programs {
    background: #f9f9f9;
}

.cta-section {
    text-align: center;
    padding: 4rem 0;
    background: var(--secondary-color);
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
}

/* Contact Section */
.contact {
    padding: 5rem 1rem;
    text-align: center;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 3rem 1rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 90%;
    margin: 0 auto;
}

.footer-logo img {
    height: 40px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a,
.social-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover,
.social-links a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--text-color);
    transition: 0.3s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--background-color);
        flex-direction: column;
        padding: 1rem 0;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}