/* ============================================
   PAULINIANS 2002 — The One Where We Come Home
   ============================================ */

/* --- Gabriel Weiss Friends Font --- */
@font-face {
  font-family: 'Gabriel Weiss Friends';
  src: url('https://db.onlinewebfonts.com/t/0b7d8a39b62b28cf0cfe3cea90b8baa3.woff2') format('woff2'),
       url('https://db.onlinewebfonts.com/t/0b7d8a39b62b28cf0cfe3cea90b8baa3.woff') format('woff'),
       url('https://db.onlinewebfonts.com/t/0b7d8a39b62b28cf0cfe3cea90b8baa3.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Main palette */
  --white: #FFFFFF;
  --black: #1a1a1a;
  --yellow: #F5C518;
  --green: #2D5A27;
  --green-dark: #1E3D1A;
  --green-light: #3A7A32;

  /* Sub palette */
  --red: #C41E3A;
  --gold: #D4A017;
  --blue: #1E3A8A;
  --purple: #6B4C9A;

  /* Neutrals */
  --cream: #F5F0E8;
  --cream-dark: #E8E0D0;
  --gray: #6B7280;
  --gray-light: #9CA3AF;
  --newspaper: #F2EDE4;

  /* Fonts */
  --font-friends: 'Gabriel Weiss Friends', cursive;
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-pad: 5rem 0;
  --container-max: 1100px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease;
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

.nav-logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.nav-logo .logo-year {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.6rem;
  letter-spacing: 2px;
  margin-left: 0.4rem;
  background: var(--yellow);
  color: var(--black);
  padding: 0.1rem 0.5rem;
  border-radius: 3px;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--yellow);
}

.nav-cta {
  background: var(--yellow);
  color: var(--black) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 2px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
}

.btn-yellow:hover {
  background: var(--gold);
}

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

.btn-ghost:hover {
  background: var(--black);
  color: var(--white);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.25rem;
}

.btn-full {
  width: 100%;
}

/* --- Hero / Newspaper Section --- */
/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 61, 26, 0.75) 0%,
    rgba(26, 26, 26, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 800px;
}

.hero-badge-container {
  margin-bottom: 0.5rem;
}

.hero-badge {
  width: 220px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
  transition: transform 0.3s ease;
}

.hero-badge:hover {
  transform: scale(1.03);
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1.05;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  max-width: 520px;
  line-height: 1.5;
}

.hero-date {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--yellow);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* Countdown Timer */
.hero-countdown {
  display: flex;
  gap: 1.5rem;
  margin: 0.5rem 0 1rem;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
}

.countdown-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: 2px;
}

.countdown-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.25rem;
}

/* Hero CTA Buttons */
.hero-cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.btn-ghost--light {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-ghost--light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* Gallery (kept outside hero) */
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-video-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.gallery-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  transition: background 0.2s;
  pointer-events: none;
}

.gallery-video-link:hover .gallery-play-btn {
  background: rgba(0,0,0,0.8);
}

/* --- Torn Paper Dividers --- */
.torn-divider {
  height: 40px;
  position: relative;
  overflow: hidden;
}

.torn-divider::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -5%;
  right: -5%;
  height: 60px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.torn-divider--white::before {
  background: var(--cream);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.torn-divider--green::before {
  background: var(--green);
}

.torn-divider--dark::before {
  background: var(--black);
}

.torn-divider--cream::before {
  background: var(--cream);
}

.torn-divider--white {
  background: var(--green);
}

.torn-divider--green {
  background: var(--white);
}

.torn-divider--dark {
  background: var(--cream);
}

.torn-divider--cream {
  background: var(--green);
}

.torn-divider--hero-to-green {
  background: var(--green);
}

.torn-divider--hero-to-green::before {
  background: rgba(26, 26, 26, 0.85);
}

/* --- Sections --- */
.section {
  padding: var(--section-pad);
}

.section--green {
  background: var(--green);
  color: var(--white);
}

.section--white {
  background: var(--white);
  color: var(--black);
}

.section--dark {
  background: var(--black);
  color: var(--white);
}

.section--cream {
  background: var(--cream);
  color: var(--black);
}

.section-badge {
  text-align: center;
  margin-bottom: 1rem;
}

.fleur-img {
  width: 56px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
}

.section-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title--dark {
  color: var(--black);
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle--dark {
  color: var(--gray);
}

/* --- Newsfeed Section --- */
.newsfeed-list {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.newsfeed-item {
  background: var(--cream);
  border-radius: 8px;
  padding: 1.75rem 2rem;
  border-left: 4px solid var(--green);
  position: relative;
}

.newsfeed-item--pinned {
  border-left-color: var(--yellow);
  background: #FFFDF5;
}

.newsfeed-pin {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--black);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.5rem;
}

.newsfeed-date {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 0.4rem;
}

.newsfeed-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.newsfeed-image {
  margin: 1rem 0;
  max-width: 360px;
}

.newsfeed-image img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.newsfeed-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
}

.newsfeed-body strong {
  color: var(--green);
  font-weight: 600;
}

.newsfeed-meta {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--gray);
  font-style: italic;
}

