/* Thisdomaindontexist123.ddd — Middle-Eastern Patterned */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;600;700&family=Amiri:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

:root {
  --primary: #88576d;
  --primary-dark: #6b4456;
  --primary-light: #a87a8f;
  --accent: #d4a574;
  --accent-contrast: #f5e6d3;
  --bg-dark: #2a1f24;
  --bg-light: #faf6f3;
  --bg-section-a: #f0e8ec;
  --bg-section-b: #e8ddd4;
  --bg-section-c: #3d2a32;
  --text-dark: #1a1216;
  --text-light: #faf6f3;
  --text-muted: #4a3d42;
  --border: #c9b0b8;
  --shadow: 0 4px 20px rgba(42, 31, 36, 0.15);
  --radius: 8px;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 100%; }

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.65;
  min-width: 320px;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--bg-dark);
  color: var(--text-light);
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.map-placeholder {
  background: var(--bg-section-a);
  padding: 2rem 1.5rem;
  text-align: center;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.map-placeholder p {
  color: var(--text-muted);
  max-width: 420px;
  margin: 0;
}

body.pattern-bg {
  background-color: var(--bg-light);
  background-image:
    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='%2388576d' fill-opacity='0.06'%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");
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--primary-dark); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--primary); }

h1, h2, h3, h4 {
  font-family: 'Amiri', serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark p,
.section-dark li { color: var(--text-light); }

.section-dark a { color: var(--accent-contrast); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.site-header {
  background: var(--bg-dark);
  border-bottom: 3px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text-light);
}

.logo-link img { width: 44px; height: 44px; flex-shrink: 0; }

.logo-text {
  font-family: 'Amiri', serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-light);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--text-light);
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  border-radius: var(--radius);
  font-size: 0.85rem;
}

.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}

.main-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  border-bottom-color: var(--accent);
  color: var(--accent-contrast);
}

/* Hero Carousel */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: 380px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.hero-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: brightness(0.55);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
  background: linear-gradient(135deg, rgba(42,31,36,0.75) 0%, rgba(136,87,109,0.45) 100%);
}

.hero-content {
  text-align: center;
  max-width: 800px;
}

.hero-content h1 {
  color: var(--text-light);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-content p {
  color: var(--accent-contrast);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 1.5rem;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--bg-dark);
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition);
}

.hero-dot.active { background: var(--accent); }

.hero-arrows button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(136,87,109,0.85);
  border: none;
  color: var(--text-light);
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 10;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-arrows .prev { left: 0.75rem; }
.hero-arrows .next { right: 0.75rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.35rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--text-light);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border-color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--text-dark);
}

.btn-dark {
  background: var(--bg-dark);
  color: var(--text-light);
  border-color: var(--bg-dark);
}

.btn-dark:hover {
  background: var(--primary-dark);
  color: var(--text-light);
}

button.btn {
  font-family: inherit;
  cursor: pointer;
  border: 2px solid transparent;
}

/* Sections */
section {
  padding: 3.5rem 0;
}

.section-light { background: var(--bg-section-a); color: var(--text-dark); }
.section-cream { background: var(--bg-section-b); color: var(--text-dark); }
.section-dark {
  background: var(--bg-section-c);
  color: var(--text-light);
  background-image:
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23d4a574' stroke-opacity='0.12'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3Cpath d='M20 20h40v40H20V20z'/%3E%3C/g%3E%3C/svg%3E");
}
.section-primary {
  background: var(--primary);
  color: var(--text-light);
}
.section-primary h2,
.section-primary h3,
.section-primary p,
.section-primary li { color: var(--text-light); }
.section-primary a { color: var(--accent-contrast); }

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: 0.75rem;
}

.section-header .material-icons {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-dark .section-header .material-icons,
.section-primary .section-header .material-icons { color: var(--accent); }

.section-intro {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-dark .section-intro { color: var(--accent-contrast); opacity: 0.95; }

/* Grid layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* Cards */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  color: var(--text-dark);
}

.section-dark .card {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212,165,116,0.35);
  color: var(--text-light);
}

.section-dark .grid-3 .card h3,
.section-dark .grid-3 .card p,
.section-dark .grid-4 .card h3,
.section-dark .grid-4 .card p,
.section-dark .card h3,
.section-dark .card p {
  color: var(--text-light);
}

