
:root {
    --primary: #0a2540;
    --secondary: #1e5a8e;
    --accent: #ff6b35;
    --text: #2d3748;
    --text-light: #718096;
    --bg: #fafafa;
    --card-bg: #ffffff;
    --border: #e2e8f0;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Crimson Pro', serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: transform 0.3s ease;
}

nav.hidden {
    transform: translateY(-100%);
}
.name-logo {
    display: flex;
    align-items: center;
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a2540 0%, #1e5a8e 50%, #2d7ab9 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -20px); }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    min-height: calc(90vh - 80px);
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    opacity: 0;
    animation: slideUp 0.8s ease forwards;
}

.hero-content .subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-weight: 400;
    opacity: 0;
    animation: slideUp 0.8s ease 0.2s forwards;
}

.hero-content .affiliation {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: slideUp 0.8s ease 0.4s forwards;
}

.hero-content .affiliation a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid var(--accent);
    transition: opacity 0.3s ease;
}

.hero-content .affiliation a:hover {
    opacity: 0.8;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(30px);
    }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: slideUp 0.8s ease 0.6s forwards;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.hero-image {
    position: relative;
    opacity: 0;
    animation: fadeIn 1s ease 0.8s forwards;
  
    height: 100%;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: var(--gradient-1);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    display: block;
    object-fit: cover;
}

.research-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    opacity: 0;
    animation: slideUp 0.8s ease 1s forwards;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.highlight-card .icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.highlight-card h3 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.highlight-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Section Styles */
section {
    padding: 6rem 2rem;
    /* max-width: 1400px; */
    margin: 0 auto;
}

.section-others {
   
    max-width: 1400px;

}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Research Areas */
.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.research-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.research-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.research-card-header {
    padding: 2rem;
    background: var(--gradient-1);
    color: white;
}

.research-card:nth-child(2) .research-card-header {
    background: var(--gradient-2);
}

.research-card:nth-child(3) .research-card-header {
    background: var(--gradient-3);
}

.research-card:nth-child(4) .research-card-header {
     background: var(--gradient-1);
}

.research-card:nth-child(5) .research-card-header {
     background: var(--gradient-2);
}

.research-card:nth-child(6) .research-card-header {
     background: var(--gradient-3);
}

.research-card:nth-child(7) .research-card-header {
     background: var(--gradient-1);
}

.research-card:nth-child(8) .research-card-header {
     background: var(--gradient-2);
}

.research-card:nth-child(9) .research-card-header {
     background: var(--gradient-3);
}

.research-card:nth-child(10) .research-card-header {
     background: var(--gradient-1);
}

.research-card:nth-child(11) .research-card-header {
     background: var(--gradient-2);
}


.research-card-header h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.research-card-content {
    padding: 2rem;
}

.research-card-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.research-card-content ul {
    list-style: none;
    padding: 0;
}

.research-card-content li {
    padding: 0.5rem 0;
    color: var(--text);
    position: relative;
    padding-left: 1.5rem;
}

.research-card-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

/* Publications */
#publications {
    background: linear-gradient(180deg, var(--bg) 0%, #f0f4f8 100%);
}

.publication-list {
    max-width: 900px;
    margin: 0 auto;
}

.publication-item {
    background: var(--card-bg);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.publication-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.publication-item .authors {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.publication-item .title {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.publication-item .venue {
    color: var(--text-light);
    font-size: 0.95rem;
}

.publication-item .venue strong {
    color: var(--text);
}

.publication-tag {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

/* Videos Section */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.video-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-description {
    padding: 1.5rem;
}

.video-description h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.video-description p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Section */
#contact {
    background: var(--primary);
    color: white;
    text-align: center;
}

#contact .section-header h2 {
    color: white;
}

#contact .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-item {
    text-align: center;
}

.contact-item .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent);
}

