/* AIESEC Iftar — styles.css (Zeina color palette) */

/* Zeina palette: red, gold, blue, green, cream, orange */
:root {
  --zeina-red: #B71C1C;
  --zeina-red-dark: #7F0000;
  --zeina-gold: #FFC107;
  --zeina-gold-light: #FFD54F;
  --zeina-blue: #283593;
  --zeina-blue-dark: #1A237E;
  --zeina-green: #2E7D32;
  --zeina-cream: #FFF8E1;
  --zeina-orange: #D84315;
  --zeina-bg: #0c0809;
  --zeina-bg-mid: #1a0f14;
  --zeina-bg-warm: #180a0c;
}

/* Tailwind-style utilities (replaces CDN in production) */
.font-sans { font-family: 'Inter', sans-serif; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.text-white { color: #fff; }
.fixed { position: fixed; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.right-4 { right: 1rem; }
.z-50 { z-index: 50; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.shrink-0 { flex-shrink: 0; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.gap-10 { gap: 2.5rem; }
.w-px { width: 1px; }
.h-20 { height: 5rem; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.h-7 { height: 1.75rem; }
.w-auto { width: auto; }
.object-contain { object-fit: contain; }
.rounded-full { border-radius: 9999px; }
.overflow-hidden { overflow: hidden; }
.origin-top { transform-origin: top; }
.bg-white\\/15 { background-color: rgba(255,255,255,0.15); }
.bg-white\\/70 { background-color: rgba(255,255,255,0.7); }
.top-1\\/2 { top: 50%; }
.-translate-y-1\\/2 { transform: translateY(-50%); }
.hidden { display: none; }
@media (min-width: 768px) {
  .md\\:px-12 { padding-left: 3rem; padding-right: 3rem; }
  .md\\:flex { display: flex; }
}
.nav-bar.fixed { top: 0; left: 0; right: 0; }
#scroll-progress.fixed { top: 50%; transform: translateY(-50%); }

html {
  scroll-behavior: smooth;
  margin: 0;
  background: #000;
}
  margin: 0;
  background: #000;
}

body.preloader-active {
  overflow: hidden;
}

/* Page preloader (hidden when hero is ready) */
.page-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-preloader--done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-preloader-inner {
  text-align: center;
}

.page-preloader-spinner {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.75rem;
  border: 3px solid rgba(255,193,7,0.2);
  border-top-color: var(--zeina-gold);
  border-radius: 50%;
  animation: preloader-spin 0.8s linear infinite;
}

@keyframes preloader-spin {
  to { transform: rotate(360deg); }
}

.page-preloader-text {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255,248,225,0.7);
}

.lantern-bg {
  background: var(--zeina-bg);
  min-height: 100vh;
}

.lantern-bg::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, var(--zeina-bg-warm) 0%, var(--zeina-bg-mid) 50%, #000 100%);
  opacity: 0.97;
  pointer-events: none;
  z-index: 0;
}

.lantern-bg::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, transparent 0%, rgba(127,0,0,0.15) 40%, rgba(26,35,126,0.25) 100%);
  pointer-events: none;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

/* Ramadan background only below hero: black at top blending into dimmed photo */
.content-below-hero {
  position: relative;
}

.content-below-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.92) 12%,
    rgba(0,0,0,0.78) 28%,
    rgba(0,0,0,0.6) 50%,
    rgba(0,0,0,0.48) 100%
  ), url("Assets/background ramadan.png");
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.content-below-hero > * {
  position: relative;
  z-index: 1;
}

/* ─── Scroll driver + canvas (do not change structure) ─────────────────────── */
#scroll-driver {
  position: relative;
  height: 300vh;
  z-index: 1;
  contain: layout style paint;
}

#canvas-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

#canvas-sticky canvas {
  display: block;
  transform: translateZ(0);
}

.watermark-cover {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(
    to top,
    #000 0%,
    rgba(0,0,0,1) 12%,
    rgba(0,0,0,0.4) 35%,
    rgba(0,0,0,0.25) 55%,
    rgba(0,0,0,0.12) 75%,
    transparent 100%
  );
  pointer-events: none;
}

/* ─── Nav ─────────────────────────────────────────────────────────────────── */
.nav-bar {
  background: rgba(26,15,20,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,193,7,0.15);
}

