@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Manrope:wght@300;400;600;700&display=swap');

:root {
  --gold: #f0c56b;
  --gold-dark: #b8872e;
  --ink: #f8f3e8;
  --muted: #d8c8ad;
  --overlay: rgba(8, 8, 12, 0.35);
  --card: rgba(14, 14, 18, 0.58);
  --border: rgba(255, 255, 255, 0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background: #0b0b10;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.45)),
    url('background.jpg') center/cover no-repeat;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 28px 5vw;
}

.lang-switch {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.lang-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  cursor: pointer;
}

.lang-btn.active {
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  color: #1b1306;
  border-color: transparent;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
  justify-items: center;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.hero-left {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.hero-right {
  display: grid;
  justify-items: center;
}

.logo {
  width: 165px;
  height: auto;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.45));
}

.badge {
  width: min(360px, 80vw);
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.45));
  margin-bottom: 10px;
}

.brand {
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

h1 {
  margin: 0;
  font-family: 'Cinzel', serif;
  font-size: clamp(20px, 3vw, 34px);
  letter-spacing: 1px;
  text-align: center;
}

.festival {
  display: grid;
  gap: 6px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 18px 20px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
}

.festival-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
}

.festival-sub { font-size: 18px; }
.festival-meta { font-size: 16px; color: var(--muted); }
.festival-date { font-size: 18px; font-weight: 600; }

.badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
  transition: transform 120ms ease, box-shadow 120ms ease;
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  color: #1b1306;
  box-shadow: 0 10px 20px rgba(0,0,0,0.35);
}

.btn.ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--ink);
}

.btn.danger {
  background: #6b1d1d;
  color: #fff;
  border-color: #7b2b2b;
}

.btn:hover { transform: translateY(-1px); }

.contact {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
  justify-content: center;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  text-decoration: none;
  transition: border-color 120ms ease, background 120ms ease, color 120ms ease;
}

.contact-link:hover {
  border-color: rgba(240,197,107,0.6);
  background: rgba(240,197,107,0.12);
  color: #ffe8bd;
}

.contact-mini-icon {
  width: 14px;
  height: 14px;
  fill: var(--gold);
  flex: 0 0 auto;
}

.contact-card {
  margin-top: 14px;
  background: rgba(14, 14, 18, 0.55);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.contact-title {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}

.contact-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 120ms ease, border-color 120ms ease, transform 120ms ease;
  flex: 1 1 220px;
  min-width: 220px;
}

.contact-item:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}

.contact-icon {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  flex: 0 0 auto;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-phone {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.contact-name {
  font-size: 12px;
  color: var(--muted);
}

label.required > span::after {
  content: " *";
  color: var(--gold);
  margin-left: 2px;
}

.required-note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}

.detail, .form-section {
  background: #0b0b10;
  padding: 60px 8vw;
}

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

.detail h2, .form-section h2 {
  font-family: 'Cinzel', serif;
  margin: 0 0 12px;
}

.rules {
  background: rgba(14, 14, 18, 0.55);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  margin: 10px 0 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
}

.rules h3 {
  margin: 0 0 6px;
  font-family: 'Cinzel', serif;
}

.rules p {
  margin: 0 0 14px;
  color: var(--muted);
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.rule-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
}

.rule-title {
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.rule-text {
  color: #e8ddc9;
  line-height: 1.6;
  font-size: 14px;
}

.rules-sub {
  margin-top: 16px;
  border-top: 1px dashed rgba(255,255,255,0.12);
  padding-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.rule-list {
  margin: 6px 0 10px;
  padding-left: 18px;
  color: #e8ddc9;
}

.rule-list li { margin: 4px 0; }

.note-card .rule-text {
  font-weight: 700;
  font-size: 15px;
}

.detail p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.info-note {
  background: linear-gradient(180deg, rgba(240,197,107,0.12), rgba(240,197,107,0.05));
  border: 1px solid rgba(240,197,107,0.38);
  border-radius: 14px;
  padding: 18px;
  margin: 0 0 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.info-note h3 {
  margin: 0 0 8px;
  font-family: 'Cinzel', serif;
  color: #ffe3a4;
}

.info-note .rule-list {
  margin: 0;
}

.detail-sub {
  margin-bottom: 22px;
}

.timeline {
  display: grid;
  gap: 18px;
  position: relative;
  padding-left: 26px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, rgba(240,197,107,0.9), rgba(240,197,107,0.2));
}

.timeline-item {
  background: rgba(14, 14, 18, 0.55);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 18px;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle at 30% 30%, #fff3cf, var(--gold));
  border: 2px solid rgba(0,0,0,0.35);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(240,197,107,0.15);
}

.timeline-head {
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--gold);
  font-weight: 700;
  text-align: left;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
}

.head-left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.date-icon {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(240,197,107,0.8);
  border-radius: 3px;
  position: relative;
  box-shadow: 0 0 0 2px rgba(240,197,107,0.1);
  flex: 0 0 16px;
}

.date-icon::before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 3px;
  height: 3px;
  background: rgba(240,197,107,0.8);
  border-radius: 2px;
}

.date-icon::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 4px;
  height: 1px;
  background: rgba(240,197,107,0.35);
}

