File size: 6,494 Bytes
1e003fd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  <title>Contact Us</title>
  <link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500&display=swap" rel="stylesheet" />
  <style>
    /* Color Palette Variables for easy reference (copied from style.css) */
    :root {
        --floral-white: #fffcf2;
        --timberwolf: #ccc5b9;
        --black-olive: #403d39;
        --eerie-black: #252422;
        --flame: #eb5e28;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Roboto Mono', monospace;
    }

    html, body {
      height: 100%;
      display: flex;
      flex-direction: column;
      /* Use eerie-black as base with a subtle gradient */
      background: linear-gradient(135deg, var(--eerie-black) 0%, #2e2d2aff 100%);
      color: var(--floral-white); /* Main text color */
    }

    .navbar {
      background: var(--black-olive); /* Darker, grounded color for navbar */
      padding: 15px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    }

    .nav-brand {
      font-size: 1.5rem;
      color: var(--flame); /* Vibrant accent for brand */
    }

    .nav-links {
      list-style: none;
      display: flex;
      gap: 20px;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--floral-white);
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .nav-links a:hover,
    .nav-links .active {
      color: var(--flame); /* Vibrant accent on hover/active */
    }

    .container {
      flex: 1;
      max-width: 1000px;
      margin: auto;
      padding: 40px 20px;
      text-align: center;
    }

    .contact-header h1 {
      font-size: 2.5rem;
      color: var(--floral-white); /* Use floral-white for main heading */
      font-family: 'Montserrat', sans-serif; /* Add Montserrat if you want consistency with other pages */
    }

    .contact-header p {
      font-size: 1.2rem;
      color: var(--timberwolf); /* Softer, slightly muted color for subtitle */
      margin: 10px auto 30px;
    }

    .team-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
      justify-content: center;
      margin-top: 40px;
    }

    .team-card {
      height: 260px;
      position: relative;
      perspective: 1000px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Add shadow for depth */
      border-radius: 12px; /* Ensure shadow matches card border-radius */
    }

    .card-content {
      position: absolute;
      width: 100%;
      height: 100%;
      transition: transform 0.6s ease-in-out;
      transform-style: preserve-3d;
    }

    .card-front,
    .card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      padding: 15px;
      text-align: center;
      font-weight: 600;
      backface-visibility: hidden;
    }

    .card-front {
      background: var(--eerie-black); /* Dark background for the front */
      color: var(--floral-white); /* Light text */
    }

    .card-front h3 {
      color: var(--flame); /* Make the name vibrant */
      opacity: 1;
      transition: opacity 0.3s ease-in-out;
    }

    .team-card:hover .card-front h3 {
      opacity: 0;
    }

    .card-back {
      background: var(--black-olive); /* Slightly lighter dark for the back */
      color: var(--floral-white); /* Light text for details */
      transform: rotateY(180deg);
    }

    .card-back p {
      color: var(--timberwolf); /* Use timberwolf for email/ID for consistency */
      opacity: 0;
      transition: opacity 0.3s ease-in-out;
    }

    .team-card:hover .card-content {
      transform: rotateY(180deg);
    }

    .team-card:hover .card-back p {
      opacity: 1;
    }

    .footer {
      background: var(--black-olive); /* Matching navbar background */
      padding: 15px;
      text-align: center;
      color: var(--timberwolf); /* Softer text color for footer */
      font-size: 0.9rem;
      margin-top: auto;
      width: 100%;
      box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    }
  </style>
</head>
<body>
  <nav class="navbar">
    <div class="nav-brand">Garbage Detection</div>
    <ul class="nav-links">
      <li><a href="/">Home</a></li>
      <li><a href="/about">About</a></li>
      <li><a href="/contact" class="active">Contact</a></li>
    </ul>
  </nav>

  <main class="container">
    <div class="contact-header">
      <h1>Meet the Team</h1>
      <p>Get to know the people behind Garbage Detection</p>
    </div>

    <section class="team-list">
      <div class="team-card">
        <div class="card-content">
          <div class="card-front"><h3>Sanjay Murali</h3></div>
          <div class="card-back"><p>RA2312701010006</p><p>[email protected]</p></div>
        </div>
      </div>

      <div class="team-card">
        <div class="card-content">
          <div class="card-front"><h3>Adithyan E</h3></div>
          <div class="card-back"><p>RA2312701010004</p><p>[email protected]</p></div>
        </div>
      </div>

      <div class="team-card">
        <div class="card-content">
          <div class="card-front"><h3>K Athmapriyan</h3></div>
          <div class="card-back"><p>RA2312701010007</p><p>[email protected]</p></div>
        </div>
      </div>

      <div class="team-card">
        <div class="card-content">
          <div class="card-front"><h3>R Supriya Rao</h3></div>
          <div class="card-back"><p>RA2312701010027</p><p>[email protected]</p></div>
        </div>
      </div>

      <div class="team-card">
        <div class="card-content">
          <div class="card-front"><h3>Joel Sheno G</h3></div>
          <div class="card-back"><p>RA2312701010024</p><p>[email protected]</p></div>
        </div>
      </div>

      <div class="team-card">
        <div class="card-content">
          <div class="card-front"><h3>Sriyaraj Kotagond</h3></div>
          <div class="card-back"><p>RA2312701010026</p><p>[email protected]</p></div>
        </div>
      </div>
    </section>
  </main>

  <footer class="footer">
    <p>© 2025 Garbage Detection</p>
  </footer>
</body>
</html>