/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  color-scheme: light;
  --navy: #0f172a;
  --accent: #0ea5e9;
  --accent-dark: #0284c7;
  --accent-warm: #f59e0b;
  --gray: #475569;
  --border: #e2e8f0;
  --bg-light: #f8fafc;
  --font-heading: 'Outfit', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy);
  background-color: #fff;
  line-height: 1.65;
  font-size: 1rem;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background-color: var(--accent);
  color: #fff;
  display: inline-block;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

/* ── Site Header ──────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: none;
  transition: background 0.3s ease, border-bottom 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0.5rem;
}

.brand a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
}

.brand-logo {
  display: block;
  width: auto;
  height: 40px;
}

.brand-text {
  display: block;
  line-height: 1.2;
}

@media (max-width: 640px) {
  .brand-logo {
    height: 32px;
  }

  .brand-text {
    font-size: 0.95rem;
  }
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
}

nav a {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  color: var(--navy);
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.3rem;
  height: 2px;
  background-color: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

nav a:hover::after,
nav a:focus::after {
  transform: scaleX(1);
  transform-origin: left;
}

nav a:hover,
nav a:focus {
  background-color: rgba(14, 165, 233, 0.12);
}

nav a.active {
  background-color: var(--accent);
  color: #fff;
}

/* --- Dropdown Menu --- */
.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 50;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-menu.right {
  left: auto;
  right: 0;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  padding: 0.6rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  width: 100%;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.dropdown-menu a::after {
  display: none !important;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
}

.language-switch a {
  color: var(--navy);
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  padding: clamp(3.5rem, 6vw, 6rem) 0 3rem;
  background-color: #0f172a;
  background-image:
    radial-gradient(ellipse 80% 60% at 60% 50%, rgba(14, 165, 233, 0.12) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231e3a5f' fill-opacity='0.18'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
}

/* Animated orb */
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  top: -200px;
  right: -100px;
  animation: heroOrb 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -150px;
  left: -80px;
  animation: heroOrb 10s ease-in-out infinite alternate-reverse;
  pointer-events: none;
}

@keyframes heroOrb {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(40px, 30px) scale(1.1);
  }
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero .kicker {
  color: var(--accent);
  animation: fadeSlideUp 0.6s ease both;
}

.hero h1,
.hero h2 {
  color: #fff;
  letter-spacing: -0.02em;
  animation: fadeSlideUp 0.7s ease 0.1s both;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.85);
  animation: fadeSlideUp 0.7s ease 0.2s both;
}

.hero .lead {
  max-width: 70ch;
}

.hero p {
  color: rgba(255, 255, 255, 0.8);
}

.hero .kicker {
  color: var(--accent);
}

.hero-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeSlideUp 0.7s ease 0.3s both;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Sections ─────────────────────────────────────────────────────────────── */
.section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section.light {
  background-color: var(--bg-light);
}

