This commit is contained in:
gpt-engineer-app[bot]
2026-03-05 15:50:22 +00:00
parent b331aa1a7d
commit a11683b7dc
23 changed files with 2958 additions and 96 deletions

View File

@@ -1,88 +1,89 @@
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;
/* Definition of the design system. All colors, gradients, fonts, etc should be defined here.
All colors MUST be HSL.
*/
/* ===========================================
DESIGN SYSTEM — ZoukLambadaBCN Event
Tropical palette: orange, pink, violet
All colors in HSL
=========================================== */
@layer base {
:root {
--background: 0 0% 100%;
--foreground: 222.2 84% 4.9%;
/* Tropical warm palette */
--background: 30 30% 97%;
--foreground: 280 30% 12%;
--card: 0 0% 100%;
--card-foreground: 222.2 84% 4.9%;
--card: 30 25% 95%;
--card-foreground: 280 30% 12%;
--popover: 0 0% 100%;
--popover-foreground: 222.2 84% 4.9%;
--popover-foreground: 280 30% 12%;
--primary: 222.2 47.4% 11.2%;
--primary-foreground: 210 40% 98%;
/* Primary: vibrant orange */
--primary: 24 95% 55%;
--primary-foreground: 0 0% 100%;
--secondary: 210 40% 96.1%;
--secondary-foreground: 222.2 47.4% 11.2%;
/* Secondary: tropical pink */
--secondary: 340 82% 60%;
--secondary-foreground: 0 0% 100%;
--muted: 210 40% 96.1%;
--muted-foreground: 215.4 16.3% 46.9%;
/* Accent: rich violet */
--accent: 280 65% 50%;
--accent-foreground: 0 0% 100%;
--accent: 210 40% 96.1%;
--accent-foreground: 222.2 47.4% 11.2%;
--muted: 30 20% 92%;
--muted-foreground: 280 15% 40%;
--destructive: 0 84.2% 60.2%;
--destructive-foreground: 210 40% 98%;
--destructive: 0 84% 60%;
--destructive-foreground: 0 0% 100%;
--border: 214.3 31.8% 91.4%;
--input: 214.3 31.8% 91.4%;
--ring: 222.2 84% 4.9%;
--border: 30 20% 85%;
--input: 30 20% 85%;
--ring: 24 95% 55%;
--radius: 0.5rem;
--radius: 0.75rem;
/* Custom tokens */
--gradient-tropical: linear-gradient(135deg, hsl(24 95% 55%), hsl(340 82% 60%), hsl(280 65% 50%));
--gradient-warm: linear-gradient(180deg, hsl(30 30% 97%), hsl(30 25% 93%));
--shadow-glow: 0 0 40px hsl(24 95% 55% / 0.25);
--shadow-card: 0 8px 30px hsl(280 30% 12% / 0.08);
--shadow-elevated: 0 20px 50px hsl(280 30% 12% / 0.12);
/* Sidebar (unused but required) */
--sidebar-background: 0 0% 98%;
--sidebar-foreground: 240 5.3% 26.1%;
--sidebar-primary: 240 5.9% 10%;
--sidebar-primary-foreground: 0 0% 98%;
--sidebar-accent: 240 4.8% 95.9%;
--sidebar-accent-foreground: 240 5.9% 10%;
--sidebar-border: 220 13% 91%;
--sidebar-ring: 217.2 91.2% 59.8%;
}
.dark {
--background: 222.2 84% 4.9%;
--foreground: 210 40% 98%;
--card: 222.2 84% 4.9%;
--card-foreground: 210 40% 98%;
--popover: 222.2 84% 4.9%;
--popover-foreground: 210 40% 98%;
--primary: 210 40% 98%;
--primary-foreground: 222.2 47.4% 11.2%;
--secondary: 217.2 32.6% 17.5%;
--secondary-foreground: 210 40% 98%;
--muted: 217.2 32.6% 17.5%;
--muted-foreground: 215 20.2% 65.1%;
--accent: 217.2 32.6% 17.5%;
--accent-foreground: 210 40% 98%;
--background: 280 25% 8%;
--foreground: 30 20% 95%;
--card: 280 20% 12%;
--card-foreground: 30 20% 95%;
--popover: 280 20% 12%;
--popover-foreground: 30 20% 95%;
--primary: 24 95% 55%;
--primary-foreground: 0 0% 100%;
--secondary: 340 82% 60%;
--secondary-foreground: 0 0% 100%;
--accent: 280 65% 55%;
--accent-foreground: 0 0% 100%;
--muted: 280 15% 18%;
--muted-foreground: 30 15% 65%;
--destructive: 0 62.8% 30.6%;
--destructive-foreground: 210 40% 98%;
--border: 217.2 32.6% 17.5%;
--input: 217.2 32.6% 17.5%;
--ring: 212.7 26.8% 83.9%;
--destructive-foreground: 0 0% 100%;
--border: 280 15% 20%;
--input: 280 15% 20%;
--ring: 24 95% 55%;
--sidebar-background: 240 5.9% 10%;
--sidebar-foreground: 240 4.8% 95.9%;
--sidebar-primary: 224.3 76.3% 48%;
@@ -100,6 +101,49 @@ All colors MUST be HSL.
}
body {
@apply bg-background text-foreground;
@apply bg-background text-foreground font-body antialiased;
}
h1, h2, h3, h4 {
@apply font-display;
}
/* Smooth scroll */
html {
scroll-behavior: smooth;
}
}
@layer components {
/* Tropical gradient text */
.text-gradient {
background: var(--gradient-tropical);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
/* Tropical gradient background */
.bg-gradient-tropical {
background: var(--gradient-tropical);
}
/* Glow effect for buttons */
.shadow-glow {
box-shadow: var(--shadow-glow);
}
/* Card shadow */
.shadow-card {
box-shadow: var(--shadow-card);
}
.shadow-elevated {
box-shadow: var(--shadow-elevated);
}
/* Section padding utility */
.section-padding {
@apply px-4 py-16 md:px-8 md:py-24 lg:px-16;
}
}