/* ============================================
   IDENTITÁSVÁLTÁS - MAIN DESIGN SYSTEM
   ============================================ */

/* === LOGO === */
.brand-logo {
  max-width: 120px;
  height: auto;
}

@media (max-width: 480px) {
  .brand-logo {
    max-width: 80px;
  }
}

/* === CSS VÁLTOZÓK === */
:root {
  /* Színek */
  --deep-night: #141E2E;
  --cosmic-blue: #1a2738;
  --mystic-dark: #0f1720;
  --gold-light: #A08853;
  --gold-bright: #b9a06a;
  --gold-pale: #d4c49a;
  --cream: #faf8f5;
  --text-light: rgba(255, 255, 255, 0.9);
  --text-muted: rgba(255, 255, 255, 0.6);

  /* Tipográfia */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Poppins', sans-serif;

  /* Térközök */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;

  /* Átmenetek */
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--deep-night);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* === ANIMÁLT HÁTTÉR === */
.background-stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Csillagok */
.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  opacity: 0;
  animation: twinkle var(--duration, 3s) infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: var(--opacity, 0.8);
  }
}

/* Lebegő orbok */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  animation: float var(--duration, 20s) infinite ease-in-out;
  animation-delay: var(--delay, 0s);
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: var(--gold-light);
  top: 10%;
  left: 10%;
  --duration: 18s;
}

.orb-2 {
  width: 250px;
  height: 250px;
  background: var(--cosmic-blue);
  top: 60%;
  right: 15%;
  --duration: 22s;
  --delay: 5s;
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: var(--gold-bright);
  bottom: 10%;
  left: 30%;
  --duration: 25s;
  --delay: 10s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -30px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

/* === TIPOGRÁFIA === */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--space-md);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-sm);
  font-size: clamp(1rem, 2vw, 1.125rem);
}

/* === KÖZÖS KOMPONENSEK === */

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 1;
}

/* Section */
section {
  padding: var(--space-xl) 0;
  position: relative;
  z-index: 1;
}

/* Glassmorphism kártya */
.card {
  background: rgba(26, 39, 56, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--gold-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  border-top-color: var(--gold-bright);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Gombok */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-bright));
  color: var(--deep-night);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-pale));
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(160, 136, 83, 0.3);
}

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

.btn-secondary:hover {
  background: var(--gold-light);
  color: var(--deep-night);
}

/* Form elemek */
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  background: rgba(26, 39, 56, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  transition: var(--transition);
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold-light);
  background: rgba(26, 39, 56, 0.7);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* === UTILITY CLASSES === */
.text-center {
  text-align: center;
}

.text-gold {
  color: var(--gold-light);
}

.text-muted {
  color: var(--text-muted);
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

/* === RESZPONZIVITÁS === */
@media (max-width: 768px) {
  :root {
    --space-xl: 2.5rem;
    --space-lg: 2rem;
  }

  section {
    padding: var(--space-lg) 0;
  }

  .card {
    padding: var(--space-md);
  }

  .btn {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
  }
}

/* Countdown Timer Styles */
.countdown-banner {
  background: rgba(160, 136, 83, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 15px 25px;
  border-radius: 12px;
  text-align: center;
  margin: 20px auto 30px auto;
  max-width: 600px;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 0 20px rgba(160, 136, 83, 0.1);
  backdrop-filter: blur(5px);
}

.countdown-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  font-weight: 500;
}

.countdown-timer {
  font-size: 1.6rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--gold);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

@media (min-width: 768px) {
  .countdown-banner {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    padding: 15px 40px;
  }

  .countdown-timer {
    font-size: 2rem;
    border-left: 1px solid rgba(160, 136, 83, 0.3);
    padding-left: 20px;
  }
}