/* AMOM Clinic Manager - Frontend Styles */

:root {
    --amom-jade: #6B9E9F;
    --amom-jade-dark: #4A7C7E;
    --amom-gold: #D4BC8A;
    --amom-cream: #FBF8F4;
    --amom-red: #c41e3a;
}

/* Social Links */
.amom-social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 15px 0;
}

.amom-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amom-social-links a:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Culture Widget */
.amom-culture-widget {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Staff Login */
.amom-staff-login,
.amom-staff-portal {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Buttons */
.amom-btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--amom-jade), var(--amom-jade-dark));
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.amom-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(74,124,126,0.4);
    color: #fff;
}

.amom-btn-gold {
    background: linear-gradient(135deg, var(--amom-gold), #c4a866);
}

.amom-btn-red {
    background: linear-gradient(135deg, var(--amom-red), #8b0000);
}

/* Responsive */
@media (max-width: 600px) {
    .amom-social-links a {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
}