/* Team Section */
        #team {
            background: var(--bg);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .team-member {
            background: var(--card-bg);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            text-align: center;
            border: 1px solid var(--border);
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        .team-photo {
            width: 100%;
            height: 300px;
            overflow: hidden;
            position: relative;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .team-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .team-member:hover .team-photo img {
            transform: scale(1.05);
        }

        .team-info {
            padding: 2rem 1.5rem;
        }

        .team-info h3 {
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .team-role {
            font-size: 1rem;
            color: var(--accent);
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .team-description {
            font-size: 0.95rem;
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .team-social {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 107, 53, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .social-link:hover {
            background: var(--accent);
            color: white;
            transform: translateY(-3px);
        }

        .our-team-btn {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 70px;
        }



/* Footer */
footer {
    background: #0a1929;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 2rem;
}

footer p {
    margin-bottom: 0.5rem;
}

footer a {
    color: var(--accent);
    text-decoration: none;
}

.footer-logo {
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .research-highlights {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .subtitle {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .research-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .contact-info {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== PUBLICATIONS SECTION ADDITIONS =====
   Paste this into your existing CSS file.
   Only targets #publications — does not affect other sections.
*/

#publications {
  background: linear-gradient(180deg, #fafafa 0%, #f0f4f8 100%);
  padding: 6rem 3rem;
  max-width: 100%;
}

.publications-layout {
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 4rem;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

/* Left: publication list */
.publication-list {
  max-width: 100%;
  margin: 0;
}

/* View More Button */
.view-more-wrap {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-view-more {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #ff6b35;
  color: #fff;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Crimson Pro', serif;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35);
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.btn-view-more:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.45);
}

.btn-view-more svg {
  transition: transform 0.3s ease;
}

.btn-view-more:hover svg {
  transform: translateX(4px);
}

.pubs-count-note {
  font-size: 0.9rem;
  color: #718096;
  font-family: 'Crimson Pro', serif;
}

/* ===== RIGHT: Photo Collage ===== */
.pub-photo-collage {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.collage-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #718096;
  margin-bottom: 1.2rem;
  font-family: 'Crimson Pro', serif;
}

.collage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 300px 220px 260px;
  gap: 10px;
  border-radius: 20px;
  overflow: hidden;
}

.collage-photo {
  overflow: hidden;
  position: relative;
  background: #e2e8f0;
  cursor: pointer;
}

.collage-photo:first-child {
  grid-column: 1 / -1;
  grid-row: 1;
  border-radius: 14px 14px 0 0;
}

.collage-photo:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.collage-photo:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.collage-photo:nth-child(4) {
  grid-column: 1 / -1;
  grid-row: 3;
  border-radius: 0 0 14px 14px;
}

.collage-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.collage-photo:hover img {
  transform: scale(1.06);
}

/* Hover badge on each photo */
.collage-photo .photo-badge {
  position: absolute;
  bottom: 10px;
  left: 12px;
  background: rgba(10, 37, 64, 0.75);
  backdrop-filter: blur(6px);
  color: white;
  font-size: 0.75rem;
  font-family: 'Crimson Pro', serif;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  font-weight: 500;
  letter-spacing: 0.3px;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
}

.collage-photo:hover .photo-badge {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
  .publications-layout {
    grid-template-columns: 1fr;
  }

  .pub-photo-collage {
    position: static;
  }

  .collage-grid {
    grid-template-rows: 260px 200px 240px;
  }
}


/* ===================================================
   EVENTS SECTION — append to your existing CSS file.
   All rules are scoped to #events and will not 
   affect any other section.
   =================================================== */

#events {
  position: relative;
  padding: 6rem 0;
  background: #ffffff;
  overflow: hidden;
}

/* Faint decorative background strip */
#events .events-bg-strip {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 340px;
  background: linear-gradient(135deg, #0a2540 0%, #1e5a8e 60%, #2d7ab9 100%);
  z-index: 0;
}

#events .events-inner {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* ---------- Section Header ---------- */
#events .section-header {
  text-align: center;
  margin-bottom: 5rem;
}

#events .events-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.8rem;
  font-family: 'Crimson Pro', serif;
}

#events .section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -1px;
  margin-bottom: 0.8rem;
}

#events .section-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
  margin: 0 auto;
  font-family: 'Crimson Pro', serif;
}

/* ---------- Event Block Layout ---------- */
.event-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: #ffffff;
  border-radius: 24px;
  padding: 3.5rem;
  box-shadow: 0 8px 40px rgba(10, 37, 64, 0.10);
  margin-bottom: 2rem;
}

.event-block-reverse {
  grid-template-columns: 1fr 1fr;
}

/* ---------- Event Content (text side) ---------- */
.event-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.event-badge {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: 'Crimson Pro', serif;
}

.badge-blue {
  background: rgba(30, 90, 142, 0.1);
  color: #1e5a8e;
}

.badge-orange {
  background: rgba(255, 107, 53, 0.12);
  color: #e55a2b;
}

.event-year {
  font-size: 0.85rem;
  color: #718096;
  font-family: 'Crimson Pro', serif;
}

.event-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #0a2540;
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 0.4rem;
  font-family: 'Crimson Pro', serif;
}

.event-fullname {
  font-size: 1rem;
  color: #1e5a8e;
  font-style: italic;
  margin-bottom: 1.2rem;
  font-family: 'Crimson Pro', serif;
}

.event-desc {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-family: 'Crimson Pro', serif;
}

/* Highlights list */
.event-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1rem;
}

.event-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.5;
  font-family: 'Crimson Pro', serif;
}

.highlight-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Edition chips */
.event-editions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
}

