@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* Tailwind Base Config Simulation */
/* 
  Colors:
  - Primary (Deep Blue): #1E3A8A
  - Secondary (Slate): #64748B
  - Accent (Gold): #FACC15
  - Background (Light): #F8FAFC
  - Text (Dark): #0F172A
*/

:root {
    --primary: #1E3A8A;
    --primary-dark: #1e3a8a;
    --secondary: #64748B;
    --accent: #FACC15;
    --accent-hover: #EAB308;
    --primary: #7858A6;
    --secondary: #5B4B8A;
    --accent: #4C3575;
    --bg-light: #F8FAFC;
    --text-dark: #1F2937;
    --glass-bg: rgba(255, 255, 255, 0.7);
}

/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Glassmorphism Classes */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Custom Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--secondary);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-accent {
    background-color: var(--secondary);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-accent:hover {
    background-color: var(--accent);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Animation Utilities */
[data-aos] {
    transition-duration: 800ms !important;
}

/* Section Spacing */
.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

/* Scroll Snap/Smooth */
html {
    scroll-behavior: smooth;
}