/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

/* Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    --fg-primary: #ea580c; /* Orange 600 */
    --fg-primary-glow: rgba(234, 88, 12, 0.4);
    --fg-accent: #e11d48; /* Rose 600 */
    --fg-accent-glow: rgba(225, 29, 72, 0.4);
    
    /* Light frosted glass tokens */
    --fg-glass-bg: rgba(255, 255, 255, 0.45);
    --fg-glass-border: rgba(255, 255, 255, 0.6);
    --fg-glass-blur: blur(24px);
    
    /* Text colors for light theme */
    --fg-text-main: #1f2937; /* Gray 800 */
    --fg-text-muted: #4b5563; /* Gray 600 */
    
    --fg-font-heading: 'Poppins', sans-serif;
    --fg-font-body: 'Inter', sans-serif;
}

body {
    margin: 0;
    font-family: var(--fg-font-body);
    color: var(--fg-text-main);
    background-color: #ffedd5; /* Warm orange light base */
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(253, 164, 175, 0.8) 0%, transparent 50%), /* Rose 300 */
        radial-gradient(circle at 90% 80%, rgba(253, 186, 116, 0.8) 0%, transparent 50%), /* Orange 300 */
        radial-gradient(circle at 50% 50%, rgba(252, 211, 77, 0.6) 0%, transparent 60%); /* Amber 300 */
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
}

/* Frosted Glass Utility */
.fg-glass {
    background: var(--fg-glass-bg);
    backdrop-filter: var(--fg-glass-blur) saturate(160%);
    -webkit-backdrop-filter: var(--fg-glass-blur) saturate(160%);
    border: 1px solid var(--fg-glass-border);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
}

/* Global Buttons */
.fg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--fg-font-heading);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    gap: 0.5rem;
}

.fg-btn-primary {
    background: linear-gradient(135deg, var(--fg-primary) 0%, var(--fg-accent) 100%);
    color: white;
    box-shadow: 0 6px 20px var(--fg-primary-glow);
}

.fg-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--fg-primary-glow);
    filter: brightness(1.05);
}

.fg-btn-outline {
    background: var(--fg-glass-bg);
    backdrop-filter: var(--fg-glass-blur);
    -webkit-backdrop-filter: var(--fg-glass-blur);
    border: 1px solid var(--fg-glass-border);
    color: var(--fg-primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.fg-btn-outline:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.fg-btn-ghost {
    background: transparent;
    color: var(--fg-text-main);
}

.fg-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.3);
}

.fg-btn-block {
    width: 100%;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--fg-font-heading);
    margin: 0;
    color: var(--fg-text-main);
}

p {
    line-height: 1.6;
    margin: 0;
    color: var(--fg-text-muted);
}

.fg-text-gradient {
    background: linear-gradient(135deg, var(--fg-primary) 0%, var(--fg-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