.newsfeed-social {
  text-align: center;
}

.newsfeed-social-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1rem;
}

.newsfeed-social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.newsfeed-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.newsfeed-social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.newsfeed-social-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.newsfeed-social-btn--fb {
  background: #1877F2;
  color: var(--white);
}

.newsfeed-social-btn--ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
}

/* Torn divider: newsfeed (white) to about (green) */
.torn-divider--newsfeed {
  background: var(--green);
}

.torn-divider--newsfeed::before {
  background: var(--white);
}

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.about-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform 0.2s, background 0.2s;
}

.about-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.12);
}

.about-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--yellow);
}

.about-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.about-card p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.6;
}

/* Event Details inside About */
.about-event-details {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.about-event-heading {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}

.about-event-sub {
  text-align: center;
  font-size: 1rem;
  opacity: 0.75;
  margin-bottom: 2rem;
}

/* Event cards on green bg need different styling */
.about-event-details .event-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
}

.about-event-details .event-card h3 {
  color: var(--yellow);
}

.about-event-details .event-detail {
  color: var(--white);
}

.about-event-details .event-note {
  color: rgba(255,255,255,0.7);
}

.about-event-details .schedule-title {
  color: var(--yellow);
}

.about-event-details .schedule-time {
  color: var(--yellow);
}

.about-event-details .schedule-desc h4 {
  color: var(--white);
}

.about-event-details .schedule-desc p {
  color: rgba(255,255,255,0.75);
}

.about-event-details .schedule-item::before {
  background: var(--yellow);
}

.about-event-details .schedule-timeline::before {
  background: rgba(255,255,255,0.2);
}

/* --- Activities Section --- */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.activity-card {
  text-align: center;
  background: var(--cream);
  border-radius: 12px;
  padding: 2rem 1.5rem 1.5rem;
  transition: transform 0.2s;
}

.activity-card:hover {
  transform: translateY(-4px);
}

.activity-placeholder {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-light);
  background: var(--white);
  border: 2px dashed var(--gray-light);
  border-radius: 8px;
  padding: 2.5rem 1rem;
  margin-bottom: 1rem;
}

.activity-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: var(--black);
}

.activity-desc {
  font-size: 0.9rem;
  color: var(--gray-light);
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* --- Event Section --- */
.event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.event-card {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--cream);
  border-radius: 8px;
  border: 1px solid var(--cream-dark);
}

.event-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.event-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  color: var(--green);
}

.event-detail {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.event-note {
  font-size: 0.8rem;
  color: var(--gray);
  font-style: italic;
}

/* Schedule Timeline */
.schedule-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--green);
}

.schedule-timeline {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  padding-left: 120px;
}

.schedule-timeline::before {
  content: '';
  position: absolute;
  left: 108px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--green);
  opacity: 0.3;
}

.schedule-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  position: relative;
}

.schedule-item::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
}

.schedule-time {
  position: absolute;
  left: -120px;
  width: 95px;
  text-align: right;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: var(--green);
  padding-top: 2px;
}

.schedule-desc h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
}

.schedule-desc p {
  font-size: 0.9rem;
  color: var(--gray);
}

/* --- Scholarship Section --- */
.scholarship-content {
  max-width: 900px;
  margin: 0 auto;
}

.scholarship-main {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.yellow-frame {
  background: var(--yellow);
  border: 5px solid var(--gold);
  border-radius: 8px;
  padding: 2rem;
  transform: rotate(-1deg);
}

.frame-content blockquote {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--black);
  font-style: normal;
}

