/* ============================================
   RESPONSIVE UTILITIES
   Mobile, Tablet, Desktop Classes
   ============================================ */

/* Hide/Show utilities for different screen sizes */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .hide-mobile {
        display: none !important;
    }
}

/* Responsive text alignment */
.text-center-mobile {
    text-align: left;
}

@media (max-width: 768px) {
    .text-center-mobile {
        text-align: center;
    }
}

/* Responsive spacing */
.spacing-mobile {
    padding: 1rem;
}

@media (max-width: 768px) {
    .spacing-mobile {
        padding: 0.5rem;
    }
}

/* Responsive grid improvements */
@media (max-width: 768px) {

    /* Stack form rows vertically on mobile */
    .form-row {
        flex-direction: column !important;
        gap: 0 !important;
    }

    .form-row .form-group {
        width: 100% !important;
    }
}

/* Mobile menu toggle button (add to your HTML if needed) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
}