/* responsive.css - Mobile & Tablet Responsive Styles */

/* Tablet Styles */
@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Mobile Menu - Opens from RIGHT to LEFT */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: stretch;
        padding: 80px 20px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        gap: 0.5rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        padding: 1rem;
        width: 100%;
        text-align: left;
        border-radius: 10px;
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-link.active {
        background: rgba(44, 95, 45, 0.1);
    }

    .btn-nav {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
        padding: 0.75rem;
    }

    .user-dropdown {
        width: 100%;
    }

    .user-dropdown-btn {
        width: 100%;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        width: 100%;
        margin-top: 10px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: var(--light);
        border-radius: 10px;
    }

    .user-dropdown.active .dropdown-menu {
        display: block;
    }

    .hamburger {
        display: flex;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .nav-brand h1 {
        font-size: 1rem;
    }
    
    .logo {
        height: 35px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Desktop hover effects */
@media (min-width: 993px) {
    .dropdown-menu {
        display: block;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .hero-buttons,
    .hamburger,
    .overlay {
        display: none !important;
    }
    
    body {
        background: white;
        padding-top: 0;
    }
    
    .container {
        width: 100%;
        padding: 0;
    }
}