.frame-content blockquote em {
  font-style: italic;
  font-weight: 600;
}

.scholarship-text h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: var(--yellow);
}

.scholarship-text p {
  margin-bottom: 1rem;
  opacity: 0.9;
  line-height: 1.7;
}

.scholarship-goals {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.goal-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.goal-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}

.goal-item h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
  color: var(--yellow);
}

.goal-item p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}

.scholarship-cta {
  text-align: center;
  margin-top: 3rem;
}

/* --- Fundraising Section --- */
.fundraising-content {
  max-width: 900px;
  margin: 0 auto;
}

.fundraising-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.fundraising-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.2s, background 0.2s;
}

.fundraising-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.1);
}

.fundraising-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.fundraising-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  color: var(--yellow);
}

.fundraising-card p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.6;
}

.merch-badge {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.3rem 1rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--yellow);
  border-radius: 20px;
}

.fundraising-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.fundraising-note {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 2px;
  opacity: 0.5;
  text-transform: uppercase;
}

/* --- Outreach Section --- */
.outreach-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.outreach-tab {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.6rem 1.8rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: all 0.2s;
}

.outreach-tab:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.outreach-tab.active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

.outreach-panel {
  display: none;
  max-width: 900px;
  margin: 0 auto;
}

.outreach-panel.active {
  display: block;
}

.outreach-panel-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.outreach-icon-block {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 3rem;
}

.outreach-big-icon {
  font-size: 5rem;
  line-height: 1;
}

.outreach-text h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: var(--yellow);
}

.outreach-text p {
  margin-bottom: 1rem;
  opacity: 0.9;
  line-height: 1.7;
}

.outreach-details {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.outreach-detail-item {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.outreach-detail-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
  min-width: 140px;
  flex-shrink: 0;
}

.outreach-detail-value {
  font-size: 0.95rem;
}

.outreach-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Outreach Volunteer Form */
.outreach-form-section {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.outreach-form-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}

.outreach-form-sub {
  text-align: center;
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 2rem;
}

.outreach-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.outreach-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
}

.outreach-form label {
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  opacity: 0.9;
}

.outreach-form input,
.outreach-form select,
.outreach-form textarea {
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.outreach-form input::placeholder,
.outreach-form textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

.outreach-form input:focus,
.outreach-form select:focus,
.outreach-form textarea:focus {
  outline: none;
  border-color: var(--yellow);
}

.outreach-form select option {
  background: var(--green-dark);
  color: var(--white);
}

.outreach-submit-btn {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
}

.outreach-form-status {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.95rem;
  min-height: 1.5em;
}

.outreach-form-status.success {
  color: var(--yellow);
}

.outreach-form-status.error {
  color: #ff6b6b;
}

/* Torn divider for outreach (green) to gallery (cream) */
.torn-divider--green-outreach {
  background: var(--cream);
}

.torn-divider--green-outreach::before {
  background: var(--green);
}

/* Torn divider for gallery (cream) to news (white) */
.torn-divider--cream-to-white {
  background: var(--white);
}

.torn-divider--cream-to-white::before {
  background: var(--cream);
}

/* --- Gallery Section --- */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.gallery-filter {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border: 2px solid var(--gray-light);
  border-radius: 30px;
  background: transparent;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.2s;
}

.gallery-filter:hover {
  border-color: var(--green);
  color: var(--green);
}

.gallery-filter.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.gallery-load-more-wrap {
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.gallery-load-more {
  min-width: 200px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
}

.gallery-item--wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #ccc;
  border-radius: 8px;
  transition: background 0.2s;
}

.gallery-placeholder:hover {
  background: #ddd6c8;
}

.gallery-placeholder span {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--gray);
  text-transform: uppercase;
}

.gallery-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray);
  font-style: italic;
}

/* --- RSVP Section --- */
.rsvp-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

.rsvp-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--yellow);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='white' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--green-dark);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
}

/* RSVP Sidebar */
.rsvp-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rsvp-info-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 1.5rem;
}

.rsvp-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: background 0.2s;
}

.social-link:hover {
  background: rgba(255,255,255,0.1);
}

.social-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.contact-email {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: var(--yellow);
  margin-top: 0.5rem;
}