.edition-chip {
  display: inline-block;
  padding: 0.25rem 0.8rem;
  background: #f0f4f8;
  color: #4a5568;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Crimson Pro', serif;
  border: 1px solid #e2e8f0;
}

.edition-orange {
  background: rgba(255, 107, 53, 0.07);
  color: #c05228;
  border-color: rgba(255, 107, 53, 0.2);
}

/* CTA button */
.btn-event-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #0a2540;
  color: #ffffff;
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  font-family: 'Crimson Pro', serif;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(10, 37, 64, 0.2);
}

.btn-event-cta:hover {
  background: #1e5a8e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.3);
}

.btn-cta-orange {
  background: #ff6b35;
}

.btn-cta-orange:hover {
  background: #e55a2b;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35);
}

/* ---------- Photo Mosaic ---------- */
.event-mosaic {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mosaic-main {
  position: relative;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #1e5a8e, #4facfe);
}

.mosaic-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.mosaic-main:hover img {
  transform: scale(1.04);
}

.mosaic-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mosaic-sm {
  position: relative;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a2540, #667eea);
}

.mosaic-sm:last-child {
  background: linear-gradient(135deg, #ff6b35, #f5576c);
}

.mosaic-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.mosaic-sm:hover img {
  transform: scale(1.06);
}

/* Overlay on photos */
.mosaic-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.6rem 0.8rem;
  background: linear-gradient(transparent, rgba(10, 37, 64, 0.7));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mosaic-main:hover .mosaic-overlay,
.mosaic-sm:hover .mosaic-overlay {
  opacity: 1;
}

.mosaic-tag {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  font-family: 'Crimson Pro', serif;
  letter-spacing: 0.3px;
}

/* Floating stat bubbles */
.stat-bubble {
  position: absolute;
  background: #ffffff;
  border-radius: 16px;
  padding: 0.6rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.14);
  z-index: 2;
  pointer-events: none;
}

.stat-bubble .stat-num {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0a2540;
  line-height: 1;
  font-family: 'Crimson Pro', serif;
}

.stat-bubble .stat-num sup {
  font-size: 0.75rem;
}

.stat-bubble .stat-label {
  font-size: 0.72rem;
  color: #718096;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Crimson Pro', serif;
}

.bubble-1 { top: 18px; right: -16px; }
.bubble-2 { bottom: 170px; right: -16px; }
.bubble-3 { top: 18px; left: -16px; }
.bubble-4 { bottom: 170px; left: -16px; }

/* ---------- Divider ---------- */
.events-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0;
}

.events-divider span:not(.divider-dot) {
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.divider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6b35;
  flex: 0 !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .event-block,
  .event-block-reverse {
    grid-template-columns: 1fr;
    padding: 2.5rem;
  }

  .event-block-reverse .event-mosaic {
    order: -1;
  }

  .bubble-1, .bubble-2 { right: 12px; }
  .bubble-3, .bubble-4 { left: 12px; }

  .event-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  #events .events-inner {
    padding: 0 1.5rem;
  }

  .event-title {
    font-size: 2.4rem;
  }

  .mosaic-main { height: 220px; }
  .mosaic-sm   { height: 130px; }
}