:root {
  --black: #050505;
  --dark: #111216;
  --dark-soft: #202126;
  --gold: #d4af37;
  --gold-light: #f7d774;
  --white: #ffffff;
  --gray: #b8b8b8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

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

.site-header {
  background: #1d1e22;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 25px rgba(0,0,0,0.35);
}

.header-inner {
  max-width: 1500px;
  margin: 0 auto;
  min-height: 82px;
  padding: 0 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 230px;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
}

.main-nav a {
  color: #c9c9c9;
  transition: 0.25s;
}

.main-nav a:hover {
  color: var(--gold-light);
}

.nav-button {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #050505 !important;
  padding: 14px 26px;
  border-radius: 4px;
  box-shadow: 0 0 22px rgba(212,175,55,0.35);
}

.hero {
  min-height: 690px;
  position: relative;
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.96) 0%,
    rgba(0,0,0,0.82) 34%,
    rgba(0,0,0,0.25) 70%,
    rgba(0,0,0,0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1500px, 100%);
  margin: 0 auto;
  padding: 0 44px;
  transform: translateY(20px);
}

.hero-label {
  color: var(--gold);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 900;
  margin-bottom: 22px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(44px, 5vw, 82px);
  line-height: 1;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-tags {
  margin-top: 32px;
  text-transform: uppercase;
  font-size: clamp(17px, 1.6vw, 25px);
  line-height: 1.6;
  font-weight: 900;
  letter-spacing: 3px;
}

.hero-tags span {
  color: var(--gold);
  margin: 0 10px;
}

.hero-tags .gold {
  color: var(--gold);
  font-size: clamp(14px, 1.2vw, 20px);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.2px;
  font-weight: 900;
  transition: 0.25s;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #050505;
  box-shadow: 0 0 22px rgba(212,175,55,0.3);
}

.btn-gold:hover {
  box-shadow: 0 0 30px rgba(212,175,55,0.55);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold-light);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(212,175,55,0.12);
}

.btn.small {
  min-height: 44px;
  padding: 0 24px;
}

.section {
  padding: 86px 0;
  background: #242529;
}

.dark-section {
  background: #111216;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.container.wide {
  width: min(1500px, calc(100% - 48px));
}

.section-text {
  max-width: 900px;
}

.small-line {
  width: 64px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 24px;
}

h2 {
  margin: 0 0 24px;
  font-size: clamp(32px, 3vw, 52px);
  line-height: 1.12;
  font-weight: 300;
}

h2 span {
  color: var(--gold);
}

p {
  color: var(--gray);
  font-size: 17px;
  line-height: 1.75;
}

.categories-image-section {
  background: #242529;
  padding: 0 0 86px;
}

.categories-banner {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.45);
}

.city-section {
  position: relative;
  min-height: 460px;
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
}

.city-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.75) 45%,
    rgba(0,0,0,0.2) 100%
  );
}

.city-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.section-heading.center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 46px;
}

.program-grid,
.judges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.program-card,
.judge-placeholder {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}

.program-card h3 {
  color: var(--gold);
  font-size: 26px;
  margin: 0 0 12px;
}

.judges-grid {
  grid-template-columns: repeat(4, 1fr);
}

.judge-placeholder {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.registration-cta {
  padding: 90px 0;
  text-align: center;
  background:
    linear-gradient(rgba(0,0,0,0.78), rgba(0,0,0,0.78)),
    radial-gradient(circle at center, rgba(212,175,55,0.22), transparent 45%);
}

.registration-cta p {
  max-width: 760px;
  margin: 0 auto 32px;
}

.site-footer {
  background: #050505;
  padding: 60px 0;
  border-top: 1px solid rgba(212,175,55,0.25);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 18px;
}

.site-footer h4 {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 980px) {
  .header-inner {
    flex-direction: column;
    gap: 18px;
    padding: 18px 24px;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .hero {
    min-height: 620px;
    background-position: 68% center;
  }

  .hero-content {
    padding: 0 24px;
  }

  .program-grid,
  .judges-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .logo img {
    width: 150px;
  }

  .main-nav {
    font-size: 11px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-overlay {
    background: rgba(0,0,0,0.72);
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-tags {
    font-size: 15px;
    letter-spacing: 1.5px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .program-grid,
  .judges-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }
}
/* =========================
   MOBILE / RESPONSIVE FIXES
   Dance Battle Salonica
========================= */

/* Tablets */
@media (max-width: 1100px) {
  .header-inner {
    padding: 16px 24px;
  }

  .main-nav {
    gap: 18px;
    font-size: 12px;
  }

  .logo img {
    width: 170px;
  }

  .hero {
    min-height: 600px;
    background-position: 68% center;
  }

  .hero-content {
    padding: 0 28px;
  }

  .hero h1 {
    max-width: 720px;
  }

  .container,
  .container.wide {
    width: min(100% - 36px, 1180px);
  }
}


/* Mobile */
@media (max-width: 768px) {
  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: auto;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: 16px 18px;
  }

  .logo img {
    width: 170px;
    margin: 0 auto;
  }

  .main-nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
    font-size: 11px;
    letter-spacing: 0.7px;
  }

  .main-nav a {
    padding: 6px 0;
  }

  .nav-button {
    padding: 10px 16px !important;
    font-size: 11px;
  }

  .hero {
    min-height: 560px;
    background-position: 72% center;
    align-items: center;
  }

  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(0,0,0,0.94) 0%,
      rgba(0,0,0,0.82) 45%,
      rgba(0,0,0,0.52) 100%
    );
  }

  .hero-content {
    padding: 0 22px;
    transform: none;
  }

  .hero-label {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.08;
    letter-spacing: 1px;
    max-width: 360px;
  }

  .hero-tags {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 1.2px;
  }

  .hero-tags span {
    margin: 0 5px;
  }

  .hero-tags .gold {
    font-size: 13px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 24px;
  }

  .btn {
    min-height: 44px;
    padding: 0 22px;
    font-size: 12px;
  }

  .section {
    padding: 58px 0;
  }

  h2 {
    font-size: 32px;
  }

  p {
    font-size: 15px;
    line-height: 1.65;
  }

  .categories-image-section {
    padding: 0 0 58px;
  }

  .categories-banner {
    border-radius: 10px;
  }

  .city-section {
    min-height: 420px;
    background-position: 72% center;
  }

  .city-overlay {
    background: linear-gradient(
      90deg,
      rgba(0,0,0,0.95) 0%,
      rgba(0,0,0,0.78) 55%,
      rgba(0,0,0,0.5) 100%
    );
  }

  .program-grid,
  .judges-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }
}