.contact-note {
  font-size: 0.75rem;
  opacity: 0.5;
  font-style: italic;
}

.rsvp-counter {
  text-align: center;
  background: var(--yellow);
  border-radius: 8px;
  padding: 2rem;
  color: var(--black);
}

.counter-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: 2px;
}

.counter-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* --- Footer --- */
.footer {
  background: var(--cream);
  color: var(--black);
  text-align: center;
  padding: 3rem 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  margin: 0 auto;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--gray);
}

/* --- RSVP Success Message --- */
.rsvp-success-msg {
  text-align: center;
  padding: 1.5rem;
  margin-top: 1rem;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
}

.rsvp-success-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.rsvp-success-text {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* --- Newsfeed Empty State --- */
.newsfeed-empty {
  text-align: center;
  padding: 3rem 1rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--gray);
}

/* --- Loading Skeletons --- */
@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.newsfeed-skeleton {
  background: var(--cream);
  border-radius: 8px;
  padding: 1.75rem 2rem;
  border-left: 4px solid var(--cream-dark);
  margin-bottom: 1.5rem;
}

.skeleton-line {
  height: 14px;
  background: linear-gradient(90deg, var(--cream-dark) 25%, #e8dfd0 50%, var(--cream-dark) 75%);
  background-size: 400px 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.skeleton-line--title {
  height: 20px;
  width: 60%;
  margin-bottom: 1rem;
}

.gallery-skeleton {
  aspect-ratio: 1;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--cream-dark) 25%, #e8dfd0 50%, var(--cream-dark) 75%);
  background-size: 400px 100%;
  animation: shimmer 1.5s infinite;
}

/* --- Gallery Caption --- */
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.75rem;
  background: rgba(0,0,0,0.6);
  color: var(--white);
  font-size: 0.8rem;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  border-radius: 0 0 8px 8px;
  opacity: 0;
  transition: opacity 0.2s;
}

