@import "tailwindcss"; /* Style2own Domain Theme - Imperial Blue & Sand Gold */ @layer base { :root { /* Base colors */ --background: 32 20% 97%; /* #f5f4f2 - Light Beige */ --foreground: 20 14% 16%; /* #2a2a2a - Dark Gray */ --card: 30 25% 98%; /* #faf9f7 - Off White */ --card-foreground: 20 14% 16%; /* #2a2a2a - Dark Gray */ --popover: 0 25% 96%; /* #hsl(0 25% 96%)- Off White */ --popover-foreground: 20 14% 16%; /* #2a2a2a - Dark Gray */ /* Style2own Theme Colors */ --primary: 195 100% 34%; /* #007aab - Style Blue */ --primary-light: 195 100% 44%; /* #007aab - Style Blue */ --primary-lighter: 195 100% 84%; /* #007aab - Style Blue */ --primary-dark: 195 100% 24%; /* #007aab - Style Blue */ --primary-foreground: 30 25% 98%; /* #faf9f7 - Off White */ --secondary: 46 95% 56%; /* #fbaf22 - Style Sun */ --secondary-light: 46 95% 66%; /* #fbaf22 - Style Sun */ --secondary-lighter: 46 95% 86%; /* #fbaf22 - Style Sun */ --secondary-dark: 46 95% 46%; /* #fbaf22 - Style Sun */ --secondary-foreground: 20 14% 16%; /* #2a2a2a - Dark Gray */ /* Neutral colors */ --muted: 0 0% 92%; /* hsl(0 0% 92%) - Light Muted */ --muted-foreground: 199 50% 45%; /* #4a8bb5 - Muted Blue */ --accent: 210 20% 95%; /* #f2f5f7 - Light Accent */ --accent-foreground: 20 14% 16%; /* #2a2a2a - Dark Gray */ /* Dark section colors */ --dark-bg: 195 100% 34%; /* #007aab - Style Blue */ --dark-text: 30 25% 98%; /* #faf9f7 - Off White */ --dark-muted: 30 20% 70%; /* #b8b0a7 - Dark Muted */ /* Interactive elements */ --destructive: 0 84.2% 60.2%; /* #ef4444 - Red */ --destructive-foreground: 210 40% 98%; /* #f8fafc - Light */ --border: 32 20% 90%; /* #e6e0d8 - Light Border */ --border: 0 0% 80%; /* hsl(0 0% 80%) - Light Border */ --input: 0 0% 92%; /* hsl(0 0% 92%) - Input Background */ --radius: 0.75rem; /* Hero container background */ --hero-container: 0 0% 91%; /* #e8e8e8 - Light Gray */ --hero-container-dark: 0 0% 83%; /* #e8e8e8 - Light Gray */ --hero-container-light: 0 0% 93%; /* #e8e8e8 - Light Gray */ /* Transitions */ --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); /* Shadows */ --shadow-warm: 0 10px 30px -15px hsl(var(--foreground) / 0.1); --shadow-card: 0 4px 20px -8px hsl(var(--foreground) / 0.08); --shadow-elevated: 0 20px 40px -20px hsl(var(--foreground) / 0.15); --shadow-accent-glow: 0 0 30px hsl(var(--secondary) / 0.3); /* Font families */ --font-primary: 'Inter', system-ui, -apple-system, sans-serif; --font-secondary: 'Ephesis', cursive; } } /* Font size adjustments for Ephesis font - 30% larger */ .text-hero { font-size: clamp(3.6rem, 4.2vw, 7.8rem) !important; } .text-section-title { font-size: clamp(2.1rem, 3.9vw, 3.9rem) !important; line-height: 0.85em; } .text-xl { font-size: clamp(1.3rem, 2.2vw, 2.2rem) !important; } @import "./shared-styles.css";