/* ============================================
   PUCHERO CLEANING SERVICES - Homepage styles
   Extracted from index.html. Works alongside the
   Tailwind CDN config defined inline in index.html.
   ============================================ */

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.active-nav-border { position: relative; }
.active-nav-border::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--tw-color-primary);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.botanical-bg {
    background-image: radial-gradient(circle at 100% 0%, rgba(61, 141, 141, 0.05) 0%, transparent 40%),
                      radial-gradient(circle at 0% 100%, rgba(197, 160, 40, 0.03) 0%, transparent 40%);
}

.shadow-3d-soft { box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); }
.shadow-3d-bold { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.08); }
.hover-lift { transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.hover-lift:hover { transform: translateY(-12px) scale(1.02); }
.glass-card { background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.4); }
.inset-shadow-subtle { box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); }

/* ============================================
   Admin bookings table (admin-bookings.html)
   ============================================ */
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th,
.admin-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e1e3e4; /* surface-container-highest */
    font-size: 0.9rem;
    vertical-align: top;
}
.admin-table th {
    background: #f2f4f5; /* surface-container-low */
    font-weight: 700;
    color: #022448; /* primary */
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}
.admin-table small { color: #74777f; } /* outline */
.notes-row {
    background: #E9F0EC; /* soft-sage */
    color: #43474e;      /* on-surface-variant */
    font-style: italic;
}

/* ============================================
   Legal pages (PrivacyPolicy.html, TermsofService.html)
   ============================================ */
.legal-content h2 {
    font-family: 'Literata', serif;
    font-size: 24px;
    font-weight: 600;
    color: #022448; /* primary */
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.legal-content p { margin-bottom: 1rem; line-height: 1.75; }
.legal-content ul { list-style-type: disc; padding-left: 1.5rem; margin-bottom: 1.5rem; }
.legal-content li { margin-bottom: 0.5rem; }
.legal-content strong { color: #022448; } /* primary */
.legal-content a { color: #3D8D8D; text-decoration: underline; } /* oasis-teal */
