-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
858 lines (763 loc) · 44.4 KB
/
index.html
File metadata and controls
858 lines (763 loc) · 44.4 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
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>SSDA 2026 - Summer School on Document Understanding</title>
<style>
/* -------------------------
Palette & variables
------------------------- */
:root{
--primary: #ff2a19; /* user-provided primary */
--primary-dark: #e02215;
--accent: #6b1a12; /* deep warm accent for headings */
--bg-soft: #fff4f2; /* very light warm surface */
--bg-muted: #fff8f6; /* slightly lighter */
--muted: #6b5a57; /* warm gray for body text */
--muted-2: #7f6f6b; /* secondary muted */
--success: #087746; /* green for positive accents */
--success-light: #f0fdf6;
--card-bg: #ffffff;
--dark: #0f1720; /* footer / deep text */
--soft-border: #eed2cc; /* warm subtle border */
--glass: rgba(255,255,255,0.45);
--shadow: 0 6px 14px rgba(15, 23, 32, 0.06);
}
/* Reset */
*{margin:0;padding:0;box-sizing:border-box}
body{
font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
line-height:1.6;
color:var(--muted);
background: #fff;
-webkit-font-smoothing:antialiased;
-moz-osx-font-smoothing:grayscale;
}
/* Navigation */
nav{
position:fixed; top:0; width:100%;
background: #ffffff;
box-shadow: 0 2px 6px rgba(15,23,32,0.06);
z-index:1000;
}
.nav-container{
max-width:1280px; margin:0 auto; padding:0 1rem;
display:flex; justify-content:space-between; align-items:center;
height:64px;
}
.nav-brand{ font-size:1.25rem; font-weight:700; color:var(--accent); display:flex; align-items:center; gap:.75rem; }
.nav-logo{ height:40px; width:auto; display:block; }
.nav-menu{ display:none; gap:1.25rem; }
.nav-menu a{ text-decoration:none; color:var(--muted); font-weight:600; transition: color .25s; }
.nav-menu a:hover, .nav-menu a.active{ color:var(--primary); }
.nav-toggle{ display:block; background:none; border:none; cursor:pointer; padding:.5rem; color:var(--muted); }
.nav-mobile{ display:none; background:#fff; border-top:1px solid var(--soft-border); padding:1rem; }
.nav-mobile a{ display:block; padding:.75rem 1rem; text-decoration:none; color:var(--muted); font-weight:600; transition: all .25s; border-radius:.5rem }
.nav-mobile a:hover{ color:var(--primary); background:var(--bg-muted); }
@media(min-width:768px){
.nav-menu{ display:flex; }
.nav-toggle{ display:none; }
}
/* Hero */
.hero{
padding-top:64px; color:#ffffff; text-align:center; position:relative;
background-image: url("https://upload.wikimedia.org/wikipedia/commons/thumb/9/9b/Vall_de_nuria-ripolles-2009_%282%29.JPG/1200px-Vall_de_nuria-ripolles-2009_%282%29.JPG?20140317115011");
background-size:cover; background-position:center; min-height:56vh;
display:flex; align-items:center; justify-content:center;
}
.hero::before{
content:""; position:absolute; inset:0;
/* soft warm overlay to harmonize with primary */
background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0, 0, 0, 0.3));
z-index:0;
mix-blend-mode: multiply;
}
.hero-content{ max-width:1280px; margin:0 auto; padding:4rem 1rem; position:relative; z-index:1;
}
.hero h1{ font-size:2.5rem; font-weight:800; margin-bottom: .75rem; color: var(--bg-muted); text-shadow: 0 2px 18px rgba(15,23,32,0.28);}
.hero h2{ font-size:1.25rem; font-weight:400; margin-bottom:1.75rem; color: var(--bg-muted); opacity:0.95; font-weight:400 }
.hero-info{ display:flex; flex-wrap:wrap; justify-content:center; gap:1.25rem; margin-bottom:1.25rem; font-size:1rem; color: #fff; opacity:0.95; }
.hero-info-item{ display:flex; align-items:center; gap:.5rem; color: var(--bg-muted); }
.hero-info-item svg{ stroke: var(--bg-muted); opacity:0.95; }
/* .hero-content {
background: rgba(255, 255, 255, 0.04);
backdrop-filter: blur(2px);
display: inline-block;
padding: 0.25rem 0.5rem;
border-radius: 6px;
} */
.btn-primary{
background: var(--primary); color: #fff; padding:.75rem 2rem; border-radius:.6rem;
border:none; font-weight:700; font-size:1rem; cursor:pointer; transition: transform .08s, box-shadow .15s, background .12s;
box-shadow: 0 6px 18px rgba(255,42,25,0.12);
}
.btn-primary:hover{ background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(224,34,21,0.12); }
.hero-gradient{ height:6rem; background: linear-gradient(to top, rgba(255,255,255,0.0), transparent); }
/* Sections */
section{ padding:5rem 1rem; }
.container{ max-width:1280px; margin:0 auto; }
.section-title{ font-size:2.25rem; font-weight:800; text-align:center; margin-bottom:2rem; color:var(--dark); }
.grid-2{ display:grid; grid-template-columns:1fr; gap:2rem; }
@media(min-width:768px){ .grid-2{ grid-template-columns:1fr 1fr } .hero h1{ font-size:3.5rem } .hero h2{ font-size:1.5rem } }
.grid-3{ display:grid; grid-template-columns:1fr; gap:1.5rem; }
@media(min-width:768px){ .grid-3{ grid-template-columns:repeat(3,1fr) } }
.grid-5{ display:grid; grid-template-columns:1fr; gap:1rem; }
@media(min-width:768px){ .grid-5{ grid-template-columns:repeat(5,1fr) } }
h3{ font-size:1.25rem; font-weight:700; margin-bottom:1rem; color:var(--accent) }
.card{
background:var(--card-bg); border-radius:.6rem; padding:1.5rem; box-shadow: var(--shadow);
border: 1px solid rgba(15,23,32,0.03);
}
.card h4{ font-size:1.125rem; font-weight:700; margin-bottom:.75rem; color:var(--dark) }
.card h5{ font-weight:700; color:var(--dark); margin-bottom:.25rem }
.topic{ border-left:4px solid var(--primary); padding-left:1rem; margin-bottom:1rem; }
.topic p{ color:var(--muted-2); font-size:.95rem; margin-top:.25rem }
.bg-gray{ background: #fbf7f6; } /* very subtle warm surface */
/* Warm light surface (replaces previous 'blue light') */
.bg-blue-light{
background: var(--bg-soft); border:2px solid var(--soft-border); border-radius:.6rem; padding:1.25rem;
}
.bg-green-light{
background: var(--success-light); border:2px solid #a7f3d0; border-radius:.6rem; padding:1.25rem;
}
.bg-gradient-blue{
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
color:white; border-radius:.6rem; padding:2rem; margin-top:2rem;
}
.list-icon{ display:flex; align-items:flex-start; gap:.75rem; margin-bottom:.75rem; }
.icon{ width:20px; height:20px; flex-shrink:0; margin-top:2px; stroke:var(--primary); }
.schedule-card{
background:var(--card-bg); border-radius:.6rem; padding:1rem; box-shadow: var(--shadow);
}
.schedule-card h4{ font-weight:800; color:var(--accent); text-align:center; margin-bottom:.5rem; }
.schedule{ border-collapse:collapse; width:100%; max-width:1200px; margin:auto; background:var(--card-bg); border-radius:12px; overflow:hidden; box-shadow: var(--shadow) }
.schedule thead{ background:var(--primary); color:#fff }
.schedule th, .schedule td{ padding:12px 16px; text-align:left; border-bottom:1px solid #f4e6e3; vertical-align:top; }
.schedule tbody tr:hover{ background:#fff7f5; }
.schedule tbody tr:nth-child(even){ background:#fffaf9; }
.schedule td{ font-size:.9rem; line-height:1.3 }
.price-box{
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
color:white; border-radius:.6rem; padding:2rem; text-align:center; margin-bottom:1.5rem;
}
.price{ font-size:3rem; font-weight:900; margin-bottom:.5rem }
.location-visual{
background: linear-gradient(135deg, #fff1ef 0%, #fff1ef 100%); border-radius:.6rem; padding:1.75rem; height:16rem;
display:flex; align-items:center; justify-content:center; text-align:center; margin-bottom:1.25rem; box-shadow: var(--shadow);
}
.avatar{
width:8rem; height:8rem; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
border-radius:50%; margin:0 auto 1rem; display:flex; align-items:center; justify-content:center; overflow:hidden;
}
.avatar img{ width:100%; height:100%; object-fit:cover; display:block; }
.avatar-group{ display:flex; justify-content:center; gap:.5rem; margin:0 auto 1rem }
.avatar-sm{ width:3.5rem; height:3.5rem; border-radius:50%; overflow:hidden; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); display:inline-block; }
.avatar-sm img{ width:100%; height:100%; object-fit:cover; display:block; }
.sponsor-card{ background:var(--card-bg); border-radius:.6rem; box-shadow: var(--shadow); padding:2.5rem 1.5rem; text-align:center }
.sponsor-icon{ font-size:3rem; color:#f3e8e7; margin-bottom:1rem }
footer{ background:var(--dark); color:#fff; padding:3rem 1rem; }
footer h3, footer h4{ color:#fff; margin-bottom:1rem }
footer a{ color: #f6eaea; text-decoration:none; transition: color .2s }
footer a:hover{ color: #fff }
.footer-divider{ border-top:1px solid rgba(255,255,255,0.06); margin-top:2rem; padding-top:2rem; text-align:center; color: rgba(255,255,255,0.75); font-size:.9rem }
ul{ padding-left:1.5rem; }
.text-sm{ font-size:.95rem }
.text-xs{ font-size:.80rem }
.mb-2{ margin-bottom:.5rem } .mb-4{ margin-bottom:1rem } .mt-2{ margin-top:.5rem } .mt-4{ margin-top:1rem } .mt-6{ margin-top:1.5rem }
/* sponsor logo sizing */
.sponsor-logo{ display:block; margin:0 auto .75rem; max-width:400px; max-height:84px; width:auto; height:auto; object-fit:contain; }
/* Table responsive */
@media (max-width:900px){
.schedule{ font-size:.8rem }
.schedule th, .schedule td{ padding:8px }
}
</style>
</head>
<body>
<!-- Navigation -->
<nav>
<div class="nav-container">
<div class="nav-brand">
<img src="Logos/logo_red.svg" alt="SSDA Logo" class="nav-logo">
</div>
<div class="nav-menu">
<a href="#home" class="nav-link active">Home</a>
<a href="#about" class="nav-link">About</a>
<a href="#program" class="nav-link">Program</a>
<a href="#call" class="nav-link">Call for Participants</a>
<a href="#location" class="nav-link">Location</a>
<a href="#registration" class="nav-link">Registration</a>
<a href="#sponsors" class="nav-link">Sponsors</a>
</div>
<button class="nav-toggle" id="navToggle" aria-label="Toggle navigation">
<svg width="24" height="24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M4 6h16M4 12h16M4 18h16"/>
</svg>
</button>
</div>
<div class="nav-mobile" id="navMobile">
<a href="#home" class="mobile-link">Home</a>
<a href="#about" class="mobile-link">About</a>
<a href="#program" class="mobile-link">Program</a>
<a href="#call" class="mobile-link">Call for Participants</a>
<a href="#location" class="mobile-link">Location</a>
<a href="#registration" class="mobile-link">Registration</a>
<a href="#sponsors" class="mobile-link">Sponsors</a>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="hero">
<div class="hero-content">
<h1>6th IAPR TC10/TC11 Summer School</h1>
<h2>Next-Gen Document Understanding: RAG, VLMs, and Structured Knowledge Extraction</h2>
<button class="btn-primary" onclick="scrollToSection('registration')">Apply Now</button>
<div class="hero-info">
<div class="hero-info-item">
<svg width="20" height="20" fill="none" stroke="currentColor" stroke-width="2">
<rect x="3" y="4" width="18" height="18" rx="2"/>
<path d="M16 2v4M8 2v4M3 10h18"/>
</svg>
<span>May 25-29, 2026</span>
</div>
<div class="hero-info-item">
<svg width="20" height="20" fill="none" stroke="currentColor" stroke-width="2">
<path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0118 0z"/>
<circle cx="12" cy="10" r="3"/>
</svg>
<span>Vall de Núria, Catalonia</span>
</div>
<div class="hero-info-item">
<svg width="20" height="20" fill="none" stroke="currentColor" stroke-width="2">
<path d="M17 21v-2a4 4 0 00-4-4H5a4 4 0 00-4 4v2"/>
<circle cx="9" cy="7" r="4"/>
<path d="M23 21v-2a4 4 0 00-3-3.87M16 3.13a4 4 0 010 7.75"/>
</svg>
<span>50 Participants</span>
</div>
</div>
</div>
<div class="hero-gradient"></div>
</section>
<!-- About Section -->
<section id="about">
<div class="container">
<h2 class="section-title">About the Summer School</h2>
<div class="grid-2">
<div>
<h3>Overview</h3>
<p style="color: var(--muted); margin-bottom: 1rem;">
The rapid development of Document Intelligence (DI) has transformed traditional Document Analysis
and Recognition (DAR) into a sophisticated, AI-driven field. This summer school provides cutting-edge
tools for information extraction using Retrieval-Augmented Generation (RAG), Vision-Language
Models (VLMs), and structured knowledge representation.
</p>
<p style="color: var(--muted);">
Through a Challenge-Based Learning framework, participants will progress from foundational lectures
to hands-on practice sessions and culminate in solving real-world industry challenges in collaborative teams.
</p>
</div>
<div>
<h3>Learning Outcomes</h3>
<div class="list-icon">
<svg class="icon" fill="none" stroke="var(--primary)" stroke-width="2">
<path d="M19 9l-7 7-7-7"/>
</svg>
<span style="color: var(--muted);">Design and implement DocVQA systems with RAG techniques</span>
</div>
<div class="list-icon">
<svg class="icon" fill="none" stroke="var(--primary)" stroke-width="2">
<path d="M19 9l-7 7-7-7"/>
</svg>
<span style="color: var(--muted);">Master multimodal data generation for efficient VLM training</span>
</div>
<div class="list-icon">
<svg class="icon" fill="none" stroke="var(--primary)" stroke-width="2">
<path d="M19 9l-7 7-7-7"/>
</svg>
<span style="color: var(--muted);">Build knowledge graphs from complex document collections</span>
</div>
<div class="list-icon">
<svg class="icon" fill="none" stroke="var(--primary)" stroke-width="2">
<path d="M19 9l-7 7-7-7"/>
</svg>
<span style="color: var(--muted);">Apply solutions to low-resource and historical document analysis</span>
</div>
</div>
</div>
</div>
</section>
<!-- Scientific Program -->
<section id="program" class="bg-gray">
<div class="container">
<h2 class="section-title">Scientific Program</h2>
<!-- Lectures -->
<div style="margin-bottom: 3rem;">
<h3 style="display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem;">
<svg width="24" height="24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M4 19.5A2.5 2.5 0 016.5 17H20"/>
<path d="M6.5 2H20v20H6.5A2.5 2.5 0 014 19.5v-15A2.5 2.5 0 016.5 2z"/>
</svg>
Lectures
</h3>
<div class="card" style="margin-bottom: 2rem;">
<h4>Vision-Language Models</h4>
<div class="topic">
<h5>Designing and training VLMs</h5>
<p>Lessons learned from training large-scale vision-language models.</p>
</div>
<div class="topic">
<h5>Document Processing with VLMs</h5>
<p>How to use VLMs to extract structured information from documents.</p>
</div>
</div>
<div class="card" style="margin-bottom: 2rem;">
<h4>Graphs as a Document Representation</h4>
<div class="topic">
<h5>Learning on Graphs: GNNs in Document Analysis.</h5>
<p>Use graph neural networks to analyze and interpret document structures.</p>
</div>
<div class="topic">
<h5>Knowledge Graph Embeddings and Knowledge Representation</h5>
<p>Convert documents into structured knowledge graphs for enhanced understanding.</p>
</div>
<div class="topic">
<h5>GraphRAG and Agentic Architectures: From data to insight</h5>
<p>How to augment your models with graph retrieval-augmented generation techniques.</p>
</div>
</div>
<div class="card">
<h4>Trends on Document Analysis</h4>
<div class="topic">
<h5>Trends on Trustworthy Document Analysis</h5>
<p>Panel with experts working on trustworthiness and explainability in document analysis.</p>
</div>
<div class="topic">
<h5>Trends on Historical Document Analysis</h5>
<p>Panels with experts discussing the latest research and challenges in historical document analysis.</p>
</div>
</div>
<br>
<!-- <button class="btn-primary" style="padding: 1rem 3rem; font-size: 1.125rem; position: center;" onclick="window.open('https://cvc-dag.github.io/ssda/schedule.html')">
Click here for the complete program and lectures!
</button> -->
</div>
<!-- Lab Sessions -->
<div style="margin-bottom: 3rem;">
<h3>Hands-On Lab Sessions</h3>
<div class="grid-3">
<div class="bg-blue-light">
<h4>Fine-Tuning Vision Language Models</h4>
<p class="text-sm" style="color: var(--muted);">Fine-tune a small VLM on documents of a specific domain.</p>
</div>
<div class="bg-blue-light">
<h4>Graph Neural Networks</h4>
<p class="text-sm" style="color: var(--muted);">Explore the use of graph neural networks for document structure analysis.</p>
</div>
<div class="bg-blue-light">
<h4>Agentic GraphRAG</h4>
<p class="text-sm" style="color: var(--muted);">Build an agentic system using GraphRAG for advanced document analysis.</p>
</div>
</div>
</div>
<!-- Open Lab Challenge -->
<div class="bg-gradient-blue">
<h3 style="color: white; font-size: 1.5rem; margin-bottom: 1rem;">Document Understanding 2026 Challenge</h3>
<p style="font-size: 1.125rem; margin-bottom: 1rem;">
Teams of 5 participants will tackle real-world industry problems.
</p>
</div>
<div style="height: 2rem;"></div>
</div>
</section>
<!-- Call for Participants -->
<section id="call">
<div class="container">
<h2 class="section-title">Call for Participants</h2>
<div class="grid-2">
<div>
<h3>Target Audience</h3>
<div class="bg-blue-light mb-4">
<h4>PhD Students (Priority)</h4>
<p class="text-sm" style="color: var(--muted);">
Students in their 1st-3rd year working on document analysis, information retrieval, or related fields
</p>
</div>
<div class="bg-blue-light mb-4">
<h4>Master's/Post-Master's Students</h4>
<p class="text-sm" style="color: var(--muted);">
Advanced students preparing for PhD studies in document analysis
</p>
</div>
<div class="bg-blue-light">
<h4>Early-Career Practitioners</h4>
<p class="text-sm" style="color: var(--muted);">
Industry professionals seeking to deepen expertise in document understanding
</p>
</div>
</div>
<div>
<h3>Desired Skills</h3>
<div class="list-icon">
<svg class="icon" fill="none" stroke="var(--primary)" stroke-width="2">
<circle cx="12" cy="8" r="7"/>
<path d="M8.21 13.89L7 23l5-3 5 3-1.21-9.12"/>
</svg>
<div>
<strong>Deep Learning Frameworks</strong>
<p class="text-sm" style="color: var(--muted-2);">Experience with PyTorch or TensorFlow</p>
</div>
</div>
<div class="list-icon">
<svg class="icon" fill="none" stroke="var(--primary)" stroke-width="2">
<circle cx="12" cy="8" r="7"/>
<path d="M8.21 13.89L7 23l5-3 5 3-1.21-9.12"/>
</svg>
<div>
<strong>Research Skills</strong>
<p class="text-sm" style="color: var(--muted-2);">Analytical approach to research and industry challenges</p>
</div>
</div>
<div class="list-icon">
<svg class="icon" fill="none" stroke="var(--primary)" stroke-width="2">
<circle cx="12" cy="8" r="7"/>
<path d="M8.21 13.89L7 23l5-3 5 3-1.21-9.12"/>
</svg>
<div>
<strong>Team Collaboration</strong>
<p class="text-sm" style="color: var(--muted-2);">Ability to work effectively in team-based activities</p>
</div>
</div>
<div class="list-icon">
<svg class="icon" fill="none" stroke="var(--primary)" stroke-width="2">
<circle cx="12" cy="8" r="7"/>
<path d="M8.21 13.89L7 23l5-3 5 3-1.21-9.12"/>
</svg>
<div>
<strong>Motivation</strong>
<p class="text-sm" style="color: var(--muted-2);">Clear interest in document analysis and AI</p>
</div>
</div>
<div class="bg-green-light mt-6">
<h4 style="color: var(--success); margin-bottom: 0.5rem;">5 Full Grants Available!</h4>
<p class="text-sm mb-4" style="color: var(--muted);">
We offer 5 full registration fee grants. Apply during registration!
</p>
<p class="text-sm" style="color: var(--muted);"><strong>Evaluation criteria:</strong></p>
<ul class="text-sm mt-2" style="color: var(--muted); margin-left: 1.5rem;">
<li>Geographic distance</li>
<li>Financial constraints</li>
<li>Academic background and CV</li>
<li>Research relevance</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Location -->
<section id="location" class="bg-gray">
<div class="container">
<h2 class="section-title">Location & Venue</h2>
<div class="grid-2">
<div>
<h3>Vall de Núria</h3>
<p style="color: var(--muted); margin-bottom: 1rem;">
A stunning glacial valley nestled in the heart of the Pyrenees mountains of Catalonia, at approximately
2,000 meters elevation. Accessible only by scenic cogwheel train, offering a peaceful and inspiring
environment away from everyday distractions.
</p>
<div style="margin-bottom: 1rem;">
<div class="list-icon">
<svg class="icon" fill="none" stroke="var(--primary)" stroke-width="2">
<path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0118 0z"/>
<circle cx="12" cy="10" r="3"/>
</svg>
<div>
<h4 style="font-weight: 700; margin: 0;">Location</h4>
<p class="text-sm" style="color: var(--muted-2);">Eastern Pyrenees, Queralbs, Catalonia, Spain</p>
</div>
</div>
<div class="list-icon">
<svg class="icon" fill="none" stroke="var(--primary)" stroke-width="2">
<rect x="3" y="4" width="18" height="18" rx="2"/>
<path d="M16 2v4M8 2v4M3 10h18"/>
</svg>
<div>
<h4 style="font-weight: 700; margin: 0;">Starting Point</h4>
<p class="text-sm" style="color: var(--muted-2);">Day 1: Computer Vision Center (CVC), UAB Campus</p>
<p class="text-sm" style="color: var(--muted-2);">Transport provided to Vall de Núria</p>
</div>
</div>
</div>
<div class="bg-blue-light">
<h4>Accommodation</h4>
<p class="text-sm" style="color: var(--muted);">
All participants stay at the hotel in the center of the valley. Shared rooms (double/triple)
with private bathrooms. All meals included: buffet-style breakfast, lunch, and dinner with
vegetarian/vegan options.
</p>
</div>
</div>
<div>
<!-- Location Section -->
<div class="location-visual"
onclick="window.open('http://maps.google.es/?q=42.400148%202.149970', '_blank')"
style="position: relative; overflow: hidden; border-radius: 1rem; cursor: pointer;">
<!-- Background iFrame -->
<iframe src="./map.html"
style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;
border: none; filter: brightness(0.98) blur(1px); pointer-events: none; z-index: 0;">
</iframe>
<!-- Foreground content -->
<div style="position: relative; z-index: 1; text-align: center; padding: 2rem; background: rgba(255,255,255,0.4); border-radius: 1rem;">
<svg width="48" height="48" fill="none" stroke="var(--primary)" stroke-width="2" style="margin: 0 auto 1rem;">
<path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0118 0z"/>
<circle cx="12" cy="10" r="3"/>
</svg>
<p style="color: var(--muted); font-weight: 700;">Vall de Núria, Catalonia</p>
<p class="text-sm" style="color: var(--muted-2);">2,000m elevation • Car-free valley</p>
</div>
</div>
<h4 style="font-size: 1.25rem; margin-bottom: 1rem;">Social Activities</h4>
<ul style="color: var(--muted); margin-left: 1.5rem;">
<li>Guided hiking and nature walks with mountain views</li>
<li>Board games and social activities in communal spaces</li>
<li>Gala dinner on the final evening</li>
<li>Informal networking throughout the week</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Registration -->
<section id="registration">
<div class="container" style="max-width: 1024px; text-align: center;">
<h2 class="section-title">Registration</h2>
<div class="price-box">
<div class="price">850€</div>
<p class="text-sm" style="margin-top: 0.5rem; opacity: 0.9;">Includes accommodation, all meals, coffee breaks, transport, and materials</p>
</div>
<div class="bg-blue-light" style="margin-bottom: 2rem;">
<h3 style="font-size: 1.125rem; margin-bottom: 0.5rem;">Important Information</h3>
<p class="text-sm" style="color: var(--muted);">
<strong>Capacity:</strong> Limited to 50 participants • <strong>Format:</strong> In-person only •
<strong>Language:</strong> English
</p>
<button class="btn-primary" style="padding: 1rem 3rem; font-size: 1.125rem;" onclick="window.open('https://forms.gle/DScBBjp7jBCXBAZL6')">
Apply Now! - Registration Form
</button>
</div>
<br>
<div class="grid-2" style="margin-bottom: 2rem;">
<div class="bg-gray card">
<h3 style="font-size: 1.125rem; margin-bottom: 0.75rem;">What's Included</h3>
<ul style="text-align: left; color: var(--muted); font-size: 0.95rem;">
<li>✓ 4 nights accommodation at Vall de Núria</li>
<li>✓ All meals (breakfast, lunch, dinner)</li>
<li>✓ Daily coffee breaks</li>
<li>✓ Transport from/to Barcelona</li>
<li>✓ Conference materials and goodie bag</li>
<li>✓ Access to all lectures and lab sessions</li>
<li>✓ Recorded lectures (available post-event)</li>
</ul>
</div>
<div class="bg-green-light">
<h3 style="font-size: 1.125rem; margin-bottom: 0.75rem; color: var(--success);">Grant Opportunities</h3>
<p class="text-sm mb-4" style="color: var(--muted);">
5 full registration grants available thanks to IAPR support. Apply during registration!
</p>
<p class="text-sm" style="color: var(--muted);"><strong>Evaluation criteria:</strong></p>
<ul style="text-align: left; color: var(--muted); font-size: 0.95rem; margin-top: 0.5rem;">
<li>Geographic distance</li>
<li>Financial constraints</li>
<li>Academic background and CV</li>
<li>Research relevance</li>
</ul>
</div>
</div>
<p class="text-sm mt-4" style="color: var(--muted-2);">
Questions? Contact: <a href="mailto:amolina@cvc.uab.es" style="color: var(--primary); text-decoration: none;">{amolina, allabres}@cvc.uab.es</a>
</p>
</div>
</section>
<!-- Sponsors -->
<section id="sponsors" class="bg-gray">
<div class="container">
<h2 class="section-title">Sponsors & Partners</h2>
<div style="text-align: center; margin-bottom: 3rem;">
<h3 style="font-size: 1.5rem; margin-bottom: 1.5rem;">Platinum Sponsor</h3>
<div class="sponsor-card" style="max-width: 28rem; margin: 0 auto;">
<div class="sponsor-icon">★</div>
<p style="color: var(--muted);">Sponsorship opportunity available</p>
</div>
</div>
<div class="grid-2" style="margin-bottom: 3rem;">
<div style="text-align: center;">
<h3 style="font-size: 1.25rem; margin-bottom: 1rem;">Organizer</h3>
<div class="sponsor-card">
<img class="sponsor-logo" src="Logos/CVC-logo-scaled.png" alt="CVC Logo">
<p class="text-sm" style="color: var(--muted);">Computer Vision Center</p>
<p class="text-xs mt-2" style="color: #c9b7b4;">Universitat Autònoma de Barcelona</p>
</div>
</div>
<div style="text-align: center;">
<h3 style="font-size: 1.25rem; margin-bottom: 1rem;">Supporter</h3>
<div class="sponsor-card">
<img class="sponsor-logo" src="https://iapr-tc10.univ-lr.fr/wp-content/uploads/2019/03/new_TC10_version3_.png" alt="IAPR Logo">
<p class="text-sm" style="color: var(--muted);">IAPR 10th and 11th Technical Committees</p>
<p class="text-xs mt-2" style="color: #c9b7b4;">IAPR</p>
</div>
</div>
</div>
<div class="grid-2" style="margin-bottom: 3rem;">
<div style="text-align: center;">
<h3 style="font-size: 1.25rem; margin-bottom: 1rem;">Co-Organizer</h3>
<div class="sponsor-card">
<img class="sponsor-logo" src="Logos/ellis-logo_horizontal_black_2023-barcelona.png" alt="ELLIS Unit Barcelona Logo">
<p class="text-sm" style="color: var(--muted);">ELLIS Unit Barcelona</p>
<p class="text-xs mt-2" style="color: #c9b7b4;">Barcelona</p>
</div>
</div>
<div style="text-align: center;">
<h3 style="font-size: 1.25rem; margin-bottom: 1rem;">Co-Organizer</h3>
<div class="sponsor-card">
<img class="sponsor-logo" src="Logos/ELLIOT.png" alt="ELLIOT">
<p class="text-sm" style="color: var(--muted);">ELLIOT Project</p>
<p class="text-xs mt-2" style="color: #c9b7b4;">Horizon European project</p>
</div>
</div>
</div>
<div class="bg-blue-light" style="text-align: center;">
<h3 style="font-size: 1.25rem; margin-bottom: 1rem;">Become a Sponsor</h3>
<p style="color: var(--muted); margin-bottom: 1rem;">
Support the next generation of document understanding researchers and gain visibility in the academic community.
</p>
<button class="btn-primary">Contact Us for Sponsorship</button>
</div>
</div>
</section>
<!-- Organizing Team -->
<section>
<div class="container">
<h2 class="section-title">Organizing Team</h2>
<div class="grid-3">
<div style="text-align: center;">
<div class="avatar">
<img src="Team/dimos.jpg" alt="Prof. Dimosthenis Karatzas" style="width:120px; height:120px; border-radius:50%; object-fit:cover;">
</div>
<h3 style="font-size: 1.125rem; margin-bottom: 0.25rem;">Prof. Dimosthenis Karatzas</h3>
<p class="text-sm" style="color: var(--muted);">Associate Director, CVC</p>
<p class="text-xs mt-1" style="color: #c9b7b4;">Head of Vision, Language and Reading Group</p>
</div>
<div style="text-align: center;">
<div class="avatar">
<img src="Team/josep.jpg" alt="Prof. Josep Lladós" style="width:120px; height:120px; border-radius:50%; object-fit:cover;">
</div>
<h3 style="font-size: 1.125rem; margin-bottom: 0.25rem;">Prof. Josep Lladós</h3>
<p class="text-sm" style="color: var(--muted);">Director, CVC</p>
<p class="text-xs mt-1" style="color: #c9b7b4;">Head of Document Analysis Group</p>
</div>
<div style="text-align: center;">
<div class="avatar">
<img src="Team/ernest.png" alt="Dr. Ernest Valveny" style="width:120px; height:120px; border-radius:50%; object-fit:cover;">
</div>
<h3 style="font-size: 1.125rem; margin-bottom: 0.25rem;">Dr. Ernest Valveny</h3>
<p class="text-sm" style="color: var(--muted);">Researcher, CVC</p>
<p class="text-xs mt-1" style="color: #c9b7b4;">And Coordinator of the AI Degree at UAB</p>
</div>
<div style="text-align: center;">
<div class="avatar">
<img src="Team/adri.png" alt="Adri Molina" style="width:120px; height:120px; border-radius:50%; object-fit:cover;">
</div>
<h3 style="font-size: 1.125rem; margin-bottom: 0.25rem;">Adri Molina</h3>
<p class="text-sm" style="color: var(--muted);">PhD Student, CVC</p>
<p class="text-xs mt-1" style="color: #c9b7b4;">Document Analysis • Retrieval Systems</p>
</div>
<div style="text-align: center;">
<div class="avatar">
<img src="Team/artemis.jpg" alt="Artemis Llabrés" style="width:120px; height:120px; border-radius:50%; object-fit:cover;">
</div>
<h3 style="font-size: 1.125rem; margin-bottom: 0.25rem;">Artemis Llabrés</h3>
<p class="text-sm" style="color: var(--muted);">PhD Student, CVC</p>
<p class="text-xs mt-1" style="color: #c9b7b4;">Vision & Language • Document Understanding</p>
</div>
<div style="text-align: center;">
<div class="avatar-group" aria-hidden="false">
<div class="avatar-sm">
<img src="Team/nuria.jpg" alt="Nuria Martinez">
</div>
<div class="avatar-sm">
<img src="Team/aurora.jpeg" alt="Aurora Garcia">
</div>
<div class="avatar-sm">
<img src="Team/xavi.jpeg" alt="Xavier Galvez">
</div>
</div>
<h3 style="font-size: 1.125rem; margin-bottom: 0.25rem;">CVC Communications Team</h3>
<p class="text-sm" style="color: var(--muted);">Nuria Martinez • Aurora Garcia • Xavier Galvez</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<div class="grid-3">
<div>
<h3>SSDA 2026</h3>
<p style="color: rgba(255,255,255,0.85); font-size: 0.95rem;">
6th IAPR TC10/TC11 Summer School on Next-Gen Document Understanding
</p>
</div>
<div>
<h4>Contact</h4>
<p style="color: rgba(255,255,255,0.85); font-size: 0.95rem; margin-bottom: 0.5rem;">
<svg width="16" height="16" fill="none" stroke="currentColor" stroke-width="2" style="display: inline; margin-right: 0.5rem;">
<path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"/>
<path d="M22 6l-10 7L2 6"/>
</svg>
amolina@cvc.uab.es
</p>
<p style="color: rgba(255,255,255,0.85); font-size: 0.95rem;">
<svg width="16" height="16" fill="none" stroke="currentColor" stroke-width="2" style="display: inline; margin-right: 0.5rem;">
<path d="M12 22s8-4.5 8-10a8 8 0 10-16 0c0 5.5 8 10 8 10z"/>
<circle cx="12" cy="12" r="3"/>
</svg>
CVC, UAB Campus, Barcelona, Spain
</p>
</div>
<div>
<h4>Quick Links</h4>
<p><a href="#about">About</a></p>
<p><a href="#program">Program</a></p>
<p><a href="#registration">Registration</a></p>
<p><a href="#sponsors">Sponsors</a></p>
</div>
</div>
<div class="footer-divider">
2026 SSDA Summer School
</div>
</div>
</footer>
<!-- Scripts -->
<script>
// Mobile nav toggle
const navToggle = document.getElementById("navToggle");
const navMobile = document.getElementById("navMobile");
navToggle.addEventListener("click", () => {
navMobile.classList.toggle("active");
});
// Scroll to section
function scrollToSection(id) {
document.getElementById(id).scrollIntoView({ behavior: "smooth" });
}
// Close mobile menu on link click
document.querySelectorAll(".mobile-link").forEach(link => {
link.addEventListener("click", () => {
navMobile.classList.remove("active");
});
});
</script>
</body>
</html>