.nav-logos {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo {
  height: 1.75rem;
  width: auto;
  max-height: 2rem;
  object-fit: contain;
  display: block;
}

.nav-logo-sep {
  color: var(--zeina-gold);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1;
  opacity: 0.9;
}

.nav-logo-awan {
  height: 2.5rem;
  max-height: 2.75rem;
}

.nav-link {
  font-size: 0.8125rem;
  color: rgba(255,248,225,0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--zeina-gold-light);
}

.nav-cta {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #1a0f14;
  background: var(--zeina-gold);
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  background: var(--zeina-gold-light);
  box-shadow: 0 0 20px rgba(255,193,7,0.4);
}

/* ─── Sections ────────────────────────────────────────────────────────────── */
.page-section {
  position: relative;
  z-index: 1;
  background: transparent;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
}

@media (min-width: 768px) {
  .page-section {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.section-inner {
  max-width: 56rem;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--zeina-cream);
}

.section-lead {
  font-size: 0.9375rem;
  color: rgba(255,248,225,0.6);
  text-align: center;
  max-width: 28rem;
  margin: 0 auto 1.75rem;
  line-height: 1.5;
}

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

@media (min-width: 768px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.card {
  padding: 1.5rem 1.25rem;
  background: rgba(12,8,9,0.9);
  border-radius: 12px;
  border: 1px solid rgba(255,193,7,0.35);
  box-shadow: 0 0 30px rgba(0,0,0,0.2);
}

.card-title {
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
  color: var(--zeina-cream);
}

.card-text {
  font-size: 0.8125rem;
  color: rgba(255,248,225,0.55);
  line-height: 1.5;
}

/* ─── Memorial section ───────────────────────────────────────────────────────── */
.memorial-section {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .memorial-section {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.memorial-section .container {
  max-width: 52rem;
  margin: 0 auto;
}

.memorial-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  padding: 2.5rem 1.25rem;
  background: rgba(12,8,9,0.92);
  border-radius: 20px;
  border: 1px solid rgba(255,193,7,0.4);
  box-shadow: 0 0 50px rgba(255,193,7,0.08), 0 0 0 1px rgba(0,0,0,0.2);
}

@media (min-width: 640px) {
  .memorial-content {
    flex-direction: row;
    gap: 2.5rem;
    padding: 3rem 2.5rem;
  }
}

@media (min-width: 900px) {
  .memorial-content {
    padding: 3.5rem 3rem;
    gap: 3rem;
  }
}

.memorial-image-container {
  flex-shrink: 0;
}

.memorial-image {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255,193,7,0.5);
  box-shadow: 0 0 30px rgba(255,193,7,0.15);
}

@media (min-width: 640px) {
  .memorial-image {
    width: 220px;
    height: 220px;
    border-width: 4px;
  }
}

@media (min-width: 900px) {
  .memorial-image {
    width: 260px;
    height: 260px;
  }
}

.memorial-text {
  text-align: center;
  flex: 1;
  min-width: 0;
}

@media (min-width: 640px) {
  .memorial-text {
    text-align: left;
  }
}

.memorial-text h2 {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--zeina-gold);
  margin: 0 0 0.35rem 0;
}

.memorial-text h1 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--zeina-cream);
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.memorial-dates {
  font-size: 1.0625rem;
  color: rgba(255,248,225,0.65);
  margin: 0 0 1rem 0;
}

.memorial-message {
  font-size: 1.0625rem;
  color: rgba(255,248,225,0.85);
  line-height: 1.65;
  margin: 0;
  max-width: 36rem;
}

@media (min-width: 640px) {
  .memorial-message {
    margin-left: 0;
  }
}

/* ─── CTA block ───────────────────────────────────────────────────────────── */
.cta-block {
  max-width: 32rem;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  text-align: center;
  background: rgba(12,8,9,0.88);
  border-radius: 16px;
  border: 1px solid rgba(255,193,7,0.35);
}

@media (min-width: 768px) {
  .cta-block {
    padding: 3rem 2rem;
  }
}

.cta-title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: var(--zeina-cream);
}

.cta-text {
  font-size: 0.875rem;
  color: rgba(255,248,225,0.65);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* Event details (date + venue) */
.event-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  justify-content: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,193,7,0.25);
}

.event-detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.event-detail-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--zeina-gold);
}

.event-detail-value {
  font-size: 0.9375rem;
  color: var(--zeina-cream);
}

