/* Mobile Styles */

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--overlay-bg);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    z-index: 1000;
    display: none;
    padding: 0.5rem 0;
    box-shadow: 0 -2px 20px var(--shadow-color);
}

.bottom-nav-links {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 10px;
    min-width: 50px;
}

.bottom-nav-item.active {
    color: var(--primary-green);
    background: var(--card-bg);
    transform: translateY(-2px);
}

.bottom-nav-item:hover {
    color: var(--primary-green);
}

.bottom-nav-icon {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.bottom-nav-text {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    /* Hide desktop navigation */
    .nav-links {
        display: none;
    }
    
    /* Show bottom navigation */
    .bottom-nav {
        display: block;
    }
    
    /* Add bottom padding to body to account for bottom nav */
    body {
        padding-bottom: 80px;
    }
    
    /* Adjust hero section */
    .hero {
        min-height: calc(100vh - 80px);
    }
    
    /* Adjust container padding */
    .container {
        padding: 0 15px;
    }
    
    /* Adjust section padding */
    .section {
        padding: 3rem 0;
    }
    
    /* Adjust hero content */
    .hero-avatar {
        width: 30vw;
        height: 30vw;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    /* Adjust section title */
    .section-title {
        font-size: 2rem;
    }
    
    /* Adjust grids */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Adjust newsletter form */
    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }
    
    .newsletter-input {
        margin-bottom: 1rem;
    }
    
    /* Adjust social links */
    .social-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    /* Adjust footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Adjust theme toggle */
    .theme-toggle .toggle-text {
        display: none;
    }
    
    /* Adjust cards */
    .card {
        padding: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .case-card {
        padding: 1.5rem;
    }
    
    .newsletter {
        padding: 2rem;
    }
    
    .podcast-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .bottom-nav-text {
        font-size: 0.7rem;
    }
    
    .bottom-nav-icon {
        font-size: 1.1rem;
    }
    
    .social-links {
        gap: 0.5rem;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Mobile landscape */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: calc(100vh - 60px);
    }
    
    .bottom-nav {
        padding: 0.25rem 0;
    }
    
    .bottom-nav-item {
        padding: 0.25rem;
    }
    
    .bottom-nav-text {
        font-size: 0.7rem;
    }
    
    body {
        padding-bottom: 60px;
    }
} 