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

:root {
  --bg:         #ffffff;
  --bg-2:       #f4f6f9;
  --bg-3:       #eef0f5;
  --surface:    #ffffff;
  --surface-2:  #f4f6f9;
  --border:     #dde2eb;
  --border-2:   #c4cad7;
  --text:       #1a1f2e;
  --text-muted: #5a6478;
  --text-dim:   #9aa2b4;
  --accent:     #003DA5;   /* ver.di Blau */
  --accent-2:   #0050cc;
  --green:      #1a7f3c;
  --red:        #E31E24;   /* ver.di Rot */
  --yellow:     #d97706;
  /* PG Queer Rainbow */
  --r1: #e11d48; --r2: #f97316; --r3: #eab308;
  --r4: #22c55e; --r5: #3b82f6; --r6: #a855f7;
  --radius:    8px;
  --radius-lg: 12px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== Layout ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.page-content { padding-top: 72px; min-height: 100vh; }

/* ===== Navbar ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #ffffff;
  border-bottom: 3px solid var(--accent);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { display: none; }
.logo-verdi { font-size: 22px; font-weight: 900; letter-spacing: -0.5px; color: var(--accent); line-height: 1; }
.logo-verdi .vd-dot { color: var(--red); }
.logo-sub { font-size: 11px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.04em; margin-top: 1px; display: block; }
/* Legacy .logo-text support */
.logo-text { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; color: var(--text); }
.logo-text .accent { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: clamp(12px, 1.8vw, 24px); }
.nav-links a { font-size: clamp(12px, 1.1vw, 14px); font-weight: 500; color: var(--text-muted); transition: color 0.2s; padding: 4px 0; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); border-bottom-color: var(--accent); }
.nav-btn {
  background: var(--red) !important;
  color: white !important;
  padding: clamp(6px, 0.8vw, 10px) clamp(12px, 1.5vw, 20px);
  border-radius: 5px;
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 600 !important;
  border-bottom: none !important;
  transition: opacity 0.2s !important;
  white-space: nowrap;
  box-sizing: border-box;
}
.nav-btn:hover { opacity: 0.88; }
.hamburger { display: none; background: none; border: none; color: var(--text); font-size: 22px; cursor: pointer; }

/* ===== Nav User Menu ===== */
.nav-btn-login {
  background: rgba(0,61,165,0.08) !important;
  border: 1px solid rgba(0,61,165,0.25) !important;
  color: var(--accent) !important;
  padding: 7px 18px !important;
  border-radius: 5px !important;
  font-weight: 600 !important;
  border-bottom: none !important;
  transition: all 0.2s !important;
}
.nav-btn-login:hover { background: rgba(0,61,165,0.14) !important; }

