
/* ================= INSTANT DARK BACKGROUND ================= */
html { background-color: #0a0f1f; }
body { background-color: #0a0f1f; }

/* ================= BASE ================= */

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0a0f1f;  /* VISSZA: konkrét szín */
  color: #e5e7eb;       /* VISSZA: konkrét szín */
}

/* ================= TOP NAV ================= */

.top-nav {
  background: rgba(10,15,31,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-weight: 800;
  font-size: 18px;
  color: #38bdf8;       /* VISSZA: konkrét szín */
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #e5e7eb;       /* VISSZA: konkrét szín */
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(56,189,248,0.22);  /* VISSZA: konkrét szín */
  border-color: rgba(56,189,248,0.55); /* VISSZA: konkrét szín */
  color: #38bdf8;                     /* VISSZA: konkrét szín */
}

/* ================= GLOBAL SPACING ================= */

.content,
.app-page,
.event-container {
  margin-top: 24px;
}

/* ================= MAIN ================= */

.content {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 32px 40px;
  display: flex;
  gap: 32px;
}

.concert-column { flex: 2.3; }

.info-column {
  flex: 1;
  background: rgba(255,255,255,0.03);
  padding: 22px;
  border-radius: 16px;  /* VISSZA: konkrét érték */
  border: 1px solid #1e293b;  /* VISSZA: konkrét szín */
}

/* ================= CARDS ================= */

.concert-list {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 22px;
}

.card {
  background: #0f172a;  /* VISSZA: konkrét szín */
  border: 1px solid #1e293b;  /* VISSZA: konkrét szín */
  border-radius: 14px;  /* VISSZA: konkrét érték */
  padding: 14px;
}

.card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 10px;  /* VISSZA: konkrét érték */
  margin-bottom: 12px;
}

.artist { 
  color: #e5e7eb;  /* VISSZA: konkrét szín */
  font-size: 20px; 
  font-weight: 600; 
}

.venue { 
  color: #38bdf8;  /* VISSZA: konkrét szín */
  font-size: 15px; 
}

.concert-list a { 
  text-decoration: none; 
  color: inherit; 
}

.time { 
  color: #e5e7eb;  /* VISSZA: konkrét szín */
  font-size: 15px; 
  margin-top: 6px; 
  opacity: 0.9; 
}

/* ================= EVENT PAGE ================= */

.background {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #0f172a, #020617); /* VISSZA: konkrét szín */

  z-index: -1;
}


.event-container {
  max-width: 900px;
  margin: 24px auto;
  padding: 0 20px;
}

.event-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 24px;
}

.event-card {
  background: linear-gradient(180deg, #0f172a, #0b1224); /* VISSZA: konkrét szín */
  border: 1px solid rgba(255,255,255,0.08);  /* VISSZA: konkrét szín */
  border-radius: 18px;  /* VISSZA: konkrét érték */
  padding: 28px;
}

.event-card .event-title { 
  text-align: left; 
}

.event-meta p { 
  color: #38bdf8;  /* VISSZA: konkrét szín */
  margin: 6px 0; 
}

.ticket-button {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 22px;
  background: #38bdf8;  /* VISSZA: konkrét szín */
  color: #02131f;
  font-weight: 800;
  border-radius: 14px;  /* VISSZA: konkrét érték */
  text-decoration: none;
}

/* ================= FOOTER ================= */

footer, .main-footer {
  margin-top: 24px;
  padding: 24px 0 32px;
  text-align: center;
  color: #38bdf8;  /* VISSZA: konkrét szín */
}

footer a, .main-footer a {
  color: #38bdf8;  /* VISSZA: konkrét szín */
  font-weight: 600;
  text-decoration: none;
}

/* ================= MOBILE ================= */

@media (max-width:900px){
  .content{flex-direction:column;padding:0 24px 40px;}
  .concert-list{grid-template-columns:1fr;}
}

/* ========================================= */
/* APP PAGE – RESTORE CENTERED CARD */
/* ========================================= */

.app-page {
  display: flex;
  justify-content: center;
}

.app-card {
  width: 100%;
  max-width: 1000px;
}

/* ================================================= */
/* ===== EVENT IMAGE – DO NOT CROP, FIT INSIDE ===== */
/* ================================================= */

.event-content img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  background: #020617;   /* VISSZA: konkrét szín */
  border-radius: 14px;   /* VISSZA: konkrét érték */
}

