bekxt commited on
Commit
de16d92
·
verified ·
1 Parent(s): bbaedee

redesign website home page to look and feel thumbnail like collage

Browse files
Files changed (2) hide show
  1. index.html +36 -26
  2. style.css +87 -14
index.html CHANGED
@@ -13,35 +13,45 @@
13
  </head>
14
  <body>
15
  <custom-navbar></custom-navbar>
16
-
17
- <main>
18
- <!-- Hero Section -->
19
- <section class="hero-section">
20
- <div class="container">
21
- <div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-center">
22
- <div class="fade-in">
23
- <h1>You Do Music, We Do Mastering</h1>
24
- <p class="text-gray mb-8">Industry-leading mastering services with premium analog processing and digital precision.</p>
25
- <div class="flex gap-4">
26
- <a href="#pricing" class="btn btn-primary">Get Started</a>
27
- <a href="single-track-mastering.html" class="btn btn-outline">Learn More</a>
28
- </div>
29
- </div>
30
- <div class="fade-in">
31
- <img srcogy/1200x630/42" alt="Studio Equipment" class="rounded-xl shadow-xl">
32
- </div>
33
  </div>
34
  </div>
35
- </section>
36
- <!-- Services Section with Parallax -->
37
- <section id="services" class="parallax-container relative py-32 bg-gray-800 overflow-hidden">
38
- <div class="parallax-layer parallax-layer-back" data-depth="0.05">
39
- <div class="absolute inset-0 bg-[url('https://static.photos/minimal/1200x630/1')] bg-cover bg-center opacity-10"></div>
40
  </div>
41
- <div class="container mx-auto px-6">
42
- <h2 class="text-4xl font-bold text-center mb-16">Our Mastering Services</h2>
43
- <div class="grid md:grid-cols-3 gap-10">
44
- <!-- Service 1 -->
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45
  <div class="bg-gray-700/50 p-8 rounded-xl hover:bg-gray-700 transition-all border-l-4 border-indigo-500">
46
  <div class="w-16 h-16 bg-indigo-900 rounded-full flex items-center justify-center mb-6">
47
  <i data-feather="music" class="w-8 h-8 text-indigo-300"></i>
 
13
  </head>
14
  <body>
15
  <custom-navbar></custom-navbar>
16
+ <main class="collage-container">
17
+ <!-- Collage Hero -->
18
+ <section class="collage-hero">
19
+ <div class="collage-item large" style="background-image: url('https://static.photos/music/640x360/1')">
20
+ <div class="collage-content">
21
+ <h1>You Do Music, We Do Mastering</h1>
22
+ <p>Industry-leading mastering services</p>
 
 
 
 
 
 
 
 
 
 
23
  </div>
24
  </div>
25
+ <div class="collage-item" style="background-image: url('https://static.photos/studio/320x240/2')">
26
+ <div class="collage-content">
27
+ <h3>Analog Warmth</h3>
28
+ <a href="#services">Explore</a>
29
+ </div>
30
  </div>
31
+ <div class="collage-item" style="background-image: url('https://static.photos/technology/320x240/3')">
32
+ <div class="collage-content">
33
+ <h3>Digital Precision</h3>
34
+ <a href="#services">Learn</a>
35
+ </div>
36
+ </div>
37
+ <div class="collage-item wide" style="background-image: url('https://static.photos/people/640x240/4')">
38
+ <div class="collage-content">
39
+ <h3>Trusted by Artists Worldwide</h3>
40
+ <a href="#testimonials">Stories</a>
41
+ </div>
42
+ </div>
43
+ <div class="collage-item tall" style="background-image: url('https://static.photos/audio/240x360/5')">
44
+ <div class="collage-content">
45
+ <h3>Hear the Difference</h3>
46
+ <a href="#audio">Listen</a>
47
+ </div>
48
+ </div>
49
+ </section>
50
+ <!-- Services Collage -->
51
+ <section id="services" class="collage-services">
52
+ <h2 class="collage-section-title">Our Mastering Services</h2>
53
+ <div class="collage-grid">
54
+ <!-- Service 1 -->
55
  <div class="bg-gray-700/50 p-8 rounded-xl hover:bg-gray-700 transition-all border-l-4 border-indigo-500">
56
  <div class="w-16 h-16 bg-indigo-900 rounded-full flex items-center justify-center mb-6">
57
  <i data-feather="music" class="w-8 h-8 text-indigo-300"></i>
style.css CHANGED
@@ -8,25 +8,94 @@
8
  --gray: #6B7280;
9
  --light-gray: #E5E7EB;
10
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
 
12
  /* Base Styles */
13
  body {
14
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
15
  line-height: 1.6;
16
- color: var(--dark);
17
- background: var(--light);
18
  }
19
-
20
  /* Typography */
21
  h1, h2, h3, h4 {
22
  font-weight: 700;
23
  line-height: 1.2;
 
24
  }
