/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Lighter palette: steel blue + warm amber */
    --primary-color: #2b5ea7;
    --primary-dark: #1e4a85;
    --primary-light: #3b7ddb;
    --accent-color: #d4a12a;
    --accent-bright: #e8b830;
    --secondary-color: #5a6a7e;
    --text-dark: #1f2937;
    --text-light: #5a6a7e;
    --bg-light: #f4f6f9;
    --bg-white: #ffffff;
    --border-color: #d1d8e0;
    --success-color: #5a6a7e;
    --warning-color: #d4a12a;
    /* Stories: medium-dark slate (somber but not black) */
    --bg-stories-section: #3d4f63;
    --bg-stories-card: #4a5e74;
    --bg-stories-delay: #5a6e82;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.75rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

/* ============================================= */
/* Hero Section -- poster / advertisement style  */
/* ============================================= */
.hero {
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
}

/* Subtle diagonal stripe for poster feel */
.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: rgba(255, 255, 255, 0.03);
    transform: rotate(12deg);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero left: slogan + subtitle (the poster punch) */
.hero-main {
    text-align: left;
}

.hero-slogan {
    margin-bottom: 1rem;
}

.slogan-line {
    margin: 0;
    line-height: 1.15;
}

.slogan-en {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: white;
}

.slogan-en em {
    font-style: normal;
    color: #dc2626;
    background: linear-gradient(180deg, transparent 60%, rgba(220, 38, 38, 0.25) 60%);
    text-decoration: none;
    padding: 0 0.15em;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.slogan-fr {
    font-size: 1.125rem;
    font-weight: 500;
    opacity: 0.8;
    margin-top: 0.375rem;
    font-style: italic;
}

.slogan-fr em {
    font-style: italic;
    color: var(--accent-bright);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.slogan-zh {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 0.375rem;
    color: var(--accent-bright);
    letter-spacing: 0.05em;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    opacity: 0.85;
    line-height: 1.4;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 0.75rem;
}

/* Hero center: image */
.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 320px;
    border-radius: 6px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.45);
    border: 3px solid rgba(255, 255, 255, 0.15);
}

/* Hero right column: demands quick-reference */
.hero-demands {
    border-left: 3px solid var(--accent-bright);
    padding-left: 1.25rem;
}

.hero-demands-title {
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--accent-bright);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-demands-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.75rem;
}

.hero-demands-list li {
    padding: 0.2rem 0;
    font-size: 0.875rem;
    line-height: 1.35;
    display: flex;
    gap: 0.4rem;
    align-items: baseline;
}

.hero-demands-list li .demand-num {
    color: var(--accent-bright);
    font-weight: 800;
    font-size: 0.8125rem;
    min-width: 1.25rem;
    flex-shrink: 0;
}

.hero-event-line {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
    opacity: 0.9;
}

.hero-event-line strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--accent-bright);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 0.875rem;
}

.btn-primary {
    background: var(--accent-bright);
    color: #1f2937;
    font-weight: 700;
}

.btn-primary:hover {
    background: #d4a12a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 184, 48, 0.4);
}

.btn-primary-large {
    background: var(--accent-bright);
    color: #1f2937;
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
}

.btn-primary-large:hover {
    background: #d4a12a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 184, 48, 0.45);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Section Styles */
section {
    padding: 3rem 0;
}

section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-align: center;
    color: var(--text-dark);
}

