/* Responsive CSS for Candy AI */

/* Large Screens (Desktop) */
@media (min-width: 1024px) {
    .mobile-nav {
        display: none !important;
    }
    
    .desktop-nav {
        display: block;
    }
}

/* Medium Screens (Tablets) */
@media (max-width: 1023px) {
    .desktop-nav {
        display: none !important;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        margin: 0 auto 32px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 400px;
        margin: 40px auto 0;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-glow {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .custom-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .custom-text {
        text-align: center;
    }
    
    .custom-features {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Small Screens (Mobile) */
@media (max-width: 767px) {
    section {
        padding: 70px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .primary-btn, .secondary-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .features-grid,
    .companions-grid,
    .privacy-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .interactions-table {
        overflow-x: auto;
    }
    
    .interactions-table table {
        min-width: 500px;
    }
    
    .custom-text h2 {
        font-size: 1.8rem;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
}

/* Extra Small Screens */
@media (max-width: 479px) {
    .hero-title {
        font-size: 1.7rem;
    }
    
    .promo-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .mobile-nav-content {
        height: 56px;
    }
    
    .mobile-logo {
        font-size: 1.1rem;
    }
    
    .login-btn {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .companion-image {
        height: 280px;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-answer p {
        padding: 0 20px 18px;
    }
}