.event-content {
  padding: 28px !important;
}

/* ================================================= */
/* ===== APP PAGE – RESTORE COMPACT CARD ===== */
/* ================================================= */

.app-page {
  display: flex;
  justify-content: center;
  padding-bottom: 60px;
}

.app-card {
  width: 100%;
  max-width: 1000px;
}
/* ================= APP PAGE HEADER CENTERING ================= */
.app-page h1,
.app-page h2,
.app-page h3 {
  text-align: center;
}

/* ========================================= */
/* APP PAGE – mobil oldalsó padding vissza */
/* ========================================= */
@media (max-width: 900px) {
  .app-page {
    padding: 0 24px 40px;
  }
}



/* ===== EVENT PAGE MOBILE LAYOUT FIX ===== */
@media (max-width: 768px) {
  .event-container {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 12px;
  }

  .event-card {
    border-radius: 16px;  /* VISSZA: konkrét érték */
    padding: 16px;
  }

  .event-title {
    font-size: 24px;
  }
}

/* ===== APP PROMO VIDEO – PORTRAIT (9:16) ===== */

.app-video {
  width: 100%;
  max-width: 420px;
  margin: 32px auto;
  aspect-ratio: 9 / 16;
  border-radius: 20px;  /* VISSZA: konkrét érték */
  overflow: hidden;
  background-color: #000;
}

.app-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* ===== FŐOLDAL – APP DEMO VIDEO (ASIDE) ===== */

.info-column .app-video {
  width: 100%;
  max-width: 360px;
  margin: 20px auto 28px;
  aspect-ratio: 9 / 16;
  border-radius: 18px;  /* VISSZA: konkrét érték */
  overflow: hidden;
  background-color: #000;
}

.info-column .app-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* CTA LINK – APP LETÖLTÉS */

.cta-arrow,
.cta-arrow:visited {
  color: #1e40af;          /* VISSZA: konkrét szín */
  font-weight: 600;
  text-decoration: none;
}

.cta-arrow:hover {
  color: #0ea5e9;          /* VISSZA: konkrét szín */
  text-decoration: underline;
}

/* Venue pages - card grid like homepage */
.venue-event-card {
  padding: 14px;
  border-radius: 14px;  /* VISSZA: konkrét érték */
  border: 1px solid rgba(255,255,255,0.12);
  margin: 10px 0;
}

.venue-event-time {
  opacity: 0.85;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.venue-event-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}

.venue-event-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 10px 12px;
  border-radius: 12px;  /* VISSZA: konkrét érték */
  text-decoration: none;
  font-weight: 700;
}

.btn-secondary {
  opacity: 0.9;
}

.empty-state {
  opacity: 0.85;
  padding: 10px 0;
}

.venue-bottom-links{
  margin-top: 26px;
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
}

.venue-bottom-link{
  color: #38bdf8;  /* VISSZA: konkrét szín */
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(56,189,248,0.25);
  padding-bottom: 2px;
}

.venue-bottom-link:hover{
  border-bottom-color: rgba(56,189,248,0.65);
}

/* visited se legyen lila */
.venue-bottom-link:visited{
  color: #38bdf8;  /* VISSZA: konkrét szín */
}

/* ========== Venue pages: compact cards like homepage ========== */

.concert-column .concert-list{
  max-width: 980px;
  margin: 0 auto;
}

.concert-column .concert-list > a{
  width: 100%;
  max-width: 520px;
  justify-self: center;
}

.concert-column .card img{
  height: 170px !important;
}

.concert-column .concert-list{
  justify-content: center;
}

/* Venue pages: center the header text + section titles */
.concert-column h1,
.concert-column p,
.concert-column h2{
  text-align: center;
}