.section-primary .card {
  background: #fff;
  color: var(--text-dark);
}

.section-primary .grid-3 .card h3,
.section-primary .grid-3 .card p,
.section-primary .grid-4 .card h3,
.section-primary .grid-4 .card p,
.section-primary .card h3,
.section-primary .card p {
  color: var(--text-dark);
}

.card-icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.card-icon .material-icons {
  color: var(--primary);
  font-size: 1.75rem;
}

.section-dark .card-icon .material-icons,
.section-primary .card-icon .material-icons { color: var(--accent); }

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: inherit;
}

/* Image blocks */
.img-block {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--accent);
}

.img-block img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.img-caption {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  text-align: center;
}

/* Lists */
.content-list { margin: 1rem 0 1rem 1.5rem; }
.content-list li { margin-bottom: 0.5rem; }

.check-list {
  list-style: none;
  margin: 1rem 0;
}

.check-list li {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
  align-items: flex-start;
}

.check-list .material-icons {
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.section-dark .check-list .material-icons,
.section-primary .check-list .material-icons { color: var(--accent); }

/* Numbered steps */
.steps {
  counter-reset: step;
  list-style: none;
  margin: 1.5rem 0;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.25rem;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Timeline / Events */
.events-list {
  list-style: none;
}

.events-list li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.section-dark .events-list li { border-color: rgba(255,255,255,0.2); }

.event-date {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
}

.section-dark .event-date,
.section-primary .event-date { color: var(--accent); }

/* FAQ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: #fff;
}

.section-dark .faq-item {
  background: rgba(255,255,255,0.06);
  border-color: rgba(212,165,116,0.3);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  background: var(--bg-section-a);
  border: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dark);
  gap: 0.5rem;
}

.section-dark .faq-question {
  background: rgba(0,0,0,0.2);
  color: var(--text-light);
}

.faq-question .material-icons { color: var(--primary); flex-shrink: 0; }
.section-dark .faq-question .material-icons { color: var(--accent); }

.faq-answer {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--text-muted);
}

.section-dark .faq-answer { color: var(--accent-contrast); }

.faq-item.open .faq-answer {
  padding: 1rem 1.25rem 1.25rem;
  max-height: 600px;
}

.faq-item.open .faq-question .material-icons { transform: rotate(180deg); }

/* Guidelines table */
.guidelines-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.guidelines-table th,
.guidelines-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--text-dark);
}

.guidelines-table th {
  background: var(--primary);
  color: var(--text-light);
  font-weight: 600;
}

.guidelines-table tr:nth-child(even) td { background: var(--bg-section-a); }

/* Quote block */
.quote-block {
  border-left: 4px solid var(--accent);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(136,87,109,0.08);
  font-style: italic;
  color: var(--text-muted);
}

.section-dark .quote-block {
  background: rgba(0,0,0,0.2);
  color: var(--accent-contrast);
}

/* Disclaimer */
.disclaimer-bar {
  background: var(--primary-dark);
  color: var(--text-light);
  padding: 0.75rem 1.25rem;
  font-size: 0.85rem;
  text-align: center;
  border-bottom: 2px solid var(--accent);
}

.disclaimer-bar p { max-width: 960px; margin: 0 auto; line-height: 1.5; }

.disclaimer-bar a {
  color: var(--accent-contrast);
  font-weight: 600;
  text-decoration: underline;
}

.trust-box {
  background: rgba(136, 87, 109, 0.08);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.trust-box h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.trust-box ul {
  margin: 0.5rem 0 0 1.25rem;
}

.trust-box li { margin-bottom: 0.35rem; color: var(--text-muted); }

.source-list {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.source-list li {
  margin-bottom: 0.65rem;
  padding-left: 1.75rem;
  position: relative;
}

.source-list .material-icons {
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--primary);
  font-size: 1.25rem;
}

.footer-trust {
  padding: 1rem 0;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(212, 165, 116, 0.25);
  font-size: 0.92rem;
  color: var(--accent-contrast);
}

.footer-trust a { color: var(--accent-contrast); }

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 2.5rem 0 1.5rem;
  border-top: 3px solid var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer a { color: var(--accent-contrast); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 0.4rem; }

.footer-bottom {
  border-top: 1px solid rgba(212,165,116,0.3);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--accent-contrast);
}

