:root {
  --bordo: #C0533D;
  --bordo-dark: #A04533;
  --bordo-deeper: #783426;
  --arany: #EACE77;
  --arany-light: #F5E8B5;
  --arany-dark: #C4A44E;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #333;
  background: var(--bordo);
  display: flex;
  flex-direction: column;
}

.budavar-bar {
  display: flex;
  height: 6px;
  flex-shrink: 0;
}
.budavar-bar span:nth-child(1) { flex: 1; background: var(--bordo-dark); }
.budavar-bar span:nth-child(2) { flex: 1; background: var(--arany); }
.budavar-bar span:nth-child(3) { flex: 1; background: var(--bordo-dark); }
.budavar-bar span:nth-child(4) { flex: 1; background: var(--arany); }

.main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(234,206,119,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(234,206,119,0.05) 0%, transparent 50%),
    linear-gradient(160deg, #C0533D 0%, #A04533 40%, #783426 100%);
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(234,206,119,0.08);
  pointer-events: none;
}
.deco-circle-1 { width: 600px; height: 600px; left: -200px; top: -150px; animation: float-slow 20s ease-in-out infinite; }
.deco-circle-2 { width: 450px; height: 450px; right: -120px; bottom: -100px; border-color: rgba(234,206,119,0.06); animation: float-slow 25s ease-in-out infinite reverse; }
.deco-circle-3 { width: 200px; height: 200px; right: 15%; top: 12%; border-color: rgba(234,206,119,0.05); animation: float-slow 18s ease-in-out infinite; }

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(15px, -20px); }
}

.side-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  display: flex;
  flex-direction: column;
}
.side-bar span:nth-child(1) { flex: 1; background: var(--bordo-dark); }
.side-bar span:nth-child(2) { flex: 1; background: var(--arany); opacity: 0.6; }

.content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 680px;
  animation: fade-in 1.2s ease-out;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.lang-switcher {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 3rem;
  animation: fade-in 1.2s ease-out 0.2s both;
}
.lang-switcher button {
  background: transparent;
  border: 1px solid rgba(234,206,119,0.25);
  color: rgba(255,255,255,0.5);
  padding: 6px 14px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}
.lang-switcher button:hover { border-color: rgba(234,206,119,0.5); color: rgba(255,255,255,0.8); }
.lang-switcher button.active { background: rgba(234,206,119,0.15); border-color: var(--arany); color: var(--arany-light); font-weight: 600; }

.gold-line { width: 60px; height: 2px; background: linear-gradient(90deg, transparent, var(--arany), transparent); margin: 0 auto 2rem; animation: fade-in 1.2s ease-out 0.3s both; }

.brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--arany-light);
  letter-spacing: 3px;
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 30px rgba(234,206,119,0.15);
  animation: fade-in 1.2s ease-out 0.4s both;
}

.sub-brand { font-size: 0.7rem; color: rgba(255,255,255,0.35); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 2.5rem; animation: fade-in 1.2s ease-out 0.5s both; }

.badge {
  display: inline-block;
  border: 1.5px solid var(--arany);
  color: var(--arany-light);
  padding: 10px 32px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  animation: fade-in 1.2s ease-out 0.6s both, pulse-border 3s ease-in-out infinite;
}

@keyframes pulse-border {
  0%, 100% { border-color: var(--arany); box-shadow: 0 0 0 0 rgba(234,206,119,0); }
  50% { border-color: var(--arany-light); box-shadow: 0 0 20px rgba(234,206,119,0.1); }
}

.description { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.75; max-width: 480px; margin: 0 auto 3rem; animation: fade-in 1.2s ease-out 0.7s both; }

.separator { width: 30px; height: 1px; background: rgba(234,206,119,0.3); margin: 0 auto 2rem; animation: fade-in 1.2s ease-out 0.8s both; }

.contact { animation: fade-in 1.2s ease-out 0.9s both; }
.contact-item { display: flex; align-items: center; justify-content: center; gap: 10px; color: rgba(255,255,255,0.45); font-size: 0.85rem; margin-bottom: 0.6rem; transition: color 0.3s; }
.contact-item:hover { color: rgba(255,255,255,0.7); }
.contact-item svg { flex-shrink: 0; opacity: 0.5; }
.contact-item a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(234,206,119,0.2); transition: border-color 0.3s; }
.contact-item a:hover { border-color: var(--arany); color: var(--arany-light); }

.footer-bar { display: flex; height: 4px; flex-shrink: 0; }
.footer-bar span:nth-child(1) { flex: 1; background: var(--arany); }
.footer-bar span:nth-child(2) { flex: 1; background: var(--bordo-dark); }
.footer-bar span:nth-child(3) { flex: 1; background: var(--arany); }
.footer-bar span:nth-child(4) { flex: 1; background: var(--bordo-dark); }

.copyright { background: var(--bordo-deeper); text-align: center; padding: 12px; font-size: 0.7rem; color: rgba(255,255,255,0.25); letter-spacing: 1px; flex-shrink: 0; }

@media (max-width: 600px) {
  .content { padding: 1.5rem; }
  .lang-switcher { gap: 4px; }
  .lang-switcher button { padding: 5px 10px; font-size: 0.7rem; }
  .description { font-size: 0.88rem; }
  .brand { letter-spacing: 2px; }
}
