/* CoachCare Responsive Styles */

/* Mobile Navbar Styles */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: rgba(11, 15, 25, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 40;
    padding: 1rem 0;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
}

.mobile-menu nav a {
    display: block;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.mobile-menu nav a:hover,
.mobile-menu nav a.active {
    color: #ffffff;
    background-color: rgba(197, 160, 89, 0.1);
    padding-left: 1.5rem;
}

.mobile-menu .mobile-menu-button {
    margin: 1rem 0 0 0;
    width: 100%;
    display: block;
    text-align: center;
}

/* Desktop: Hide mobile menu toggle */
@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }

    .desktop-menu {
        display: flex;
    }
}

/* Mobile: Hide desktop menu */
@media (max-width: 767px) {
    .desktop-menu {
        display: none;
    }

    .mobile-menu-button-desktop {
        display: none;
    }
}

/* Hero Section Mobile Responsive Styles */
@media (max-width: 767px) {
    /* Hero section container adjustments */
    .hero-content {
        padding-top: 1rem;
        padding-bottom: 2rem;
        margin-top: 0 !important;
    }

    /* Hero heading - ensure proper sizing on mobile */
    .hero-title {
        margin-bottom: 1rem !important;
        line-height: 1.2 !important;
    }

    /* Hero description - ensure proper sizing on mobile */
    .hero-description {
        margin-bottom: 1.5rem !important;
        line-height: 1.5 !important;
    }

    /* Hero buttons - ensure they're visible and properly sized on mobile */
    .hero-button {
        display: inline-block !important;
        width: 100% !important;
        max-width: 100% !important;
        white-space: nowrap;
    }

    /* Ensure button container is visible and has proper spacing */
    .hero-buttons {
        width: 100%;
        padding: 0;
    }

    /* Hero tag/badge - adjust spacing on mobile */
    .hero-tag {
        margin-bottom: 0.75rem !important;
    }

    /* Scroll indicator - adjust position on mobile */
    section.relative.h-screen .absolute.bottom-10 {
        bottom: 1rem !important;
    }

    /* Reduce top margin on hero section for mobile */
    section.relative.h-screen {
        padding-top: 80px;
    }
}
