File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -40,12 +40,26 @@ <h1>Orbotics</h1>
4040 </ div >
4141</ section >
4242
43+
4344< section class ="stats container ">
4445 < div class ="stat "> < h2 > 40+</ h2 > < p > Active Members</ p > </ div >
4546 < div class ="stat "> < h2 > 1</ h2 > < p > Seasons</ p > </ div >
4647 < div class ="stat "> < h2 > ∞</ h2 > < p > Innovation</ p > </ div >
4748</ section >
4849
50+ < section class ="sponsors container ">
51+ < h2 > Our Sponsors</ h2 >
52+ < div class ="sponsor-grid ">
53+ < img src ="images/sponsors/csf.png " alt ="CSF Logo ">
54+ < img src ="images/sponsors/nasa.png " alt ="NASA Logo ">
55+ < img src ="images/sponsors/rlc.png " alt ="RLC Logo ">
56+ < img src ="images/sponsors/indus.png " alt ="Indus Logo ">
57+ < img src ="images/sponsors/cph.png " alt ="CPH Logo ">
58+ < img src ="images/sponsors/lin.jpg " alt ="Lin Logo ">
59+ < img src ="images/sponsors/clubfit.png " alt ="ClubFit Logo ">
60+ </ div >
61+ </ section >
62+
4963< section class ="gallery container ">
5064 < h2 > Season Highlights</ h2 >
5165 < div class ="gallery-grid ">
Original file line number Diff line number Diff line change 266266 }
267267}
268268
269+ /* SPONSORS */
270+ .sponsors {
271+ padding-block : 8rem ;
272+ }
273+
274+ .sponsors h2 {
275+ text-align : center;
276+ color : var (--clr-accent );
277+ font-weight : 800 ;
278+ margin-bottom : 2rem ;
279+ }
280+
281+ .sponsor-grid a {
282+ display : flex;
283+ align-items : center;
284+ justify-content : center;
285+ }
286+
287+ .sponsor-grid img {
288+ max-width : 100% ;
289+ max-height : 120px ;
290+ object-fit : contain;
291+ }
292+
293+
269294/* STATS */
270295.stats {
271296 display : flex;
289314/* GALLERY */
290315.gallery {
291316 padding-block : 4rem ;
292- text-align : center
317+ text-align : center;
318+ color : var (--clr-accent );
293319}
294320
295321.gallery-grid {
@@ -326,12 +352,97 @@ a {
326352 padding-block : 3rem
327353}
328354
329- .values {
330- list-style : disc;
331- padding-left : 1.5rem ;
332- margin-top : 1rem
355+ .about-grid {
356+ display : flex;
357+ flex-wrap : wrap;
358+ gap : 2rem ;
359+ align-items : center;
360+ padding-block : 3rem ;
361+ margin-top : 1.2rem ;
362+ }
363+
364+ .about-text {
365+ flex : 1 1 320px
366+ }
367+
368+ .about-img {
369+ flex : 0 1 320px ;
370+ text-align : center
333371}
334372
373+ .about-img img {
374+ width : 100% ;
375+ max-width : 320px ;
376+ border-radius : var (--radius );
377+ box-shadow : var (--shadow );
378+ }
379+
380+ @media (max-width : 800px ) {
381+ .about-grid {
382+ flex-direction : column
383+ }
384+ }
385+
386+ /* ── COACHES GRID ─────────────────────────────────────── */
387+ .coaches {
388+ padding-block : 4rem ;
389+ text-align : center
390+ }
391+
392+ .coaches h2 {
393+ font-size : clamp (2rem , 5vw , 2.6rem );
394+ color : var (--clr-red );
395+ margin-bottom : 2rem
396+ }
397+
398+ .coaches-grid {
399+ display : grid;
400+ gap : 2rem ;
401+ grid-template-columns : repeat (auto-fit, minmax (280px , 1fr ));
402+ }
403+
404+ .coach-card {
405+ background : var (--clr-surface );
406+ border-radius : var (--radius );
407+ box-shadow : var (--shadow );
408+ padding : 2rem 1.5rem ;
409+ display : flex;
410+ flex-direction : column;
411+ align-items : center;
412+ transition : transform var (--transition )
413+ }
414+
415+ .coach-card : hover {
416+ transform : translateY (-6px )
417+ }
418+
419+ .coach-card img {
420+ width : 220px ;
421+ max-width : 100% ;
422+ aspect-ratio : 1 / 1 ;
423+ object-fit : cover;
424+ border-radius : 50% ;
425+ box-shadow : var (--shadow );
426+ margin-bottom : 1rem ;
427+ }
428+
429+ .coach-card h3 {
430+ margin : .6rem 0 .25rem ;
431+ font-size : 1.35rem
432+ }
433+
434+ .coach-card .role {
435+ font-weight : 600 ;
436+ color : var (--clr-accent );
437+ margin-bottom : .6rem
438+ }
439+
440+ .coach-card .desc {
441+ font-size : .95rem ;
442+ line-height : 1.55
443+ }
444+
445+
335446/* TIMELINE */
336447.timeline {
337448 position : relative;
You can’t perform that action at this time.
0 commit comments