/* Coach Berry Shared Styles */

:root {
    --primary-dark: #000000;
    --primary: #1a1a1a;
    --secondary: #2d2d2d;
    --accent: #FF2400;
    --accent-light: #FF3a1f;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text: #1a1a1a;
    --text-light: #4a4a4a;
    --border: #e0e0e0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--light-gray);
}

/* Header & Navigation */
header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--accent);
}

nav a:hover::after {
    width: 100%;
}

.cta-nav {
    background: var(--accent);
    color: var(--white);
    padding: 0.7rem 1.8rem;
    border-radius: 25px;
    font-weight: 600;
}

.cta-nav::after {
    display: none;
}

.cta-nav:hover {
    background: var(--accent-light);
    color: var(--white);
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: var(--white);
    text-align: center;
    padding: 2.5rem;
    margin-top: 2rem;
}

footer p {
    margin: 0.5rem 0;
    opacity: 0.9;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sections */
section {
    padding: 5rem 2rem;
}

section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-dark);
    font-weight: 800;
    position: relative;
    padding-bottom: 1rem;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

section p {
    color: var(--text-light);
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 1.1rem 2.8rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 36, 0, 0.3);
}

.cta-button-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-button-secondary:hover {
    background: var(--white);
    color: var(--accent);
    border-color: var(--white);
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    transition: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 1rem;
        gap: 0;
        z-index: 99;
    }

    nav ul.active {
        display: flex;
    }

    nav li {
        padding: 1rem 0;
        border-bottom: 1px solid var(--border);
    }

    nav li:last-child {
        border-bottom: none;
    }

    .hamburger {
        display: flex;
    }

    section {
        padding: 3rem 2rem;
    }

    section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 1rem;
    }

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

    section {
        padding: 3rem 1rem;
    }

    section h2 {
        font-size: 1.6rem;
    }
}
