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

:root {
  --blue: #3162FF;
  --blue-light: #6b8fff;
  --red: #C20020;
  --cream: #f5f0e8;
  --charcoal: #1a1a1a;
  --gray: #888;
  --gray-light: #d4cfc6;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
.logo-blue { color: var(--blue); font-family: 'Anton', sans-serif; letter-spacing: 1px; }
.logo-red  { color: var(--red);  font-family: 'Anton', sans-serif; letter-spacing: 1px; }

.section-label {
  font-family: 'Anton', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--gray);
}

.section-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

/* ===== BLOBS ===== */
.blob {
  position: absolute;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 55%;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}
.blob-blue { background: var(--blue); }
.blob-red  { background: var(--red); }

.blob-hero-1 { width: 500px; height: 420px; top: -80px; left: -120px; opacity: 0.15; }
.blob-hero-2 { width: 380px; height: 350px; bottom: -60px; right: -80px; opacity: 0.12; }
.blob-festival { width: 300px; height: 280px; bottom: -60px; right: -60px; }
.blob-artist   { width: 400px; height: 360px; top: -100px; right: -100px; }
.blob-community{ width: 450px; height: 380px; bottom: -80px; left: -120px; }

/* ===== NAV ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--charcoal);
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  font-family: 'Anton', sans-serif;
  font-size: 1.3rem;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  flex-wrap: wrap;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--charcoal);
  padding: 0.35rem 0.65rem;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover {
  background: var(--blue);
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
}

.hero-content { position: relative; z-index: 2; }

.hero-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-family: 'Caveat', cursive;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.hero-sub {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
  font-style: italic;
}

.squiggle-line {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='20'%3E%3Cpath d='M0 10 Q25 0 50 10 Q75 20 100 10 Q125 0 150 10 Q175 20 200 10' stroke='%233162FF' stroke-width='2.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  opacity: 0.6;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  border: 2px solid var(--blue);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(49,98,255,0.35);
}

/* ===== PILLS ===== */
.pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 3rem;
}
.pill {
  padding: 0.6rem 1.6rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  display: inline-block;
}
.pill-blue    { background: var(--blue); color: #fff; }
.pill-red     { background: var(--red);  color: #fff; }
.pill-outline { border: 2px solid var(--charcoal); color: var(--charcoal); background: transparent; }

/* ===== FESTIVAL SECTION ===== */
.festival { background: var(--cream); }

.section-subtitle {
  font-style: italic;
  color: var(--gray);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.festival-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.festival-card {
  background: #fff;
  border: 2px solid var(--charcoal);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.festival-card:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 0 var(--charcoal);
}
.card-icon { font-size: 2rem; margin-bottom: 1rem; }
.festival-card h3 {
  font-family: 'Anton', sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* ===== PROGRAMMA ===== */
.programma { background: var(--charcoal); color: var(--cream); }
.programma .section-title { color: var(--cream); }
.programma .section-label { color: #e8a020 !important; }

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
  border-left: 3px solid #e8a020;
  padding-left: 2rem;
}

.schedule-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(245,240,232,0.1);
  position: relative;
}

.schedule-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  position: absolute;
  left: -2.7rem;
  top: 50%;
  transform: translateY(-50%);
}

.schedule-time {
  font-family: 'Anton', sans-serif;
  font-size: 1.3rem;
  color: #e8a020;
  min-width: 70px;
}

.schedule-desc {
  font-size: 1rem;
  color: var(--cream);
}

/* ===== KALLITEXNES ===== */
.kallitexnes { background: #fff; }

.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.artist-card {
  text-align: center;
  padding: 2rem 1rem;
  border: 2px solid var(--gray-light);
  border-radius: 16px;
  transition: border-color 0.2s, transform 0.2s;
}
.artist-card:hover { border-color: var(--blue); transform: translateY(-3px); }

.artist-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  opacity: 0.85;
}

.artist-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.artist-role {
  font-size: 0.85rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== DRASEIS ===== */
.draseis { background: var(--cream); }

.actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.action-card {
  padding: 2rem;
  border: 2px solid var(--charcoal);
  border-radius: 16px;
  position: relative;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}
.action-card:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 0 var(--red);
}

.action-number {
  font-family: 'Anton', sans-serif;
  font-size: 2.5rem;
  color: var(--red);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.action-card h3 {
  font-family: 'Anton', sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* ===== KOINOTITA ===== */
.koinotita { background: var(--blue); color: #fff; }
.koinotita .section-label { color: rgba(255,255,255,0.6) !important; }
.koinotita .section-title { color: #fff; }

.community-title {
  font-size: clamp(3rem, 8vw, 6rem);
}

.community-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}
.koinotita .pill-blue    { background: #fff; color: var(--blue); }
.koinotita .pill-red     { background: var(--red); color: #fff; }
.koinotita .pill-outline { border-color: rgba(255,255,255,0.6); color: #fff; }

.community-text {
  max-width: 600px;
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 2rem;
}
.community-flower { font-size: 2.5rem; }

/* ===== TAUTOTITA ===== */
.tautotita { background: #fff; }

.identity-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 2rem;
}

.big-blob-blue {
  background: var(--blue);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 55%;
  padding: 3rem 2.5rem;
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.65;
  font-weight: 500;
}

.identity-values {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  font-size: 1rem;
}
.value-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== STIRIKTES ===== */
.stiriktes { background: var(--cream); }

.supporters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.supporter-logo {
  height: 80px;
  border: 2px solid var(--gray-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 0.5px;
  transition: border-color 0.2s;
}
.supporter-logo:hover { border-color: var(--blue); color: var(--blue); }

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.footer-blob {
  position: absolute;
  width: 300px;
  height: 280px;
  background: var(--red);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 55%;
  opacity: 0.08;
  bottom: -80px;
  right: -80px;
}

.footer-inner { position: relative; z-index: 2; }

.footer-logo {
  font-family: 'Anton', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  color: rgba(245,240,232,0.55);
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-peace {
  font-size: 1.8rem;
  opacity: 0.4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); border-top: 2px solid var(--charcoal); padding: 1rem 2rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .identity-content { grid-template-columns: 1fr; gap: 2rem; }
  .pills-row { flex-direction: column; }
  .community-pills { flex-direction: column; }
  .section { padding: 4rem 0; }
  .schedule-list { padding-left: 1.5rem; }
}