/* ── Grid ─────────────────────────────────────────────────────────────────── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/* ── Cards ────────────────────────────────────────────────────────────────── */
.card {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  padding: 1.75rem;
  background-color: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(14, 165, 233, 0.3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px -8px rgba(0, 0, 0, 0.12), 0 8px 12px -4px rgba(0, 0, 0, 0.06);
  border-color: rgba(14, 165, 233, 0.15);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(14, 165, 233, 0.05));
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* ── Badges ───────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background-color: rgba(14, 165, 233, 0.15);
  color: var(--navy);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.kicker {
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* ── Typography ───────────────────────────────────────────────────────────── */
h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.lead {
  font-size: 1.05rem;
  color: var(--gray);
}

p {
  margin: 0 0 1.1rem;
  color: var(--gray);
}

ul,
ol {
  margin: 0 0 1.2rem 1.2rem;
  color: var(--gray);
}

/* ── Checklist ────────────────────────────────────────────────────────────── */
.checklist {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.checklist li {
  position: relative;
  padding-left: 0;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checklist li i {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.checklist li::before {
  content: none;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.5rem;
  border-radius: 10px;
  background-color: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.button:hover,
.button:focus {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.35), 0 0 20px rgba(14, 165, 233, 0.2);
  background-color: var(--accent-dark);
}

.button:active {
  transform: scale(0.98) translateY(0);
  box-shadow: 0 5px 15px rgba(14, 165, 233, 0.25);
}

.button.button-secondary {
  background-color: rgba(14, 165, 233, 0.12);
  color: var(--navy);
  box-shadow: none;
}

.button.button-secondary:hover,
.button.button-secondary:focus {
  background-color: rgba(14, 165, 233, 0.2);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
}

.button.button-secondary:active {
  transform: scale(0.98);
}

.button.button-sm {
  padding: 0.45rem 1rem;
  font-size: 0.875rem;
}

/* ── Filter bar ───────────────────────────────────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background-color: #fff;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.filter-btn:hover,
.filter-btn:focus {
  border-color: var(--accent);
  background-color: rgba(14, 165, 233, 0.08);
  outline: none;
}

.filter-btn.active {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ── Activity list ────────────────────────────────────────────────────────── */
.activity-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.activity-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.activity-card-image {
  width: 100%;
  height: 200px;
  background-color: var(--surface-alt);
}

.activity-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.activity-card-content {
  padding: 1.5rem;
  flex-grow: 1;
}

.date-badge {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  background-color: rgba(14, 165, 233, 0.12);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  text-transform: uppercase;
}

/* ── Table ────────────────────────────────────────────────────────────────── */
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.table th,
.table td {
  border: 1px solid var(--border);
  padding: 0.85rem;
  text-align: left;
  vertical-align: top;
}

.table thead th {
  background-color: var(--bg-light);
  font-weight: 700;
  color: var(--navy);
}

.table tbody tr:nth-child(even) {
  background-color: rgba(15, 23, 42, 0.02);
}

/* ── Contact ──────────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

label {
  font-weight: 600;
  color: var(--navy);
}

input,
textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  font: inherit;
  color: var(--navy);
  background-color: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(14, 165, 233, 0.25);
  border-color: var(--accent);
}

#form-status {
  margin-top: 1rem;
  font-weight: 600;
}

#form-status.success {
  color: #047857;
}

#form-status.error {
  color: #b91c1c;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  background-color: var(--navy);
  padding: 3rem 0 2rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-brand .footer-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand .footer-logo i {
  color: var(--accent);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 1rem;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent);
  text-decoration: none;
}

.footer-contact p {
  margin: 0 0 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-contact i {
  color: var(--accent);
  margin-top: 0.2rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact p {
    justify-content: center;
  }
}

/* ── Images ───────────────────────────────────────────────────────────────── */
img,
video {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  filter: grayscale(10%);
  transition: filter 0.3s ease;
}

img:hover,
video:hover {
  filter: grayscale(0%);
}

/* Exclude logo from grayscale */
.brand-logo {
  filter: none;
}

/* ── Responsive nav ───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    gap: 0.4rem;
  }

  nav a[data-nav] {
    padding: 0.45rem 0.75rem;
  }

  .hero-actions {
    width: 100%;
  }
}

@media print {

  .site-header,
  .site-footer,
  .language-switch,
  .hero-actions {
    display: none !important;
  }

  a::after {
    content: " (" attr(href) ")";
    font-size: 0.75rem;
  }
}

/* ── Fade-in 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);
}

/* Staggered animation delay for grid items */
.grid .fade-in:nth-child(1) {
  transition-delay: 0.05s;
}

.grid .fade-in:nth-child(2) {
  transition-delay: 0.15s;
}

.grid .fade-in:nth-child(3) {
  transition-delay: 0.25s;
}

.grid .fade-in:nth-child(4) {
  transition-delay: 0.35s;
}

.grid .fade-in:nth-child(5) {
  transition-delay: 0.45s;
}

/* ── Section action ───────────────────────────────────────────────────────── */
.section-action {
  margin-top: 2rem;
  text-align: center;
}

/* ── Contact info icons ───────────────────────────────────────────────────── */
.contact-info i {
  color: var(--accent);
  margin-right: 0.5rem;
}

/* ── Activity modal ─────────────────────────────────────────────────────────── */
.activity-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.activity-modal-overlay.open {
  display: flex;
}

.activity-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  animation: modalIn 0.25s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.activity-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray);
  line-height: 1;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}

.activity-modal-close:hover {
  background: var(--bg-light);
  color: var(--navy);
}

.activity-modal-date {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  background-color: rgba(14, 165, 233, 0.12);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  text-transform: uppercase;
}

.activity-modal h2 {
  margin-top: 0;
  font-size: 1.5rem;
}

.activity-modal-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.activity-modal-gallery img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.activity-modal-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.activity-modal-footer {
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-end;
}

/* ── Administration page ────────────────────────────────────────────────────── */
.admin-person-card {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.07);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.admin-person-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px -8px rgba(0, 0, 0, 0.10);
}

.admin-person-card .admin-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #0f172a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.admin-person-card .admin-info h3 {
  margin: 0 0 0.25rem;
}

.admin-person-card .admin-info .admin-role {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent);
  background: rgba(14, 165, 233, 0.12);
  padding: 0.15rem 0.6rem;
  border-radius: 6px;
  margin-bottom: 0.6rem;
}

