feat: add project files

This commit is contained in:
mstfyldz
2026-06-03 17:31:50 +03:00
parent 8050d67b18
commit a952f571b9
26 changed files with 1661 additions and 113 deletions
+55 -15
View File
@@ -1,26 +1,66 @@
@import "tailwindcss";
:root {
--background: #ffffff;
--foreground: #171717;
}
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
--color-sand: #E3D9C6;
--color-sand-light: #F4EFEB;
--color-sand-dark: #C2B49A;
--color-sea-blue: #2A4B7C;
--color-sea-light: #4A6B9C;
--color-sea-dark: #1A2B4C;
--color-coral: #FF6B6B;
--color-coral-light: #FF8B8B;
--color-coral-dark: #D94A4A;
--color-brand-white: #FFFFFF;
--color-brand-black: #171717;
--font-serif: var(--font-playfair);
--font-sans: var(--font-lato);
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
:root {
--background: #FFFFFF;
--foreground: #171717;
}
body {
background: var(--background);
color: var(--foreground);
font-family: Arial, Helvetica, sans-serif;
font-family: var(--font-sans), sans-serif;
overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
font-family: var(--font-serif), serif;
}
html {
scroll-behavior: smooth;
}
/* Shimmer animation for CTA buttons */
@keyframes shimmer {
0% { transform: translateX(-150%); }
100% { transform: translateX(150%); }
}
.btn-shimmer {
position: relative;
overflow: hidden;
}
.btn-shimmer::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(
90deg,
transparent 0%,
rgba(255, 255, 255, 0.22) 50%,
transparent 100%
);
transform: translateX(-150%);
animation: shimmer 2.8s ease-in-out infinite;
}