.event-detail-link {
  font-size: 0.9375rem;
  color: var(--zeina-gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,193,7,0.5);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.event-detail-link:hover {
  color: var(--zeina-gold);
  border-bottom-color: var(--zeina-gold);
}

.cta-block-ramadan {
  background: rgba(12,8,9,0.9);
  border: 1px solid rgba(255,193,7,0.4);
  box-shadow: 0 0 40px rgba(255,193,7,0.08), 0 0 0 1px rgba(0,0,0,0.15);
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a0f14;
  background: var(--zeina-gold);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  background: var(--zeina-gold-light);
  box-shadow: 0 0 28px rgba(255,193,7,0.35);
}

/* ─── Registration form ───────────────────────────────────────────────────── */
.registration-form {
  max-width: 36rem;
  margin: 1.5rem auto 0;
}

.registration-form-ramadan {
  padding: 2rem 1.5rem;
  background: rgba(12,8,9,0.9);
  border: 1px solid rgba(255,193,7,0.35);
  border-radius: 20px;
  box-shadow: 0 0 50px rgba(255,193,7,0.06), inset 0 1px 0 rgba(255,248,225,0.05);
}

@media (min-width: 768px) {
  .registration-form-ramadan {
    padding: 2.5rem 2rem;
  }
}

/* Mobile: all form fields same width as LC (no overflow, consistent sizing) */
@media (max-width: 639px) {
  .registration-form .form-field,
  .registration-form .form-grid {
    min-width: 0;
  }
  .registration-form .form-field input[type="text"],
  .registration-form .form-field input[type="tel"],
  .registration-form .form-field input[type="email"],
  .registration-form .form-field select,
  .registration-form .form-field input[type="file"] {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
}

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

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.375rem;
}

.registration-form-ramadan .form-field label {
  color: var(--zeina-cream);
}

.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"],
.form-field select {
  box-sizing: border-box;
  width: 100%;
  min-height: 2.5rem;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25;
  color: #fff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.registration-form-ramadan .form-field input[type="text"],
.registration-form-ramadan .form-field input[type="tel"],
.registration-form-ramadan .form-field input[type="email"],
.registration-form-ramadan .form-field select {
  background: rgba(0,0,0,0.55);
  border-color: rgba(255,193,7,0.25);
}

/* Validation: error state (custom errors, not browser default) */
.form-field.has-error input:not([type="file"]),
.form-field.has-error select {
  border-color: #e53935;
  box-shadow: 0 0 0 2px rgba(229,57,53,0.25);
}

.registration-form-ramadan .form-field.has-error input:not([type="file"]),
.registration-form-ramadan .form-field.has-error select {
  border-color: #ef5350;
  background: rgba(0,0,0,0.7);
  box-shadow: 0 0 0 2px rgba(239,83,80,0.3);
}

.form-field.has-error input[type="file"] {
  border-color: #e53935;
}

.form-error-message {
  display: block;
  font-size: 0.75rem;
  color: #ef5350;
  margin-top: 0.25rem;
  line-height: 1.3;
}

.form-errors {
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  background: rgba(229,57,53,0.12);
  border: 1px solid rgba(229,57,53,0.4);
  border-radius: 10px;
  font-size: 0.8125rem;
  color: #ffcdd2;
  line-height: 1.5;
}

.form-errors:not([hidden]) {
  display: block;
}

.form-errors-title {
  margin: 0 0 0.35em 0;
  font-weight: 600;
  color: #ffcdd2;
}

.form-errors ul {
  margin: 0;
  padding-left: 1.25rem;
}

.form-success {
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  background: rgba(46,125,50,0.2);
  border: 1px solid rgba(46,125,50,0.5);
  border-radius: 10px;
  font-size: 0.875rem;
  color: #c8e6c9;
  line-height: 1.5;
}

.form-success:not([hidden]) {
  display: block;
}

/* Submit button loading state */
.registration-submit {
  position: relative;
}

.registration-submit .registration-submit-loading {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.registration-submit.loading .registration-submit-text {
  visibility: hidden;
}

.registration-submit.loading .registration-submit-loading {
  display: flex;
  position: absolute;
  inset: 0;
}

.registration-submit:not(.loading) .registration-submit-loading {
  display: none;
}

.registration-submit.loading {
  pointer-events: none;
  opacity: 0.9;
}

.spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(26,15,20,0.3);
  border-top-color: #1a0f14;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-field input::placeholder {
  color: rgba(255,255,255,0.35);
}

.form-field input:focus,
.form-field select:focus {
  border-color: rgba(255,193,7,0.6);
  background: rgba(255,248,225,0.06);
}

.registration-form-ramadan .form-field input:focus,
.registration-form-ramadan .form-field select:focus {
  border-color: var(--zeina-gold);
  background: rgba(0,0,0,0.7);
  box-shadow: 0 0 0 3px rgba(255,193,7,0.2);
}

.form-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%23FFC107' stroke-width='2'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}

.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"] {
  height: 2.5rem;
}

.form-field select {
  height: 2.5rem;
}

.form-field input[type="file"] {
  box-sizing: border-box;
  width: 100%;
  padding: 0.5rem 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  background: transparent;
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: 8px;
  cursor: pointer;
}

.registration-form-ramadan .form-field input[type="file"] {
  border-color: rgba(255,193,7,0.35);
  color: rgba(255,248,225,0.85);
}

.form-field input[type="file"]::file-selector-button {
  margin-right: 0.75rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  color: #1a0f14;
  background: var(--zeina-gold);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.registration-form-ramadan .form-field input[type="file"]::file-selector-button {
  background: var(--zeina-gold);
  color: #1a0f14;
}

.form-field-optional label {
  color: rgba(255,255,255,0.55);
}

.form-field-optional label::after {
  content: " (optional)";
  font-weight: 400;
  color: rgba(255,255,255,0.4);
}

.registration-submit {
  margin-top: 1.5rem;
  width: 100%;
  cursor: pointer;
  border: 0;
}

.registration-form-ramadan .registration-submit {
  background: var(--zeina-gold);
  color: #1a0f14;
  box-shadow: 0 4px 20px rgba(255,193,7,0.25);
  font-weight: 600;
}

.registration-form-ramadan .registration-submit:hover {
  background: var(--zeina-gold-light);
  box-shadow: 0 6px 28px rgba(255,193,7,0.35);
}

/* Form ready state: all required fields filled → green outline (optional field disregarded) */
.registration-form-ramadan.form-ready {
  border-color: rgba(46,125,50,0.7);
  box-shadow: 0 0 50px rgba(46,125,50,0.12), 0 0 0 2px rgba(46,125,50,0.35), inset 0 1px 0 rgba(255,248,225,0.05);
}

.registration-form-ramadan.form-ready .registration-submit:not(.loading) {
  background: var(--zeina-green);
  box-shadow: 0 4px 20px rgba(46,125,50,0.35);
}

.registration-form-ramadan.form-ready .registration-submit:not(.loading):hover {
  background: #388e3c;
  box-shadow: 0 6px 28px rgba(46,125,50,0.45);
}

/* File field with file selected → green outline */
.form-field.has-file input[type="file"] {
  border-color: var(--zeina-green);
  box-shadow: 0 0 0 2px rgba(46,125,50,0.3);
}

.registration-form-ramadan .form-field.has-file input[type="file"] {
  border-color: var(--zeina-green);
  box-shadow: 0 0 0 2px rgba(46,125,50,0.35);
}

/* ─── Thank you page (same bg as content-below-hero) ───────────────────────── */
.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.thank-you-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-inner {
  max-width: 28rem;
  margin: 0 auto;
  width: 100%;
}

.thank-you-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(12,8,9,0.9);
  border: 1px solid rgba(255,193,7,0.35);
  border-radius: 20px;
  box-shadow: 0 0 50px rgba(255,193,7,0.06), inset 0 1px 0 rgba(255,248,225,0.05);
}

.thank-you-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem 0;
  color: var(--zeina-cream);
}

.thank-you-lead {
  font-size: 1rem;
  color: rgba(255,248,225,0.8);
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

.thank-you-detail {
  font-size: 0.875rem;
  color: var(--zeina-gold);
  margin: 0 0 1.5rem 0;
}

.thank-you-cta {
  display: inline-block;
  text-decoration: none;
  margin-top: 0.5rem;
}

/* ─── Footer (matches nav bar: clear black) ─────────────────────────────────── */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 1rem 1.5rem;
  text-align: center;
  background: #0a0a0a;
  border-top: 1px solid rgba(255,193,7,0.15);
}

.footer-text {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.75);
}

.footer-link {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-link:hover {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.5);
}
