/* Custom Animations and Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;800;900&family=Open+Sans:wght@400;600&display=swap');

:root {
    --accent-color: #FFB606;
    --accent-dark: #e6a303;
    --text-dark: #1f2937;
    --text-light: #6b7280;
}

* {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

/* Navbar Transitions */
#navbar {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

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

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

/* Scrolled Navbar State */
.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar-scrolled .nav-link,
.navbar-scrolled .text-nav {
    color: var(--text-dark) !important;
}

.navbar-scrolled .logo-white {
    opacity: 0 !important;
    pointer-events: none;
}

.navbar-scrolled .logo-dark {
    opacity: 1 !important;
    pointer-events: auto;
}

/* Transparent Navbar State (Default) */
.navbar-transparent .nav-link,
.navbar-transparent .text-nav {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.navbar-transparent .logo-white {
    opacity: 1;
    pointer-events: auto;
}

.navbar-transparent .logo-dark {
    opacity: 0;
    pointer-events: none;
}

.navbar-transparent #mobile-menu-button {
    color: #111827 !important; /* gray-900 */
    background-color: white !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

.navbar-scrolled #mobile-menu-button {
    color: #111827 !important;
    background-color: white !important;
}


/* Hero Styles */
.hero-title {
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Premium Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    background-color: #FFB606;
    color: white;
    font-weight: 600;
    border-radius: 9999px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background-color: #e6a303;
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-primary:active {
    transform: scale(0.95);
}

.btn-hero {
    background: linear-gradient(135deg, #FFB606 0%, #ff8f00 100%);
    box-shadow: 0 4px 15px rgba(255, 160, 0, 0.4);
    padding: 1.2rem 4rem;
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: 0.5px;
    color: white;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 10;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

@media (max-width: 640px) {
    .btn-hero {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 90%;
        max-width: 280px;
    }
}

.btn-hero:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 160, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.3) inset;
    background: linear-gradient(135deg, #ffca28 0%, #ff6f00 100%);
}

.btn-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.btn-hero:hover::after {
    left: 100%;
    transition: 0.7s;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: 2px solid #FFB606;
    color: #FFB606;
    font-weight: 600;
    border-radius: 9999px;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.btn-outline:hover {
    background-color: #FFB606;
    color: white;
    transform: scale(1.05);
}

.btn-outline:active {
    transform: scale(0.95);
}

/* Hero Slider */
.slider-container {
    position: relative;
}

.slider-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
}

.slider-slide.active {
    opacity: 1;
    visibility: visible;
}

.slider-slide img {
    animation: kenBurns 25s ease-out infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: rgba(255, 182, 6, 0.9);
    border-color: #FFB606;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev { left: 2rem; }
.slider-next { right: 2rem; }

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    width: 40px;
    border-radius: 6px;
    background: #FFB606;
}

/* Testimonials */
/* Testimonials */
.testimonial-card-premium {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.03);
    border-top: 6px solid #FFB606;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.testimonial-card-premium::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-family: 'Georgia', serif;
    font-size: 180px;
    color: rgba(255, 182, 6, 0.08);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}


.testimonials-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 60px;
    height: 60px;
    background: white;
    border: none;
    border-radius: 50%;
    color: var(--accent-color);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-btn:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 15px 30px rgba(255, 182, 6, 0.3);
}

.testimonials-prev { left: 10px; }
.testimonials-next { right: 10px; }

/* Decorative Elements */
.section-title {
    font-weight: 800;
    letter-spacing: -0.5px;
}

.accent-pill {
    background: rgba(255, 182, 6, 0.15);
    color: #FFB606;
    border: 1px solid rgba(255, 182, 6, 0.2);
    backdrop-filter: blur(5px);
}

/* Mobile Menu - OLD STYLES REMOVED, now handled by JavaScript */
/* #mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobile-menu.active {
    max-height: 600px;
} */

/* Nav Icon Buttons (User/Cart) */
.nav-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    outline: none;
}

/* Transparent Header State */
.navbar-transparent .nav-icon-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-transparent .nav-icon-btn:hover {
    background: #FFB606;
    color: white;
    border-color: #FFB606;
    transform: translateY(-2px);
}

/* Scrolled Header State */
.navbar-scrolled .nav-icon-btn {
    background: #f3f4f6;
    color: var(--text-dark);
    border: 1px solid transparent;
}


.navbar-scrolled .nav-icon-btn:hover {
    background: #FFB606;
    color: white;
    box-shadow: 0 4px 12px rgba(255, 182, 6, 0.3);
    transform: translateY(-2px);
}

/* Training Cards Equal Height Fix */
.training-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.training-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 182, 6, 0.3);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f8fafc;
}

::-webkit-scrollbar-thumb {
    background: #FFB606;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e5a400;
}