.timeline-head .chev {
  font-size: 20px;
  color: var(--muted);
}

.timeline-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
  padding: 0 18px;
}

.timeline-item.open .timeline-body {
  max-height: 800px;
  padding-bottom: 14px;
}

.timeline-item.open {
  border-color: rgba(240,197,107,0.5);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.timeline-item.open::before {
  width: 14px;
  height: 14px;
  box-shadow: 0 0 0 6px rgba(240,197,107,0.2);
}

.timeline-item.open .timeline-head {
  color: #ffe3a4;
}

.timeline-item.open .chev {
  color: #ffe3a4;
}

.timeline-section {
  margin: 8px 0 4px;
  font-weight: 600;
  color: var(--muted);
}

.timeline-list {
  margin: 0;
  padding-left: 18px;
  color: #e8ddc9;
  line-height: 1.6;
}

.timeline-list li { margin: 6px 0; }

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 6px;
  padding: 1px 8px;
  border-radius: 999px;
  font-size: 0.85em;
  font-weight: 600;
  white-space: nowrap;
  color: #0b1f16;
  background: #6fcf97;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.map-link:hover {
  background: #56b981;
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .timeline { padding-left: 18px; }
  .timeline::before { left: 6px; }
  .timeline-item::before { left: -20px; }
}

form {
  display: grid;
  gap: 16px;
}

.grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  display: grid;
  gap: 6px;
  font-size: 14px;
}

