-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshowcase.css
More file actions
98 lines (85 loc) · 1.9 KB
/
Copy pathshowcase.css
File metadata and controls
98 lines (85 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
:root {
--primary: #9D7D65;
--secondary: #1A2A3A;
--accent: #E5D5C9;
--bg-light: #FDFBF9;
--glass-bg: rgba(255, 255, 255, 0.4);
--radius-lg: 32px;
}
body {
font-family: 'Outfit', sans-serif;
background: var(--bg-light);
color: var(--secondary);
margin: 0;
padding: 0;
}
.showcase-container {
max-width: 1200px;
margin: 0 auto;
padding: 100px 20px;
}
.hero {
text-align: center;
padding-bottom: 80px;
}
.hero h1 {
font-family: 'Playfair Display', serif;
font-size: 4rem;
margin-bottom: 20px;
background: linear-gradient(135deg, var(--secondary), var(--primary));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.glass-card {
background: var(--glass-bg);
backdrop-filter: blur(40px);
border: 1px solid rgba(255, 255, 255, 0.5);
border-radius: var(--radius-lg);
padding: 40px;
margin-bottom: 40px;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.color-palette {
display: flex;
gap: 20px;
flex-wrap: wrap;
}
.color-item {
text-align: center;
}
.color-box {
width: 80px;
height: 80px;
border-radius: 12px;
margin-bottom: 10px;
border: 1px solid rgba(0, 0, 0, 0.1);
}
.highlight-card {
position: relative;
}
.highlight-card i {
font-size: 2.5rem;
color: var(--primary);
margin-bottom: 20px;
display: block;
}
.btn-case {
display: inline-block;
padding: 15px 35px;
background: var(--secondary);
color: white;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
margin-top: 40px;
transition: transform 0.3s ease;
}
.btn-case:hover {
transform: translateY(-5px);
}