@import "tailwindcss";
@import "tw-animate-css";
@custom-variant dark (&:is(.dark *));
/* Fizomax Design System */
@layer base {
:root {
--font-display: 'Playfair Display', serif;
--font-body: 'Poppins', sans-serif;
}
}
@theme inline {
--radius-sm: calc(var(--radius) - 4px);
--radius-md: calc(var(--radius) - 2px);
--radius-lg: var(--radius);
--radius-xl: calc(var(--radius) + 4px);
--color-background: var(--background);
--color-foreground: var(--foreground);
--color-card: var(--card);
--color-card-foreground: var(--card-foreground);
--color-popover: var(--popover);
--color-popover-foreground: var(--popover-foreground);
--color-primary: var(--primary);
--color-primary-foreground: var(--primary-foreground);
--color-secondary: var(--secondary);
--color-secondary-foreground: var(--secondary-foreground);
--color-muted: var(--muted);
--color-muted-foreground: var(--muted-foreground);
--color-accent: var(--accent);
--color-accent-foreground: var(--accent-foreground);
--color-destructive: var(--destructive);
--color-destructive-foreground: var(--destructive-foreground);
--color-border: var(--border);
--color-input: var(--input);
--color-ring: var(--ring);
--color-chart-1: var(--chart-1);
--color-chart-2: var(--chart-2);
--color-chart-3: var(--chart-3);
--color-chart-4: var(--chart-4);
--color-chart-5: var(--chart-5);
--color-sidebar: var(--sidebar);
--color-sidebar-foreground: var(--sidebar-foreground);
--color-sidebar-primary: var(--sidebar-primary);
--color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
--color-sidebar-accent: var(--sidebar-accent);
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
--color-sidebar-border: var(--sidebar-border);
--color-sidebar-ring: var(--sidebar-ring);
}
:root {
--primary: oklch(0.6 0.25 30);
--primary-foreground: oklch(0.98 0 0);
--sidebar-primary: oklch(0.55 0.25 30);
--sidebar-primary-foreground: oklch(0.98 0 0);
--chart-1: oklch(0.6 0.25 30);
--chart-2: oklch(0.55 0.25 30);
--chart-3: oklch(0.5 0.25 30);
--chart-4: oklch(0.45 0.25 30);
--chart-5: oklch(0.4 0.25 30);
--radius: 0.75rem;
--background: oklch(0.15 0.01 280);
--foreground: oklch(0.95 0.01 280);
--card: oklch(0.22 0.01 280);
--card-foreground: oklch(0.95 0.01 280);
--popover: oklch(0.22 0.01 280);
--popover-foreground: oklch(0.95 0.01 280);
--secondary: oklch(0.6 0.25 30);
--secondary-foreground: oklch(0.98 0 0);
--muted: oklch(0.35 0.01 280);
--muted-foreground: oklch(0.7 0.01 280);
--accent: oklch(0.6 0.25 30);
--accent-foreground: oklch(0.98 0 0);
--destructive: oklch(0.577 0.245 27.325);
--destructive-foreground: oklch(0.985 0 0);
--border: oklch(0.3 0.01 280);
--input: oklch(0.3 0.01 280);
--ring: oklch(0.6 0.25 30);
--sidebar: oklch(0.22 0.01 280);
--sidebar-foreground: oklch(0.95 0.01 280);
--sidebar-accent: oklch(0.6 0.25 30);
--sidebar-accent-foreground: oklch(0.98 0 0);
--sidebar-border: oklch(0.3 0.01 280);
--sidebar-ring: oklch(0.6 0.25 30);
}
@layer base {
* {
@apply border-border outline-ring/50;
}
html, body {
@apply bg-background text-foreground;
font-family: var(--font-body);
}
h1, h2, h3, h4, h5, h6 {
font-family: var(--font-display);
font-weight: 700;
}
button:not(:disabled),
[role="button"]:not([aria-disabled="true"]),
[type="button"]:not(:disabled),
[type="submit"]:not(:disabled),
[type="reset"]:not(:disabled),
a[href],
select:not(:disabled),
input[type="checkbox"]:not(:disabled),
input[type="radio"]:not(:disabled) {
@apply cursor-pointer;
}
}
@layer components {
/**
* Custom container utility that centers content and adds responsive padding.
*
* This overrides Tailwind's default container behavior to:
* - Auto-center content (mx-auto)
* - Add responsive horizontal padding
* - Set max-width for large screens
*
* Usage: <div className="container">...</div>
*
* For custom widths, use max-w-* utilities directly:
* <div className="max-w-6xl mx-auto px-4">...</div>
*/
.container {
width: 100%;
margin-left: auto;
margin-right: auto;
padding-left: 1rem; /* 16px - mobile padding */
padding-right: 1rem;
}
.flex {
min-height: 0;
min-width: 0;
}
@media (min-width: 640px) {
.container {
padding-left: 1.5rem; /* 24px - tablet padding */
padding-right: 1.5rem;
}
}
@media (min-width: 1024px) {
.container {
padding-left: 2rem; /* 32px - desktop padding */
padding-right: 2rem;
max-width: 1280px; /* Standard content width */
}
}
/* Fizomax Custom Styles */
html {
scroll-behavior: smooth;
}
button {
@apply transition-all duration-300 font-semibold;
}
img {
@apply transition-transform duration-300 rounded-lg;
}
img:hover {
@apply scale-105;
}
nav {
@apply z-50;
}
h1 {
@apply leading-tight tracking-tight;
}
h2 {
@apply leading-tight tracking-tight;
}
p {
@apply leading-relaxed;
}
section {
@apply scroll-mt-20;
}
@media (max-width: 768px) {
nav {
@apply py-3;
}
h1 {
@apply text-4xl;
}
h2 {
@apply text-2xl;
}
section {
@apply py-16;
}
}
@media (min-width: 1024px) {
section {
@apply py-28;
}
}
}