.section-intro {
    font-size: 1.125rem;
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Declaration Section */
.declaration-section {
    background: var(--bg-light);
    padding: 2.5rem 0;
}

.declaration-section h2 {
    margin-bottom: 1rem;
}

.declaration-content {
    max-width: 1200px;
    margin: 0 auto;
}

.declaration-intro {
    margin-bottom: 1rem;
}

.declaration-intro h3 {
    font-size: 1.375rem;
    margin: 0 0 0.5rem;
    color: var(--primary-color);
}

.declaration-intro p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.declaration-subtitle {
    font-size: 1.25rem;
    margin: 1rem 0 0.5rem;
    color: var(--primary-color);
}

.declaration-impact-intro {
    font-size: 1rem;
    margin: 0 0 0.5rem;
    color: var(--text-light);
}

.declaration-list,
.impact-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.declaration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.declaration-list li,
.impact-list li {
    padding: 0.75rem 1rem;
    background: white;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.declaration-list li strong {
    color: var(--primary-color);
    font-size: 1rem;
}

.declaration-conclusion {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
    padding: 1rem 1.25rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Demands Section */
.demands-section {
    background: white;
}

.demands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.demand-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.demand-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.demand-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.demand-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.demand-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.demands-cta {
    text-align: center;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.demands-cta h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.demands-cta p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* ==================================== */
/* Stories Section -- dark, somber       */
/* ==================================== */
.stories-section {
    background: var(--bg-stories-section);
    color: #e2e8f0;
}

.stories-section h2 {
    color: #e2e8f0;
}

.stories-section .section-intro {
    color: #a0aec0;
}

.stories-scroll-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0 -20px 2rem;
    padding: 0 20px 0.5rem;
    -webkit-overflow-scrolling: touch;
}

.stories-scroll-wrap::-webkit-scrollbar {
    height: 6px;
}

.stories-scroll-wrap::-webkit-scrollbar-track {
    background: #1a202c;
    border-radius: 3px;
}

.stories-scroll-wrap::-webkit-scrollbar-thumb {
    background: #4a5568;
    border-radius: 3px;
}

.stories-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.25rem;
    min-width: min-content;
}

.story-card {
    flex: 0 0 auto;
    width: 310px;
    min-height: 260px;
    background: var(--bg-stories-card);
    color: #e2e8f0;
    padding: 1.25rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border-left: 4px solid var(--accent-color);
    display: flex;
    flex-direction: column;
}

.story-delay {
    background: var(--bg-stories-delay);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.story-delay-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--accent-color);
    flex-shrink: 0;
}

.story-delay-labels {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.story-delay-label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #e2e8f0;
    line-height: 1.2;
}

.story-delay-sub {
    display: block;
    font-size: 0.75rem;
    color: #a0aec0;
    margin-top: 0.125rem;
}

.story-delay-placeholder {
    flex-direction: row;
}

.story-delay-placeholder .story-delay-number {
    font-size: 1.5rem;
}

.story-delay-placeholder .story-delay-labels .story-delay-label {
    font-size: 0.9375rem;
}

.story-header {
    margin-bottom: 0.5rem;
}

.story-meta-line {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #e2e8f0;
    line-height: 1.4;
}

.story-meta-line .story-location {
    font-weight: 700;
    color: #cbd5e0;
}

.story-teaser {
    font-size: 0.9375rem;
    line-height: 1.55;
    color: #cbd5e0;
    margin: 0 0 0.75rem;
    flex-grow: 1;
}

.story-content-full {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.story-content-full[hidden] {
    display: none !important;
}

.story-content-full p {
    margin-bottom: 1rem;
}

.story-content-full .story-quote {
    font-style: italic;
    padding: 1rem 1.25rem;
    background: var(--bg-light);
    color: var(--text-dark);
    border-left: 4px solid var(--accent-color);
    margin: 1rem 0;
    font-size: 1.0625rem;
}

.story-content-full .story-timeline {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.875rem;
}

.story-toggle {
    margin-top: auto;
    padding: 0.4rem 0.875rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
    background: transparent;
    border: 1px solid var(--accent-color);
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    align-self: flex-start;
}

.story-toggle:hover {
    background: var(--accent-color);
    color: white;
}

.story-template {
    border-left-color: var(--secondary-color);
}

.story-placeholder {
    background: var(--bg-stories-delay);
    border-left-color: #718096;
    text-align: center;
    color: #e2e8f0;
}

.story-placeholder h3 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    color: #e2e8f0;
}

.story-placeholder p {
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    color: #a0aec0;
}

.story-placeholder .btn-secondary {
    color: #e2e8f0;
    border-color: #718096;
}

.story-placeholder .btn-secondary:hover {
    background: #718096;
    color: white;
    border-color: #718096;
}

.stories-callout {
    background: var(--bg-stories-delay);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    color: #e2e8f0;
}

.stories-callout h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--accent-color);
}

.stories-callout p {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 0.75rem;
    color: #cbd5e0;
}

/* Story modal */
body.story-modal-open {
    overflow: hidden;
}

.story-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    box-sizing: border-box;
}

.story-modal[hidden] {
    display: none;
}

.story-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

.story-modal-box {
    position: relative;
    width: 100%;
    max-width: 780px;
    max-height: calc(100vh - 3rem);
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.story-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    font-size: 1.75rem;
    line-height: 1;
    color: var(--text-light);
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.story-modal-close:hover {
    color: var(--text-dark);
    background: var(--bg-light);
}

.story-modal-header {
    padding: 1.5rem 3rem 0 1.5rem;
    flex-shrink: 0;
    border-bottom: 1px solid var(--border-color);
}

.story-modal-title {
    font-size: 1.5rem;
    margin: 0 0 0.25rem;
    color: var(--primary-color);
}

.story-modal-location {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin: 0 0 1rem;
}

.story-modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.story-modal-body p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.story-modal-body .story-quote {
    font-style: italic;
    padding: 1rem 1.25rem;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    margin: 1rem 0;
    font-size: 1.0625rem;
}

.story-modal-body .story-timeline {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Event Section */
.event-section {
    background: white;
}

.event-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.event-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.event-banner h3 {
    font-size: 1.75rem;
    margin-bottom: 0.375rem;
}

.event-tagline {
    font-size: 1.125rem;
    opacity: 0.95;
}

.event-info {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.event-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.event-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    font-size: 1.75rem;
}

.event-info-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.375rem;
    color: var(--text-dark);
}

.event-info-item p {
    color: var(--text-light);
    margin-bottom: 0.25rem;
    font-size: 0.9375rem;
}

.info-note {
    font-size: 0.875rem;
    font-style: italic;
}

.event-info-item ul {
    list-style-position: inside;
    color: var(--text-light);
    font-size: 0.9375rem;
}

.event-agenda {
    margin-top: 1.5rem;
}

.event-agenda h4 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.agenda-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 6px;
}

