/*
Theme Name: All About Material Horizon
Theme URI: https://allaboutmaterial.com
Author: Antigravity Architect
Description: High-fidelity migration of the Horizon React app to WordPress.
Version: 2.0.0
Text Domain: aam-theme
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
    /* Horizon Color Palette (HSL) */
    --background: 0 0% 100%;
    --foreground: 222 47% 11%;
    --primary: 220 20% 65%;
    --primary-foreground: 0 0% 100%;
    --secondary: 210 40% 96%;
    --secondary-foreground: 222 47% 11%;
    --muted: 210 40% 96%;
    --muted-foreground: 215 16% 47%;
    --accent: 220 20% 65%;
    --accent-foreground: 0 0% 100%;
    --brand-accent: 46 97% 65%;
    --border: 214 32% 91%;
    --input: 214 32% 91%;
    --ring: 220 20% 65%;
    --radius: 0.75rem;

    /* Fonts */
    --font-inter: 'Inter', -apple-system, sans-serif;
    --font-dm-sans: 'DM Sans', -apple-system, sans-serif;
}

body {
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: var(--font-inter);
    line-height: 1.5;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .font-heading {
    font-family: var(--font-dm-sans);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Horizon Specific Classes */
.blue-gray-gradient {
    background: linear-gradient(135deg, #8B9DC3 0%, #A8B8D8 100%);
}

.soft-shadow {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.06);
}

.layered-shadow {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 4px 12px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(0, 0, 0, 0.06);
}

.hover-lift {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid hsl(var(--border));
}

.btn-auth-signup {
    background-color: #FCD34D;
    color: #111827;
    font-weight: 700;
    padding: 0.625rem 1.25rem;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-auth-signup:hover {
    background-color: #FDE68A;
    transform: scale(1.05);
}

.brand-logo-card {
    background: #fff;
    border: 2px solid hsl(var(--border));
    border-radius: 1rem;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.brand-logo-card:hover {
    border-color: hsl(var(--primary));
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    transform: translateY(-0.5rem);
}

.brand-logo-card img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(1);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.brand-logo-card:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in {
    animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