.gallery-item {
  position: relative;
  cursor: pointer;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

/* --- Lightbox --- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}

.lightbox-overlay.active {
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  opacity: 0.7;
  transition: opacity 0.2s, background 0.2s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
  background: rgba(255,255,255,0.25);
}

.lightbox-prev {
  left: -60px;
}

.lightbox-next {
  right: -60px;
}

.lightbox-caption {
  margin-top: 1rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 1.5px;
  opacity: 0.8;
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */

/* Tablet */
@media (max-width: 900px) {
  :root {
    --section-pad: 3.5rem 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .event-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .scholarship-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .fundraising-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .outreach-panel-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .outreach-icon-block {
    padding: 2rem;
    max-width: 200px;
    margin: 0 auto;
  }

  .rsvp-content {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item--wide {
    grid-column: span 2;
  }

  .hero-headline {
    font-size: 3rem;
  }

  .hero-countdown {
    gap: 1rem;
  }

  .countdown-number {
    font-size: 2.2rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --section-pad: 2.5rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  /* Nav */
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .nav-logo-img {
    height: 22px;
  }

  .nav-logo .logo-year {
    font-size: 1.3rem;
    padding: 0.05rem 0.4rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 10;
    flex-shrink: 0;
  }

  .nav-logo {
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Section titles */
  .section-title {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  /* Hero */
  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding: 5rem 1rem 3rem;
  }

  .hero-headline {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }

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

  .hero-date {
    font-size: 1.3rem;
  }

  .hero-badge {
    width: 160px;
  }

  .hero-countdown {
    gap: 0.75rem;
  }

  .countdown-unit {
    min-width: 55px;
  }

  .countdown-number {
    font-size: 1.8rem;
  }

  .countdown-label {
    font-size: 0.65rem;
  }

  .hero-cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }

  .btn-large {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
  }

  /* Newsfeed */
  .newsfeed-item {
    padding: 1.25rem 1rem;
  }

  .newsfeed-title {
    font-size: 1.2rem;
  }

  .newsfeed-image {
    max-width: 100%;
  }

  .newsfeed-social-links {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .newsfeed-social-btn {
    width: 100%;
    max-width: 240px;
    justify-content: center;
  }

  /* About cards */
  .about-card {
    padding: 1.5rem 1rem;
  }

  .about-card h3 {
    font-size: 1.3rem;
  }

  /* Event */
  .event-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .activities-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .about-event-details {
    margin-top: 2.5rem;
    padding-top: 2rem;
  }

  .about-event-heading {
    font-size: 1.8rem;
  }

  .event-card {
    padding: 1.25rem 0.75rem;
  }

  .event-card h3 {
    font-size: 1rem;
  }

  .event-detail {
    font-size: 1.2rem;
  }

  .event-note {
    font-size: 0.75rem;
  }

  /* Schedule timeline */
  .schedule-title {
    font-size: 1.4rem;
  }

  .schedule-timeline {
    padding-left: 0;
  }

  .schedule-timeline::before {
    display: none;
  }

  .schedule-item {
    flex-direction: column;
    gap: 0.25rem;
    padding-left: 1rem;
    border-left: 2px solid var(--green);
    margin-bottom: 1.5rem;
  }

  .schedule-item::before {
    left: -6px;
    top: 4px;
    width: 8px;
    height: 8px;
  }

  .schedule-time {
    position: static;
    width: auto;
    text-align: left;
    font-size: 0.9rem;
  }

  .schedule-desc h4 {
    font-size: 1rem;
  }

  .schedule-desc p {
    font-size: 0.85rem;
  }

  /* Fundraising */
  .fundraising-card {
    padding: 1.5rem 1rem;
  }

  .fundraising-icon {
    font-size: 2rem;
  }

  .fundraising-card h3 {
    font-size: 1.2rem;
  }

  /* Outreach */
  .outreach-tabs {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .outreach-tab {
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
  }

  .outreach-icon-block {
    padding: 1.5rem;
    max-width: 140px;
    margin: 0 auto;
  }

  .outreach-big-icon {
    font-size: 3.5rem;
  }

  .outreach-form .form-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .outreach-form-title {
    font-size: 1.6rem;
  }

  .outreach-text h3 {
    font-size: 1.4rem;
  }

  .outreach-detail-item {
    flex-direction: column;
    gap: 0.2rem;
  }

  .outreach-detail-label {
    min-width: unset;
    font-size: 0.75rem;
  }

  .yellow-frame {
    padding: 1.25rem;
    transform: rotate(0deg);
  }

  .frame-content blockquote {
    font-size: 0.9rem;
  }

  .scholarship-goals {
    margin-top: 1.5rem;
    gap: 1rem;
  }

  .goal-item h4 {
    font-size: 1rem;
  }

  .goal-item p {
    font-size: 0.85rem;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .gallery-item--wide {
    grid-column: span 2;
  }

  .gallery-video-wrap {
    min-height: 160px;
  }

  .gallery-video {
    min-height: 160px;
  }

  /* Gallery captions always visible on mobile (no hover) */
  .gallery-caption {
    opacity: 1;
    font-size: 0.7rem;
    padding: 0.35rem 0.5rem;
  }

  .gallery-note {
    font-size: 0.8rem;
  }

  .gallery-filter {
    font-size: 0.8rem;
    padding: 0.4rem 0.9rem;
  }

  /* RSVP */
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.65rem 0.85rem;
    font-size: 1rem;
  }

  .rsvp-counter {
    padding: 1.5rem;
  }

  .counter-number {
    font-size: 2.8rem;
  }

  /* Lightbox */
  .lightbox-prev,
  .lightbox-next {
    font-size: 2rem;
    padding: 0.4rem 0.75rem;
  }

  .lightbox-prev {
    left: 5px;
  }

  .lightbox-next {
    right: 5px;
  }

  .lightbox-close {
    top: -35px;
    font-size: 1.8rem;
  }

  /* Footer */
  .footer {
    padding: 2rem 1rem;
  }

  .footer-logo-img {
    height: 60px;
  }

  /* Torn dividers thinner on mobile */
  .torn-divider {
    height: 25px;
  }
}

/* Very small screens */
@media (max-width: 380px) {
  .hero-headline {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }

  .hero-badge {
    width: 130px;
  }

  .countdown-number {
    font-size: 1.5rem;
  }

  .countdown-unit {
    min-width: 48px;
  }

  .section-title {
    font-size: 1.7rem;
  }

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

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

  .nav-logo-img {
    height: 18px;
  }

  .nav-logo .logo-year {
    font-size: 1.1rem;
  }
}
