/* ESH 2023 Antalya – Medical Hypnosis Congress */

:root {
  --primary: #1a3056;
  --primary-dark: #0f1e38;
  --gold: #c8962e;
  --gold-light: #e0b45a;
  --accent: #3a7bd5;
  --text: #333333;
  --text-light: #666666;
  --bg-light: #f7f8fa;
  --white: #ffffff;
  --border: #e0e0e0;
  --header-height: 90px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  font-size: 15px;
  line-height: 1.75;
}

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--primary);
  line-height: 1.3;
}

/* ─── Header ──────────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--primary);
  height: var(--header-height);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  transition: background 0.3s;
}

#header .inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo { display: flex; align-items: center; gap: 14px; }
.logo img { height: 58px; }
.logo-text { color: var(--white); }
.logo-text .title { font-family: 'Playfair Display', Georgia, serif; font-size: 20px; font-weight: 700; }
.logo-text .sub { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.8; }

/* ─── Navigation ──────────────────────────────────────────── */
nav { position: relative; }
nav > ul { display: flex; list-style: none; gap: 4px; align-items: center; }
nav > ul > li { position: relative; }
nav > ul > li > a {
  display: block;
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}
nav > ul > li > a:hover,
nav > ul > li.active > a {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}
nav > ul > li.lang-btn > a {
  background: var(--gold);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 3px;
}
nav > ul > li.lang-btn > a:hover { background: var(--gold-light); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  min-width: 220px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s;
  list-style: none;
  border-radius: 0 0 4px 4px;
  z-index: 100;
}
nav > ul > li:hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.dropdown li { border-bottom: 1px solid var(--border); }
.dropdown li:last-child { border-bottom: none; }
.dropdown li a {
  display: block;
  padding: 10px 18px;
  color: var(--text);
  font-size: 13px;
  transition: background 0.15s, color 0.15s;
}
.dropdown li a:hover { background: var(--bg-light); color: var(--primary); }

/* Sub-dropdown */
.dropdown li { position: relative; }
.sub-dropdown {
  position: absolute;
  left: 100%;
  top: 0;
  background: var(--white);
  min-width: 200px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  opacity: 0;
  pointer-events: none;
  list-style: none;
  border-radius: 0 0 4px 4px;
  transition: opacity 0.2s;
}
.dropdown li:hover .sub-dropdown { opacity: 1; pointer-events: auto; }

/* ─── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1a3056 40%, #1a4a72 70%, #0f3050 100%);
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200,150,46,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(58,123,213,0.1) 0%, transparent 50%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding: 0 30px;
}
.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 2px;
  margin-bottom: 24px;
}
.hero-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.3);
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--white);
  font-size: 58px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero h1 span { color: var(--gold-light); }
.hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: 20px;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.5;
}
.hero-date {
  display: inline-block;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-top: 1px solid rgba(255,255,255,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding: 10px 30px;
  margin: 16px 0 36px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 14px 34px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-light); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,150,46,0.4); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: var(--white); color: var(--primary); }

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* ─── Announcement Banner ─────────────────────────────────── */
.announcement {
  background: #fff8e7;
  border-bottom: 3px solid var(--gold);
  padding: 20px 30px;
  text-align: center;
}
.announcement p {
  font-size: 15px;
  color: var(--text);
  margin: 4px 0;
}
.announcement p strong { color: var(--primary); }
.announcement a { color: var(--gold); font-weight: 700; }
.announcement a:hover { text-decoration: underline; }

/* ─── Sections ────────────────────────────────────────────── */
section { padding: 90px 30px; }
section.bg-light { background: var(--bg-light); }
section.bg-primary { background: var(--primary); }
section.bg-dark { background: var(--primary-dark); }

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 16px;
}
.section-header.light h2 { color: var(--white); }
.section-header .divider {
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 20px;
}
.section-header p {
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
  font-size: 16px;
}
.section-header.light p { color: rgba(255,255,255,0.75); }