.admin-person-card .admin-info p {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
}

.admin-links {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.85rem;
  flex-wrap: wrap;
}

.admin-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.85rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(14, 165, 233, 0.1);
  color: var(--accent);
  border: 1px solid rgba(14, 165, 233, 0.2);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.admin-link-btn:hover {
  text-decoration: none;
  background: rgba(14, 165, 233, 0.18);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.admin-link-btn.linkedin {
  background: rgba(10, 102, 194, 0.08);
  color: #0a66c2;
  border-color: rgba(10, 102, 194, 0.2);
}

.admin-link-btn.linkedin:hover {
  background: rgba(10, 102, 194, 0.15);
  border-color: #0a66c2;
}

/* ── Board table ──────────────────────────────────────────────────────────── */
.board-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin-top: 1rem;
}

.board-table th,
.board-table td {
  border: 1px solid var(--border);
  padding: 0.85rem 1rem;
  text-align: left;
  vertical-align: top;
}

.board-table thead th {
  background-color: var(--bg-light);
  font-weight: 700;
  color: var(--navy);
}

.board-table tbody tr:hover {
  background-color: rgba(14, 165, 233, 0.04);
}

/* ── Partners page ────────────────────────────────────────────────────────── */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.partner-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 8px -2px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(14, 165, 233, 0.3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.partner-card:hover::before {
  transform: scaleX(1);
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 28px -8px rgba(0, 0, 0, 0.10);
  border-color: rgba(14, 165, 233, 0.2);
}

.partner-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(14, 165, 233, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.6rem;
}

.partner-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.partner-card p {
  margin: 0;
  font-size: 0.92rem;
}

.partner-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: rgba(14, 165, 233, 0.1);
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
}

.partner-cta {
  margin-top: 3rem;
  padding: 2.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(14, 165, 233, 0.02));
  border: 1px solid rgba(14, 165, 233, 0.15);
  text-align: center;
}

.partner-cta h2 {
  margin-bottom: 0.75rem;
}

.partner-cta p {
  max-width: 55ch;
  margin: 0 auto 1.5rem;
}

/* ==========================================================================
   Student Cards (Öğrenciler Sayfası)
   ========================================================================== */
.students-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.student-card {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.student-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.student-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  overflow: hidden;
  flex-shrink: 0;
}

.student-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.student-card h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  color: var(--text-color);
}

.student-topic {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
}

.students-section {
  padding-bottom: 2rem;
}

.blank-state {
  text-align: center;
  padding: 4rem 2rem;
  background-color: var(--surface-color);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border-color);
  color: var(--text-light);
  margin-top: 2rem;
}

.blank-state i {
  font-size: 3rem;
  color: var(--border-color);
  margin-bottom: 1rem;
}