.field-help {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.field-error {
  color: #ffb2b2;
  font-size: 12px;
  line-height: 1.3;
  min-height: 16px;
}

.field-tc {
  position: relative;
  padding-bottom: 16px;
}

.field-tc .field-error {
  position: absolute;
  left: 0;
  bottom: 0;
  min-height: 0;
}

input, select {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  color: var(--ink);
}

select option {
  background: #0b0b10;
  color: #f8f3e8;
}

input:focus, select:focus {
  outline: none;
  border-color: var(--gold);
}

.full { grid-column: span 2; }
.terms { align-items: center; grid-template-columns: 18px 1fr; }

.alert {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  font-size: 14px;
}

.alert.success { border-color: rgba(63, 193, 140, 0.7); color: #b8ffd8; }
.alert.error { border-color: rgba(255, 120, 120, 0.7); color: #ffd0d0; }

.admin-link { margin-top: 10px; font-size: 13px; color: var(--muted); }

/* Admin */
.admin-bg {
  min-height: 100vh;
  background: radial-gradient(circle at 20% 20%, #20202a, #0b0b10 60%);
  color: var(--ink);
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 40px 8vw;
}

.admin-page {
  align-items: flex-start;
  justify-items: stretch;
  padding-top: 20px;
}

.admin-card {
  max-width: 420px;
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 14px;
  backdrop-filter: blur(6px);
  text-align: center;
  margin: 0 auto;
}

.admin-logo {
  width: 120px;
  height: auto;
  margin: 0 auto 10px;
  display: block;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.admin-badge {
  width: 140px;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4));
}

.admin-panel {
  width: 100%;
  background: rgba(14,14,18,0.7);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 14px;
  backdrop-filter: blur(6px);
}

.admin-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.search {
  display: flex;
  gap: 10px;
  margin: 16px 0;
}

.filter-bar {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 12px;
  margin: 16px 0 20px;
}

.filter-group {
  display: grid;
  gap: 6px;
  font-size: 12px;
}

.filter-actions {
  display: flex;
  gap: 10px;
  align-items: end;
}

.filter-bar input,
.filter-bar select {
  width: 100%;
}

.table-wrap {
  overflow-x: auto;
  overflow-y: visible;
  position: relative;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

th, td {
  border-bottom: 1px solid var(--border);
  padding: 10px 8px;
  text-align: left;
}

thead th {
  background: rgba(240, 197, 107, 0.12);
  color: #ffe3a4;
  font-weight: 700;
  letter-spacing: 0.2px;
}

tbody tr {
  transition: background-color 130ms ease;
}

tbody tr:hover {
  background: rgba(255, 255, 255, 0.06);
}

.sort-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,0.24);
}

.sort-link.active {
  color: #ffe3a4;
  border-bottom-color: rgba(240, 197, 107, 0.8);
}

.sort-icon {
  font-size: 11px;
  line-height: 1;
  color: var(--gold);
}

.row-index {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.row-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.08);
}

.row-indicator.active {
  background: #44d48c;
}

.row-indicator.passive {
  background: #ff8f8f;
}

td.actions {
  position: relative;
  overflow: visible;
}

.action-menu {
  position: relative;
  display: inline-block;
}

.menu-trigger {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--ink);
  width: 34px;
  height: 34px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.menu-dropdown {
  position: absolute;
  right: 0;
  top: 40px;
  bottom: auto;
  background: rgba(14,14,18,0.98);
  border: 1px solid var(--border);
  border-radius: 10px;
  min-width: 160px;
  width: max-content;
  max-width: 260px;
  padding: 6px;
  display: none;
  z-index: 20;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.menu-dropdown.portal {
  position: fixed;
  right: auto;
  z-index: 999;
}

.action-menu.open .menu-dropdown { display: block; }

.action-menu.open-up .menu-dropdown {
  top: auto;
  bottom: 40px;
}

.menu-item {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--ink);
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.menu-item-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  opacity: 0.9;
  flex: 0 0 auto;
}

.menu-item:hover {
  background: rgba(255,255,255,0.06);
}

.menu-item.danger {
  color: #ffb7b7;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.modal.open { display: flex; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.modal-card {
  position: relative;
  background: rgba(14, 14, 18, 0.95);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  width: min(720px, 92vw);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.modal-close {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
}

.modal-body {
  overflow-y: auto;
  padding-right: 4px;
}

.detail-tabs {
  display: flex;
  gap: 8px;
  margin: 0 0 14px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.detail-tab {
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--muted);
  padding: 8px 12px;
  cursor: pointer;
  font: inherit;
}

.detail-tab.active {
  color: #ffe3a4;
  border-bottom-color: var(--gold);
}

.detail-tab-panel {
  display: none;
}

.detail-tab-panel.active {
  display: block;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  font-size: 14px;
}

.detail-grid.modern {
  gap: 10px;
}

.detail-overview {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
}

.detail-person {
  min-width: 0;
}

.detail-name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  color: #ffe3a4;
  word-break: break-word;
}

.detail-sub {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}

.detail-badges {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.detail-badge {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid transparent;
}

.detail-badge.is-active {
  color: #bfffdc;
  background: rgba(67, 215, 154, 0.16);
  border-color: rgba(67, 215, 154, 0.45);
}

.detail-badge.is-passive {
  color: #ffd1d1;
  background: rgba(255, 120, 120, 0.14);
  border-color: rgba(255, 120, 120, 0.45);
}

.detail-badge.is-neutral {
  color: #ffe7b3;
  background: rgba(240, 197, 107, 0.14);
  border-color: rgba(240, 197, 107, 0.4);
}

.detail-item {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  padding: 9px 10px;
}

.detail-label {
  font-size: 11px;
  letter-spacing: 0.2px;
  color: var(--muted);
  margin-bottom: 4px;
}

.detail-value {
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
  word-break: break-word;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 10px 0 16px;
}

.stat-card {
  background: rgba(14,14,18,0.7);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}

.stat-label {
  color: var(--muted);
  font-size: 12px;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
}

@media (max-width: 900px) {
  .filter-bar { grid-template-columns: 1fr; }
  .filter-actions { justify-content: flex-start; }
  .admin-header { flex-direction: column; align-items: flex-start; }
  .admin-brand { flex-direction: column; align-items: flex-start; }
  .stats { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .detail-grid { grid-template-columns: 1fr; }
  .detail-overview { flex-direction: column; }
  .detail-badges { justify-content: flex-start; }
}

@media (max-width: 800px) {
  .grid { grid-template-columns: 1fr; }
  .full { grid-column: span 1; }
  .hero-content { padding: 32px 6vw; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { justify-items: center; }
  .badge { width: min(320px, 90%); }
  .rules-grid { grid-template-columns: 1fr; }
  .rules-sub { grid-template-columns: 1fr; }
}

.remember {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  margin: 10px 0 6px;
}

/* Admin panel: katilim / grup / kesin kayit etiketleri */
.tag {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.6;
  margin: 1px 2px 1px 0;
}
.tag-ok     { background: #14301f; color: #25d366; border: 1px solid #1f5c39; }
.tag-no     { background: #301a18; color: #e5534b; border: 1px solid #6b2f2a; }
.tag-wait   { background: #202c24; color: #93a79a; border: 1px solid #2b3a30; }
.tag-off    { background: #2b2320; color: #c9856f; border: 1px solid #5c3f33; }
.tag-info   { background: #1a2530; color: #7fb8e8; border: 1px solid #2f4a6b; }
.tag-summit { background: #2a2712; color: #e0a640; border: 1px solid #5c4d1f; }
.tag-stay   { background: #221a30; color: #b18ce0; border: 1px solid #443066; }

/* Ana sayfa: sosyal medya "Bizi Takip Edin" alanı */
.follow {
  width: 100%;
  max-width: 620px;
  margin-top: 16px;
  background: rgba(14, 14, 18, 0.55);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
}

.follow-title {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: var(--gold);
  text-align: center;
  margin-bottom: 12px;
}

.follow-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.follow-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 240px;
  max-width: 300px;
  min-height: 64px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0,0,0,0.35);
  transition: transform 120ms ease, filter 120ms ease;
}

.follow-btn:hover { transform: translateY(-2px); filter: brightness(1.08); }

.follow-btn.ig { background: linear-gradient(135deg, #f9ce34, #ee2a7b 48%, #6228d7); }
.follow-btn.fb { background: linear-gradient(180deg, #2b7cf3, #1257a8); }

.follow-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  fill: #fff;
}

.follow-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  min-width: 0;
}

.follow-text b { font-size: 17px; }
.follow-text small { font-size: 12.5px; opacity: 0.9; }

@media (max-width: 520px) {
  .follow-btn { flex: 1 1 100%; max-width: none; justify-content: center; }
}

/* Ana sayfa: WhatsApp grubuna katıl butonu */
.btn.whatsapp {
  background: linear-gradient(180deg, #2ee36e, #1da851);
  color: #04140b;
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(0,0,0,0.35);
  gap: 8px;
}
.btn.whatsapp:hover { background: linear-gradient(180deg, #25d366, #17924a); }
.btn.whatsapp .wa-icon { width: 20px; height: 20px; fill: #04140b; flex: 0 0 auto; }