.nav-user-menu { position: relative; }
.nav-user-btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 8px; padding: 5px 14px 5px 5px;
  cursor: pointer; color: var(--text); font-family: inherit; font-size: 13px; font-weight: 600;
  transition: all 0.2s;
}
.nav-user-btn:hover { background: var(--bg-3); }
.nav-avatar {
  width: 30px; height: 30px; border-radius: 6px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.nav-uname { max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nav-chevron { font-size: 16px; color: var(--text-muted); transition: transform 0.2s; }

.user-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; min-width: 200px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 6px; z-index: 200;
  animation: dropIn 0.15s ease-out;
}
.user-dropdown.open { display: block; }
@keyframes dropIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.user-dropdown a {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: 6px; font-size: 13px; font-weight: 500;
  color: var(--text-muted); transition: all 0.15s; border-bottom: none !important;
}
.user-dropdown a:hover { background: var(--bg-2); color: var(--text); }
.dropdown-sep { height: 1px; background: var(--border); margin: 4px 8px; }
.dropdown-logout { color: var(--red) !important; }
.dropdown-logout:hover { background: rgba(227,30,36,0.06) !important; }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 6px; font-size: 15px; font-weight: 600; transition: all 0.2s; cursor: pointer; border: none; font-family: inherit; }
.btn-primary { background: var(--red); color: white; box-shadow: 0 2px 8px rgba(227,30,36,0.25); }
.btn-primary:hover { background: #c41a20; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(227,30,36,0.3); }
.btn-ghost { background: var(--bg-2); border: 1px solid var(--border); color: var(--text); }
.btn-ghost:hover { background: var(--bg-3); }
.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { background: var(--accent-2); transform: translateY(-1px); }
.btn-full { width: 100%; justify-content: center; }

/* ===== Section Headers ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge { display: inline-block; background: rgba(0,61,165,0.08); border: 1px solid rgba(0,61,165,0.2); color: var(--accent); padding: 5px 16px; border-radius: 50px; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.section-header h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; color: var(--text); }
.section-header p { color: var(--text-muted); max-width: 560px; margin: 0 auto; font-size: 16px; }

/* ===== Hero ===== */
.hero { min-height: 100vh; padding-top: 64px; display: flex; align-items: center; position: relative; overflow: hidden; background: var(--bg); }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 70% 40%, rgba(0,61,165,0.05) 0%, transparent 70%), radial-gradient(ellipse 50% 40% at 20% 80%, rgba(227,30,36,0.03) 0%, transparent 60%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px); background-size: 60px 60px; opacity: 0.5; }
.hero-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 80px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,61,165,0.08); border: 1px solid rgba(0,61,165,0.2); color: var(--accent); padding: 6px 14px; border-radius: 50px; font-size: 13px; font-weight: 500; margin-bottom: 28px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }
.hero-title { font-size: clamp(38px, 5vw, 60px); font-weight: 800; line-height: 1.1; letter-spacing: -2px; margin-bottom: 24px; color: var(--text); }
.gradient-text { color: var(--accent); }
.rainbow-text { background: linear-gradient(90deg, var(--r1), var(--r2), var(--r3), var(--r4), var(--r5), var(--r6)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 17px; color: var(--text-muted); max-width: 480px; margin-bottom: 36px; line-height: 1.8; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero Visual — Group Cards */
.hero-groups { display: flex; flex-direction: column; gap: 16px; }
.group-preview-card { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 20px 24px; display: flex; align-items: center; gap: 16px; transition: all 0.3s; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.group-preview-card:hover { border-color: rgba(0,61,165,0.3); transform: translateX(4px); box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.group-preview-card .gp-icon { font-size: 28px; width: 48px; height: 48px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.group-preview-card .gp-text strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 2px; color: var(--text); }
.group-preview-card .gp-text span { font-size: 13px; color: var(--text-muted); }
.group-preview-card .gp-arrow { margin-left: auto; color: var(--text-dim); font-size: 18px; }
.gp-queer .gp-icon { background: linear-gradient(135deg, rgba(225,29,72,0.1), rgba(168,85,247,0.1)); }
.gp-verdi .gp-icon { background: rgba(0,61,165,0.08); }

/* ===== Groups Section ===== */
.groups { padding: 100px 0; background: var(--bg-2); }
.groups-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.group-card { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 36px 32px; transition: all 0.3s; position: relative; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.group-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.group-card.queer::before { background: linear-gradient(90deg, var(--r1), var(--r2), var(--r3), var(--r4), var(--r5), var(--r6)); }
.group-card.verdi::before { background: var(--accent); }
.group-card.open::before { background: linear-gradient(90deg, var(--accent), var(--red)); }
.group-card:hover { transform: translateY(-4px); border-color: rgba(0,61,165,0.25); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.group-icon { font-size: 40px; margin-bottom: 20px; }
.group-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; color: var(--text); }
.group-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
.group-card-actions { display: flex; flex-direction: column; gap: 10px; }
.group-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--accent); transition: gap 0.2s; }
.group-link:hover { gap: 10px; }

/* ===== Events Section ===== */
.events-section { padding: 100px 0; }
.events-list { display: flex; flex-direction: column; gap: 20px; max-width: 860px; margin: 0 auto; }
.event-card { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 28px 32px; display: grid; grid-template-columns: 80px 1fr auto; gap: 24px; align-items: center; transition: all 0.3s; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.event-card:hover { border-color: rgba(0,61,165,0.25); transform: translateX(4px); box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.event-date { text-align: center; }
.event-date .day { font-size: 36px; font-weight: 800; line-height: 1; color: var(--accent); }
.event-date .month { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.event-info h4 { font-size: 18px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.event-info p { color: var(--text-muted); font-size: 14px; }
.event-info .event-meta { display: flex; gap: 16px; margin-top: 8px; }
.event-meta span { font-size: 12px; color: var(--text-dim); display: flex; align-items: center; gap: 4px; }
.event-tag { padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 600; }
.event-tag.queer { background: rgba(168,85,247,0.1); color: #7c3aed; }
.event-tag.verdi { background: rgba(0,61,165,0.1); color: var(--accent); }
.event-tag.open  { background: rgba(0,61,165,0.1); color: var(--accent); }

/* ===== About Page ===== */
.about-hero { padding: 100px 0 60px; text-align: center; }
.about-hero h1 { font-size: clamp(32px, 5vw, 54px); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 20px; color: var(--text); }
.about-hero p { font-size: 18px; color: var(--text-muted); max-width: 680px; margin: 0 auto; line-height: 1.8; }
.about-values { padding: 60px 0; background: var(--bg-2); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 28px; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.value-icon { font-size: 36px; margin-bottom: 16px; }
.value-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.value-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.about-team { padding: 80px 0; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 32px; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; background: rgba(0,61,165,0.08); }
.team-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.team-card .team-role { font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 12px; }
.team-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ===== Events Page ===== */
.events-hero { padding: 100px 0 60px; text-align: center; }
.events-hero h1 { font-size: clamp(32px, 5vw, 54px); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 20px; color: var(--text); }
.events-hero p { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.events-full { padding: 40px 0 100px; }
.events-full-list { display: flex; flex-direction: column; gap: 20px; }

/* ===== Groups Page ===== */
.groups-hero { padding: 100px 0 60px; text-align: center; }
.groups-hero h1 { font-size: clamp(32px, 5vw, 54px); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 20px; color: var(--text); }
.groups-hero p { font-size: 18px; color: var(--text-muted); max-width: 640px; margin: 0 auto; }
.groups-full { padding: 40px 0 100px; }
.groups-full-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.group-full-card { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; transition: all 0.3s; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.group-full-card:hover { transform: translateY(-4px); border-color: rgba(0,61,165,0.25); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.group-full-banner { height: 5px; }
.group-full-banner.queer   { background: linear-gradient(90deg, var(--r1), var(--r2), var(--r3), var(--r4), var(--r5), var(--r6)); }
.group-full-banner.verdi   { background: var(--accent); }
.group-full-banner.digital { background: linear-gradient(90deg, var(--accent), var(--red)); }
.group-full-banner.newcomer{ background: linear-gradient(90deg, var(--yellow), var(--red)); }
.group-full-inner { padding: 36px; }
.group-full-inner h3 { font-size: 24px; font-weight: 800; margin-bottom: 12px; color: var(--text); }
.group-full-inner p { color: var(--text-muted); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.group-full-meta { display: flex; gap: 20px; margin-bottom: 24px; flex-wrap: wrap; }
.group-meta-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); }
.group-meta-item strong { color: var(--text); }

/* ===== Contact Page ===== */
.contact-hero { padding: 100px 0 60px; text-align: center; }
.contact-hero h1 { font-size: clamp(32px, 5vw, 54px); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 20px; color: var(--text); }
.contact-hero p { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.contact-section { padding: 40px 0 100px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon { width: 48px; height: 48px; border-radius: 10px; background: rgba(0,61,165,0.07); border: 1px solid rgba(0,61,165,0.15); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-item strong { display: block; font-weight: 600; margin-bottom: 2px; color: var(--text); }
.contact-item span { color: var(--text-muted); font-size: 14px; }
.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 36px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.5px; text-transform: uppercase; }
.form-group input, .form-group textarea, .form-group select { background: var(--bg-2); border: 1px solid var(--border); border-radius: 6px; padding: 11px 14px; color: var(--text); font-size: 14px; font-family: inherit; transition: border-color 0.2s; resize: vertical; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,61,165,0.1); }
.form-group select option { background: var(--surface); }

/* ===== Auth / Account ===== */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--bg-2); }
.auth-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 48px; width: 100%; max-width: 440px; box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.auth-rainbow-bar { height: 4px; border-radius: 4px; background: linear-gradient(90deg, var(--r1), var(--r2), var(--r3), var(--r4), var(--r5), var(--r6)); margin-bottom: 36px; }
.auth-verdi-bar { height: 4px; border-radius: 4px; background: var(--accent); margin-bottom: 36px; }
.auth-logo { text-align: center; margin-bottom: 8px; }
.auth-logo .logo-text { font-size: 20px; }
.auth-subtitle { text-align: center; color: var(--text-muted); font-size: 14px; margin-bottom: 32px; }
.auth-title { text-align: center; font-size: 26px; font-weight: 800; margin-bottom: 6px; letter-spacing: -0.5px; color: var(--text); }
.auth-error { background: rgba(227,30,36,0.08); border: 1px solid rgba(227,30,36,0.25); color: #c41a20; padding: 12px 16px; border-radius: 8px; font-size: 14px; margin-bottom: 20px; display: none; }
.auth-error.show { display: block; }

/* ===== Gallery ===== */
.gallery-page { min-height: 100vh; background: var(--bg-2); padding-top: 64px; }
.gallery-topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #ffffff; border-bottom: 3px solid var(--accent);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  height: 64px; display: flex; align-items: center; justify-content: space-between; padding: 0 32px;
}
.gallery-topbar .logo-text { font-size: 18px; font-weight: 700; color: var(--text); }
.gallery-header { text-align: center; padding: 60px 24px 48px; }
.gallery-rainbow-bar { height: 4px; width: 100px; border-radius: 4px; margin: 0 auto 24px; background: linear-gradient(90deg, var(--r1), var(--r2), var(--r3), var(--r4), var(--r5), var(--r6)); }
.gallery-verdi-bar { height: 4px; width: 100px; border-radius: 4px; margin: 0 auto 24px; background: var(--accent); }
.gallery-header h1 { font-size: clamp(28px, 5vw, 44px); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 12px; color: var(--text); }
.gallery-header p { color: var(--text-muted); font-size: 16px; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; max-width: 1200px; margin: 0 auto; padding: 0 24px 80px; }
.gallery-item { border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; background: var(--surface); border: 1px solid var(--border); cursor: pointer; transition: all 0.3s; position: relative; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.gallery-item:hover { transform: scale(1.03); z-index: 1; box-shadow: 0 12px 40px rgba(0,0,0,0.15); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-item-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.7)); padding: 24px 16px 14px; font-size: 13px; font-weight: 500; color: #fff; }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,0.92); align-items: center; justify-content: center; padding: 20px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 8px; object-fit: contain; }
.lightbox-close { position: absolute; top: 20px; right: 28px; font-size: 32px; color: white; cursor: pointer; opacity: 0.7; transition: opacity 0.2s; }
.lightbox-close:hover { opacity: 1; }
.lightbox-caption { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); font-size: 14px; color: rgba(255,255,255,0.7); }

/* ===== Footer ===== */
.footer { padding: 60px 0 30px; background: var(--accent); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand .logo-verdi { color: #fff; font-size: 24px; }
.footer-brand .logo-verdi .vd-dot { color: rgba(255,255,255,0.7); }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 14px; margin-top: 10px; max-width: 260px; line-height: 1.7; }
.footer-col strong { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.55); margin-bottom: 14px; display: block; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.2s; margin-bottom: 8px; }
.footer-col a:hover { color: #fff; }
/* legacy logo-text in footer */
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-text .accent { color: rgba(255,255,255,0.75); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.15); font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: rgba(255,255,255,0.45); text-decoration: underline; }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-groups { display: none; }
  .groups-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .groups-full-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 4px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; color: var(--text); }
  .hamburger { display: block; }
  .nav-user-menu { width: 100%; }
  .nav-user-btn { width: 100%; justify-content: flex-start; }
  .user-dropdown { position: static; width: 100%; box-shadow: none; border: 1px solid var(--border); margin-top: 8px; }
  .groups-grid { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: 60px 1fr; }
  .event-tag { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .auth-card { padding: 28px 20px; margin: 16px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