25
 
26
- h1 { font-size: 3.5rem; }
27
- h2 { font-size: 2.5rem; }
28
- h3 { font-size: 1.75rem; }
29
-
30
  /* Layout */
31
  .container {
32
  width: 100%;
@@ -38,18 +107,23 @@ h3 { font-size: 1.75rem; }
38
  .section {
39
  padding: 6rem 0;
40
  }
41
-
42
  /* Buttons */
43
  .btn {
44
  display: inline-flex;
45
  align-items: center;
46
  justify-content: center;
47
  padding: 0.75rem 1.5rem;
48
- border-radius: 8px;
49
  font-weight: 600;
50
  transition: all 0.2s ease;
 
 
 
51
  }
52
 
 
 
 
53
  .btn-primary {
54
  background: var(--primary);
55
  color: white;
@@ -69,16 +143,15 @@ h3 { font-size: 1.75rem; }
69
  background: var(--primary);
70
  color: white;
71
  }
72
-
73
  /* Cards */
74
  .card {
75
- background: white;
76
- border-radius: 12px;
77
- box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
78
  overflow: hidden;
79
  transition: transform 0.3s ease, box-shadow 0.3s ease;
 
80
  }
81
-
82
  .card:hover {
83
  transform: translateY(-8px);
84
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
 
8
  --gray: #6B7280;
9
  --light-gray: #E5E7EB;
10
  }
11
+ /* Collage Styles */
12
+ .collage-container {
13
+ padding: 0;
14
+ margin: 0;
15
+ background: #121212;
16
+ }
17
+
18
+ .collage-hero {
19
+ display: grid;
20
+ grid-template-columns: repeat(4, 1fr);
21
+ grid-template-rows: repeat(3, 150px);
22
+ gap: 8px;
23
+ padding: 8px;
24
+ }
25
+
26
+ .collage-item {
27
+ position: relative;
28
+ background-size: cover;
29
+ background-position: center;
30
+ border-radius: 4px;
31
+ overflow: hidden;
32
+ transition: transform 0.3s ease;
33
+ }
34
+
35
+ .collage-item:hover {
36
+ transform: scale(1.02);
37
+ z-index: 1;
38
+ }
39
+
40
+ .collage-item.large {
41
+ grid-column: span 2;
42
+ grid-row: span 2;
43
+ }
44
+
45
+ .collage-item.wide {
46
+ grid-column: span 2;
47
+ }
48
+
49
+ .collage-item.tall {
50
+ grid-row: span 2;
51
+ }
52
+
53
+ .collage-content {
54
+ position: absolute;
55
+ bottom: 0;
56
+ left: 0;
57
+ right: 0;
58
+ padding: 16px;
59
+ background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
60
+ color: white;
61
+ }
62
+
63
+ .collage-section-title {
64
+ text-align: center;
65
+ font-size: 2.5rem;
66
+ color: white;
67
+ margin: 2rem 0;
68
+ }
69
+
70
+ .collage-services {
71
+ padding: 2rem;
72
+ background: #121212;
73
+ }
74
+
75
+ .collage-grid {
76
+ display: grid;
77
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
78
+ gap: 16px;
79
+ padding: 16px;
80
+ }
81
 
82
  /* Base Styles */
83
  body {
84
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
85
  line-height: 1.6;
86
+ color: white;
87
+ background: #121212;
88
  }
 
89
  /* Typography */
90
  h1, h2, h3, h4 {
91
  font-weight: 700;
92
  line-height: 1.2;
93
+ color: white;
94
  }
95
 
96
+ h1 { font-size: 2.5rem; }
97
+ h2 { font-size: 2rem; }
98
+ h3 { font-size: 1.5rem; }
 
99
  /* Layout */
100
  .container {
101
  width: 100%;
 
107
  .section {
108
  padding: 6rem 0;
109
  }
 
110
  /* Buttons */
111
  .btn {
112
  display: inline-flex;
113
  align-items: center;
114
  justify-content: center;
115
  padding: 0.75rem 1.5rem;
116
+ border-radius: 4px;
117
  font-weight: 600;
118
  transition: all 0.2s ease;
119
+ background: #333;
120
+ color: white;
121
+ border: none;
122
  }
123
 
124
+ .btn:hover {
125
+ background: #444;
126
+ }
127
  .btn-primary {
128
  background: var(--primary);
129
  color: white;
 
143
  background: var(--primary);
144
  color: white;
145
  }
 
146
  /* Cards */
147
  .card {
148
+ background: #1e1e1e;
149
+ border-radius: 4px;
150
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
151
  overflow: hidden;
152
  transition: transform 0.3s ease, box-shadow 0.3s ease;
153
+ border: 1px solid #333;
154
  }
 
155
  .card:hover {
156
  transform: translateY(-8px);
157
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);