/* Contact form */
.contact-form {
  max-width: 560px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text-dark);
}

.section-dark .form-group label { color: var(--text-light); }

.form-group input:not([type="checkbox"]):not([type="radio"]),
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-check {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-check input[type="checkbox"] {
  width: 1.15rem;
  height: 1.15rem;
  min-width: 1.15rem;
  margin: 0.2rem 0 0;
  padding: 0;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
}

.form-check label {
  display: block;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.55;
  flex: 1;
  cursor: pointer;
  color: var(--text-muted);
}

.form-check label a {
  font-weight: 600;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--accent);
  margin-top: 1.5rem;
}

.map-wrap iframe {
  width: 100%;
  height: 350px;
  display: block;
}

.contact-info-list {
  list-style: none;
  margin: 1rem 0;
}

.contact-info-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  align-items: flex-start;
}

.contact-info-list .material-icons {
  color: var(--primary);
  font-size: 1.5rem;
}

.section-dark .contact-info-list .material-icons { color: var(--accent); }

/* Policy pages */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  margin: 2rem 0 1rem;
  font-size: 1.4rem;
}

.policy-content h3 {
  margin: 1.5rem 0 0.75rem;
  font-size: 1.15rem;
}

.policy-content p,
.policy-content li {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.policy-content ul { margin-left: 1.5rem; }

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.92rem;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.policy-table th,
.policy-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--text-dark);
  vertical-align: top;
}

.policy-table th {
  background: var(--primary);
  color: var(--text-light);
  font-weight: 600;
}

.policy-table tr:nth-child(even) td { background: var(--bg-section-a); }

.policy-content code {
  background: var(--bg-section-a);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.88em;
  color: var(--text-dark);
}

/* Thank you */
.thank-you-box {
  text-align: center;
  padding: 4rem 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-box .material-icons {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 1.25rem;
  z-index: 9999;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  border-top: 3px solid var(--accent);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cookie-banner p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--accent-contrast);
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-settings {
  display: none;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(212,165,116,0.3);
}

.cookie-settings.open { display: block; }

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cookie-toggle label { font-weight: 600; }

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #555;
  border-radius: 26px;
  transition: var(--transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: var(--transition);
}

.toggle-switch input:checked + .toggle-slider { background: var(--primary); }
.toggle-switch input:disabled + .toggle-slider { opacity: 0.6; cursor: not-allowed; }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(22px); }

/* Page hero (inner) */
.page-hero {
  background: var(--primary);
  padding: 2.5rem 0;
  text-align: center;
  border-bottom: 3px solid var(--accent);
}

.page-hero h1 {
  color: var(--text-light);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
}

.page-hero p {
  color: var(--accent-contrast);
  margin-top: 0.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Tag pills */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.tag {
  background: var(--primary);
  color: var(--text-light);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.section-dark .tag {
  background: var(--accent);
  color: var(--text-dark);
}

/* Responsive */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    background: var(--bg-dark);
    padding: 4.5rem 1.5rem 2rem;
    transition: right var(--transition);
    z-index: 999;
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
    overflow-y: auto;
  }

  .main-nav.open { right: 0; }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 1rem;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
  }

  .nav-overlay.open { display: block; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .events-list li { grid-template-columns: 1fr; }
  .hero-slide img { height: 320px; }
  .guidelines-table { font-size: 0.9rem; }
  .guidelines-table th, .guidelines-table td { padding: 0.6rem; }
}

@media (max-width: 480px) {
  section { padding: 2.5rem 0; }
  .hero-slide img { height: 260px; }
  .cookie-buttons { flex-direction: column; }
  .cookie-buttons .btn { width: 100%; justify-content: center; }
  .img-block img { height: 200px; }
}

@media (max-width: 320px) {
  .container { padding: 0 0.75rem; }
  .header-inner { padding: 0.6rem 0.75rem; }
  .logo-text { font-size: 0.85rem; }
  .hero-content h1 { font-size: 1.4rem; }
  .btn { padding: 0.55rem 1rem; font-size: 0.88rem; }
}