/* Welcome section */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.welcome-grid .content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.welcome-grid .content p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 15.5px;
}
.welcome-grid .content blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 24px;
  background: var(--bg-light);
  margin: 24px 0;
  font-size: 16px;
  font-style: italic;
  color: var(--primary);
}
.welcome-grid .content .president {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.welcome-grid .content .president p { margin: 0; }
.welcome-grid .content .president strong { color: var(--primary); font-size: 16px; }
.welcome-grid .image {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.welcome-grid .image img { width: 100%; display: block; }
.welcome-grid .image-placeholder {
  background: linear-gradient(135deg, var(--primary) 0%, #2a5a8f 100%);
  height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  gap: 16px;
  border-radius: 4px;
}
.welcome-grid .image-placeholder .icon { font-size: 60px; opacity: 0.5; }
.welcome-grid .image-placeholder p { font-size: 14px; letter-spacing: 1px; text-transform: uppercase; }

/* ─── Stats Bar ───────────────────────────────────────────── */
.stats-bar {
  background: var(--primary);
  padding: 50px 30px;
}
.stats-bar .inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat {
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat:last-child { border-right: none; }
.stat .num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 52px;
  color: var(--gold-light);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.stat .label {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ─── Topics ──────────────────────────────────────────────── */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.topic-card {
  background: var(--white);
  border-radius: 4px;
  padding: 36px 28px;
  border-bottom: 4px solid transparent;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.topic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-bottom-color: var(--gold);
}
.topic-card .icon {
  font-size: 42px;
  margin-bottom: 20px;
  display: block;
}
.topic-card h3 { font-size: 20px; margin-bottom: 12px; color: var(--primary); }
.topic-card p { color: var(--text-light); font-size: 14.5px; line-height: 1.7; }

/* ─── Speakers ────────────────────────────────────────────── */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.speaker-card {
  text-align: center;
  background: var(--white);
  border-radius: 4px;
  padding: 32px 20px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
  border-top: 4px solid transparent;
}
.speaker-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
  border-top-color: var(--gold);
}
.speaker-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--primary) 0%, #2a5a8f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: rgba(255,255,255,0.6);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  border: 3px solid var(--border);
}
.speaker-card h3 { font-size: 16px; color: var(--primary); margin-bottom: 6px; }
.speaker-card .role {
  font-size: 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.speaker-card .country {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 4px;
}

/* ─── Programme Highlight ─────────────────────────────────── */
.programme-days {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.prog-day {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.25s;
}
.prog-day:hover { transform: translateY(-4px); }
.prog-day-header {
  background: var(--primary);
  color: var(--white);
  padding: 20px;
  text-align: center;
}
.prog-day-header .day-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 4px;
}
.prog-day-header .date { font-size: 26px; font-weight: 700; }
.prog-day-header .month { font-size: 14px; opacity: 0.8; }
.prog-day-body { padding: 20px; }
.prog-day-body h4 { font-size: 15px; color: var(--primary); margin-bottom: 12px; }
.prog-day-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.prog-day-body ul li {
  font-size: 13px;
  color: var(--text-light);
  padding-left: 14px;
  position: relative;
}
.prog-day-body ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
}

/* ─── Info Cards ──────────────────────────────────────────── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.info-card {
  background: var(--white);
  border-radius: 4px;
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  text-align: center;
}
.info-card .icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}
.info-card h3 { font-size: 20px; margin-bottom: 12px; }
.info-card p { color: var(--text-light); font-size: 14.5px; }

/* ─── Registration Teaser ─────────────────────────────────── */
.reg-box {
  background: var(--white);
  border-radius: 6px;
  padding: 50px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.reg-box h3 { font-size: 28px; margin-bottom: 12px; }
.reg-box p { color: var(--text-light); margin-bottom: 8px; }

/* ─── Page Hero (inner pages) ────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #1a4a72 100%);
  padding: 160px 30px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,150,46,0.1) 0%, transparent 70%);
}
.page-hero h1 {
  color: var(--white);
  font-size: 46px;
  position: relative;
  margin-bottom: 14px;
}
.page-hero .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  position: relative;
}
.page-hero .breadcrumb a { color: var(--gold-light); }
.page-hero .breadcrumb a:hover { color: var(--white); }

/* ─── Content Sections (inner pages) ─────────────────────── */
.page-content { padding: 80px 30px; }
.page-content .container { max-width: 960px; }
.page-content h2 { font-size: 30px; margin-bottom: 20px; margin-top: 40px; color: var(--primary); }
.page-content h2:first-child { margin-top: 0; }
.page-content h3 { font-size: 22px; margin: 28px 0 12px; color: var(--primary); }
.page-content p { color: var(--text-light); margin-bottom: 16px; line-height: 1.8; }
.page-content ul, .page-content ol { margin: 16px 0 24px 24px; color: var(--text-light); }
.page-content ul li, .page-content ol li { margin-bottom: 8px; line-height: 1.7; }
.page-content .highlight-box {
  background: var(--bg-light);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  border-radius: 0 4px 4px 0;
  margin: 28px 0;
  color: var(--text);
}

/* ─── Committee Table ─────────────────────────────────────── */
.committee-section { margin-bottom: 48px; }
.committee-section h3 {
  font-size: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 20px;
}
.committee-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.committee-member {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.committee-member .avatar-small {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  font-family: 'Playfair Display', Georgia, serif;
}
.committee-member .info { flex: 1; }
.committee-member .info strong { display: block; color: var(--primary); font-size: 14px; }
.committee-member .info span { font-size: 12.5px; color: var(--text-light); }

/* ─── Programme Table ─────────────────────────────────────── */
.prog-tabs { display: flex; gap: 8px; margin-bottom: 30px; flex-wrap: wrap; }
.prog-tab {
  padding: 10px 24px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  background: var(--bg-light);
  color: var(--text);
  border: none;
  transition: background 0.2s, color 0.2s;
}
.prog-tab.active, .prog-tab:hover { background: var(--primary); color: var(--white); }

.schedule-table { width: 100%; border-collapse: collapse; }
.schedule-table th {
  background: var(--primary);
  color: var(--white);
  padding: 14px 16px;
  text-align: left;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.schedule-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.schedule-table tr:hover td { background: var(--bg-light); }
.schedule-table .time { font-weight: 700; color: var(--primary); white-space: nowrap; min-width: 120px; }
.schedule-table .session-title { font-weight: 600; color: var(--text); }
.schedule-table .speaker-name { font-size: 13px; color: var(--gold); }
.schedule-table .session-type {
  display: inline-block;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 2px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.session-type.keynote { background: #fff3cd; color: #856404; }
.session-type.workshop { background: #cce5ff; color: #004085; }
.session-type.break { background: #f0f0f0; color: #666; }
.session-type.social { background: #d4edda; color: #155724; }
.schedule-table tr.break-row td { background: #f8f9fa; color: #888; font-style: italic; }

/* ─── Hotel Section ───────────────────────────────────────── */
.hotel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.hotel-image-placeholder {
  background: linear-gradient(135deg, #c8a05a 0%, #a07840 100%);
  height: 380px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(255,255,255,0.5);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.hotel-info h3 { font-size: 26px; margin-bottom: 16px; }
.hotel-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0; }
.hotel-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-light);
}
.hotel-feature .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.reg-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.reg-table th {
  background: var(--primary);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
}
.reg-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.reg-table tr:nth-child(even) td { background: var(--bg-light); }
.reg-table .price { font-weight: 700; color: var(--primary); }

/* ─── Contact ─────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-item { display: flex; gap: 20px; margin-bottom: 32px; }
.contact-icon {
  font-size: 26px;
  color: var(--gold);
  width: 50px;
  flex-shrink: 0;
  text-align: center;
}
.contact-item h4 { font-size: 15px; margin-bottom: 4px; color: var(--primary); }
.contact-item p { font-size: 14.5px; color: var(--text-light); margin: 0; }
.contact-item a { color: var(--gold); }

/* ─── Footer ──────────────────────────────────────────────── */
footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 30px 30px;
}
footer .footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
footer h4 {
  font-family: 'Open Sans', sans-serif;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
footer .brand-tagline { font-size: 14px; line-height: 1.7; margin: 12px 0 20px; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 13.5px;
  transition: color 0.2s;
}
footer ul li a:hover { color: var(--gold-light); }
footer .footer-logos { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-top: 8px; }
footer .org-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 3px;
  text-align: center;
  font-weight: 600;
}
.footer-bottom {
  max-width: 1200px;
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ─── Mobile nav toggle ──────────────────────────────────── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .speakers-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .welcome-grid { grid-template-columns: 1fr; }
  .welcome-grid .image-placeholder { height: 300px; }
}
@media (max-width: 768px) {
  :root { --header-height: 70px; }
  .nav-toggle { display: flex; }
  nav { display: none; }
  nav.open { display: block; position: absolute; top: var(--header-height); left: 0; right: 0; background: var(--primary-dark); padding: 20px; }
  nav.open > ul { flex-direction: column; }
  nav.open .dropdown { position: static; opacity: 1; pointer-events: auto; transform: none; box-shadow: none; border-top: none; padding-left: 16px; display: none; }
  nav.open li.open .dropdown { display: block; }
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 16px; }
  .stats-bar .inner { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .topics-grid { grid-template-columns: 1fr; }
  .speakers-grid { grid-template-columns: repeat(2, 1fr); }
  .programme-days { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; }
  .hotel-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .committee-grid { grid-template-columns: 1fr; }
  footer .footer-grid { grid-template-columns: 1fr; }
  .reg-box { grid-template-columns: 1fr; text-align: center; }
  .page-hero h1 { font-size: 32px; }
}
@media (max-width: 480px) {
  section { padding: 60px 20px; }
  .speakers-grid { grid-template-columns: 1fr 1fr; }
  .programme-days { grid-template-columns: 1fr; }
}
