This commit is contained in:
Iliyan Angelov
2025-11-21 10:15:29 +02:00
parent 2251e97688
commit 722997bb19
22 changed files with 235 additions and 152 deletions

View File

@@ -90,14 +90,16 @@
body {
margin: 0;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans',
'Droid Sans', 'Helvetica Neue', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-weight: 300;
background: #fafafa;
color: var(--luxury-gray-900);
line-height: 1.6;
line-height: 1.7;
letter-spacing: 0.01em;
}
code {
@@ -105,6 +107,42 @@ code {
'Courier New', monospace;
}
/* Luxury Typography */
h1, h2, h3, h4, h5, h6 {
font-family: 'Cinzel', 'Playfair Display', serif;
font-weight: 600;
letter-spacing: -0.02em;
line-height: 1.2;
}
h1 {
font-weight: 700;
letter-spacing: -0.03em;
}
h2 {
font-weight: 600;
letter-spacing: -0.02em;
}
h3, h4, h5, h6 {
font-weight: 500;
letter-spacing: -0.01em;
}
/* Elegant text for special elements */
.elegant-text {
font-family: 'Cormorant Garamond', 'Playfair Display', serif;
letter-spacing: 0.02em;
}
/* Display font for large headings */
.display-text {
font-family: 'Cinzel', 'Playfair Display', serif;
font-weight: 600;
letter-spacing: -0.02em;
}
@layer components {
.luxury-card {
@@ -143,6 +181,9 @@ code {
@apply active:translate-y-0;
@apply disabled:opacity-50 disabled:cursor-not-allowed disabled:hover:translate-y-0;
@apply relative overflow-hidden;
font-family: 'Poppins', 'Inter', sans-serif;
font-weight: 500;
letter-spacing: 0.05em;
}
.btn-luxury-primary::before {
@@ -171,14 +212,17 @@ code {
}
.luxury-section-title {
@apply text-3xl md:text-4xl font-serif font-semibold;
@apply text-3xl md:text-4xl font-display font-semibold;
@apply text-gray-900 tracking-tight;
@apply mb-2;
letter-spacing: -0.02em;
}
.luxury-section-subtitle {
@apply text-gray-600 text-lg font-light;
@apply tracking-wide;
font-family: 'Cormorant Garamond', 'Playfair Display', serif;
letter-spacing: 0.05em;
}
@@ -235,6 +279,8 @@ code {
@apply bg-white text-gray-900;
@apply placeholder:text-gray-400;
@apply font-light tracking-wide;
font-family: 'Poppins', 'Inter', sans-serif;
letter-spacing: 0.01em;
}