/* Small phones */
@media (max-width: 480px) {
  .header-inner {
    padding: 14px 14px;
  }

  .logo img {
    width: 150px;
  }

  .main-nav {
    gap: 8px 10px;
    font-size: 10px;
  }

  .main-nav a {
    padding: 4px 0;
  }

  .nav-button {
    padding: 9px 13px !important;
  }

  .hero {
    min-height: 520px;
    background-position: 76% center;
  }

  .hero-content {
    padding: 0 18px;
  }

  .hero h1 {
    font-size: 32px;
    max-width: 320px;
  }

  .hero-label {
    font-size: 10px;
    letter-spacing: 1.6px;
  }

  .hero-tags {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .hero-tags .gold {
    font-size: 11px;
  }

  .hero-actions {
    display: none;
  }

  .container,
  .container.wide {
    width: calc(100% - 26px);
  }

  h2 {
    font-size: 28px;
  }

  .categories-banner {
    width: 100%;
    border-radius: 8px;
  }

  .program-card,
  .judge-placeholder {
    padding: 24px 18px;
  }
}
/* =========================================================
   FIX COMPETITION CATEGORIES SECTION
   Dance Battle Salonica
========================================================= */

#categories {
  background: #242529;
  padding: 70px 0 90px;
  overflow: hidden;
}

#categories .container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

#categories .container.wide {
  width: min(1500px, calc(100% - 48px));
  margin: 0 auto 70px;
}

#categories .categories-banner {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.45);
}

/* Heading */
.categories-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
  padding: 0 16px;
}

.categories-heading h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: normal;
}

.categories-heading p {
  margin: 0;
  color: #b8b8b8;
  font-size: 17px;
  line-height: 1.6;
}

/* Cards grid */
.category-cards {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px;
  width: 100%;
}

/* Single card */
.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 330px;
  padding: 34px 26px;
  background:
    radial-gradient(circle at top right, rgba(212,175,55,0.14), transparent 42%),
    linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015)),
    #111216;
  border: 1px solid rgba(212,175,55,0.32);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  transition: all 0.3s ease;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at top right, rgba(247,215,116,0.22), transparent 42%);
  opacity: 0;
  transition: 0.3s ease;
  pointer-events: none;
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: rgba(247,215,116,0.7);
  box-shadow:
    0 28px 85px rgba(0,0,0,0.55),
    0 0 28px rgba(212,175,55,0.18);
}

.category-card:hover::before {
  opacity: 1;
}

.category-number {
  position: relative;
  z-index: 2;
  color: #d4af37;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 28px;
}

.category-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.category-card p {
  position: relative;
  z-index: 2;
  margin: 0 0 30px;
  color: #b8b8b8;
  font-size: 15px;
  line-height: 1.65;
}

.category-card a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  color: #d4af37;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
}

.category-card a::after {
  content: "→";
  margin-left: 9px;
  transition: 0.25s ease;
}

.category-card a:hover {
  color: #f7d774;
}

.category-card a:hover::after {
  transform: translateX(5px);
}

/* Tablets */
@media (max-width: 1100px) {
  #categories .container {
    width: min(100% - 36px, 1180px);
  }

  #categories .container.wide {
    width: min(100% - 36px, 1500px);
  }

  .category-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Mobile */
@media (max-width: 640px) {
  #categories {
    padding: 50px 0 65px;
  }

  #categories .container,
  #categories .container.wide {
    width: calc(100% - 28px);
  }

  #categories .container.wide {
    margin-bottom: 46px;
  }

  .categories-heading {
    margin-bottom: 30px;
  }

  .categories-heading h2 {
    font-size: 30px;
    line-height: 1.15;
  }

  .categories-heading p {
    font-size: 15px;
  }

  .category-cards {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .category-card {
    min-height: auto;
    padding: 28px 22px;
  }

  .category-card h3 {
    font-size: 30px;
  }

  .category-card p {
    font-size: 14px;
  }
}
/* Language Switch */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
  padding: 4px;
  border: 1px solid rgba(212,175,55,.28);
  border-radius: 999px;
  background: rgba(0,0,0,.22);
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: .5px;
}

.lang-switch a:hover {
  color: #f7d774;
}

.lang-switch a.active {
  background: linear-gradient(135deg, #d4af37, #f7d774);
  color: #050505;
}

@media (max-width: 900px) {
  .lang-switch {
    margin-left: 0;
    margin-top: 8px;
  }
}