.agenda-time {
    font-weight: 700;
    color: var(--accent-color);
    min-width: 75px;
    font-size: 0.9375rem;
}

.agenda-content strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.9375rem;
}

.agenda-content p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.event-card {
    background: var(--bg-light);
    padding: 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    border-top: 3px solid var(--primary-color);
}

.event-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.event-card ul {
    list-style-position: inside;
    color: var(--text-light);
    font-size: 0.9375rem;
}

.event-card li {
    margin-bottom: 0.375rem;
}

.event-card .btn {
    margin-top: 0.75rem;
    width: 100%;
    text-align: center;
}

.event-cta-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.event-cta-box h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.event-cta-box p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.event-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Photos Section */
.photos-section {
    background: var(--bg-light);
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.photo-placeholder {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.photo-placeholder img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.photo-placeholder p {
    padding: 0.75rem;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9375rem;
}

.photo-empty {
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
}

.photo-empty span {
    font-size: 3.5rem;
    margin-bottom: 0.75rem;
    opacity: 0.25;
}

.photo-note {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    font-size: 0.9375rem;
}

/* Join Section */
.join-section {
    background: white;
}

.join-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.join-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-top: 4px solid var(--secondary-color);
}

.join-card h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}

.join-card p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.join-card ul {
    list-style-position: inside;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.join-card li {
    margin-bottom: 0.375rem;
}

.join-cta-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.join-cta-box h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.join-cta-box p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.join-note {
    font-size: 0.875rem;
    color: var(--accent-color);
    font-style: italic;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 2rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--accent-color);
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 0.375rem;
    font-size: 0.9375rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.375rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
    font-size: 0.9375rem;
}

.footer-section a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.25rem;
    text-align: center;
    opacity: 0.8;
    font-size: 0.875rem;
}

.footer-note {
    font-size: 0.8125rem;
    margin-top: 0.375rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        width: 100%;
        max-width: 100%;
    }

    .hero-demands {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 1.5rem;
    }

    .slogan-en {
        font-size: 1.75rem;
    }

    .slogan-fr {
        font-size: 1rem;
    }

    .slogan-zh {
        font-size: 1.125rem;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: 0.75rem;
        justify-content: center;
    }

    .event-details-grid {
        grid-template-columns: 1fr;
    }

    .event-cta-buttons {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-main h1 {
        font-size: 1.75rem;
    }

    section h2 {
        font-size: 1.75rem;
    }

    .nav-brand {
        font-size: 1rem;
    }

    .nav-menu {
        font-size: 0.875rem;
    }

    .demands-grid {
        grid-template-columns: 1fr;
    }

    .photos-grid {
        grid-template-columns: 1fr;
    }

    .join-grid {
        grid-template-columns: 1fr;
    }
}

/* =================================== */
/* Print stylesheet: hero as A4 flyer  */
/* =================================== */
@media print {
    /* Hide everything except hero */
    .navbar,
    #declaration,
    #demands,
    #stories,
    #event,
    #photos,
    #join,
    .footer,
    .story-modal,
    .cta-buttons {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: white;
    }

    .hero {
        background: white !important;
        color: #000 !important;
        padding: 0;
        page-break-after: always;
    }

    .hero-image {
        display: none !important;
    }

    .hero-grid {
        grid-template-columns: 3fr 2fr;
        gap: 1.5rem;
    }

    .slogan-en {
        font-size: 22pt;
        color: #000;
    }

    .slogan-en em {
        color: #000;
        text-decoration: underline;
    }

    .slogan-fr {
        color: #333;
        font-size: 11pt;
    }

    .slogan-fr em {
        color: #333;
    }

    .slogan-zh {
        color: #000;
        font-size: 13pt;
    }

    .hero-subtitle {
        color: #333;
        font-size: 11pt;
    }

    .hero-demands {
        border-left: 2px solid #000;
        padding-left: 1.5rem;
    }

    .hero-demands-title {
        color: #000;
        font-size: 13pt;
    }

    .hero-demands-list li .demand-num {
        color: #000;
    }

    .hero-demands-list li {
        font-size: 10pt;
    }

    .hero-event-line {
        border-top: 1px solid #666;
        color: #333;
    }

    .hero-event-line strong {
        color: #000;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }
}