.concert-column p{
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.concert-column h2{
  margin-top: 28px;
  margin-bottom: 16px;
}

.card .info {
  text-align: center;
}

.today-link, .today-link:visited {
  color: #fff;  /* VISSZA: konkrét szín */
  text-decoration: none;
  font-size: 18px;
  margin-top: 10px;
  display: block;
  width: 100%;
  text-align: center;
}

.empty-state {
  text-align: center !important;
  max-width: 900px;
  margin: 20px auto 30px;
}

/* ===== FŐOLDAL – belső link erősítés (venue links) ===== */

.seo-venue-links-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 14px;
}

.seo-venue-links-grid a{
  display: block;
  padding: 10px 12px;
  border-radius: 12px;  /* VISSZA: konkrét érték */
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #38bdf8;  /* VISSZA: konkrét szín */
  text-decoration: none;
  font-weight: 700;
}

.seo-venue-links-grid a:hover{
  background: rgba(56,189,248,0.18);
  border-color: rgba(56,189,248,0.45);
  color: #e5e7eb;  /* VISSZA: konkrét szín */
}

.seo-venue-links-grid a:visited{
  color: #38bdf8;  /* VISSZA: konkrét szín */
}

/* ========================================= */
/* MOBILE LAYOUT – EGYSÉGES MINDEN OLDALON */
/* ========================================= */

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .nav-logo {
    font-size: 20px;
    line-height: 1.2;
  }

  .nav-links {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .nav-links li {
    margin: 0;
    padding: 0;
  }

  .nav-links a {
    padding: 6px 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  .lang-switch {
    margin-left: 0;
  }

  .content,
  .app-page,
  .event-container {
    flex-direction: column;
    padding: 0 16px 32px;
  }

  .info-column {
    display: block;
    width: 100%;
    margin-top: 24px;
    padding: 0;
    background: none;
    border: none;
  }

  .info-column > * {
    margin-bottom: 16px;
  }

  .concert-list {
    grid-template-columns: 1fr;
  }
}
.nav-social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 16px;
}

.nav-social-icons img {
  width: 18px;
  height: 18px;
  opacity: 0.75;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-social-icons a:hover img {
  opacity: 1;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .nav-social-icons {
    gap: 8px;
  }
}
/* =========================
   MOBILE HEADER – LOGO + ICONS SAME ROW
   ========================= */
@media (max-width: 768px) {

  .nav-container {
    display: flex;
    flex-direction: row;     /* EZ A KULCS */
    flex-wrap: wrap;
    align-items: center;
  }

  /* LOGÓ BALRA */
  .nav-logo {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
  }

  /* IKONOK UGYANABBA A SORBA, JOBBRA */
  .nav-social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;       /* EZ TOLJA JOBBRA */
  }

  /* MENÜ KÜLÖN SORBA */
  .nav-links {
    width: 100%;
    margin-top: 10px;
    justify-content: center;
  }
}
/* =========================
   SEO FOOTER – EXACT MATCH WITH INFO COLUMN
   ========================= */
.seo-footer-section {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 14px;

  /* PONT UGYANAZ, MINT .info-column */
  background: rgba(255,255,255,0.03);
  border: 1px solid #1e293b;
  border-radius: 16px;

  box-sizing: border-box;
}

.seo-footer-title {
  color: #e5e7eb;
}

.seo-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.seo-footer-links a {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #38bdf8;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.seo-footer-links a:hover {
  background: rgba(56,189,248,0.18);
  border-color: rgba(56,189,248,0.45);
  color: #e5e7eb;
}


/* =========================
   COMPACT H1 FOR LONG-TAIL PAGES
   ========================= */
.compact-h1 {
  font-size:18px;      /* H2-szerű méret */
  line-height: 1.2;
  margin-bottom: 12px;
  font-weight: 800;
}

@media (max-width: 768px) {
  .compact-h1 {
    font-size: 18px;
  }
}
/* =========================
   COMPACT H1 – OVERRIDE GLOBAL H1
   ========================= */
h1.compact-h1 {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 10px;
}

/* mobil */
@media (max-width: 768px) {
  h1.compact-h1 {
    font-size: 18px;
  }
}
