/* ===== RESPONSIVE DESIGN - Mobile First ===== */

/* Tablets and below */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--pure-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: var(--spiritual-blue-dark);
        margin: 3px 0;
        transition: 0.3s;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Hero section */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text h2 {
        font-size: 2.5rem;
    }

    .hero-image {
        order: -1;
    }

    .cta-buttons {
        justify-content: center;
    }

    /* Features grid */
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Admin panel */
    .admin-container {
        flex-direction: column;
    }

    .admin-sidebar {
        width: 100%;
        order: 2;
    }

    .admin-main {
        order: 1;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .hero-text h2 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .nav-logo h1 {
        font-size: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .hero-text h2 {
        font-size: 4rem;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}