/* Fő stílusok Mariachi Gamenca | Minden megjegyzés magyarul! */
@import url('https://fonts.googleapis.com/css2?family=Anton:wght@400&family=Montserrat:wght@400;700&display=swap');

:root {
  --bordo: #5D1727;
  --orange: #EF6C00;
  --gold: #FFC107;
  --black: #212121;
  --red: #D32F2F;
  --shadow: 0 4px 10px rgba(0,0,0,0.3);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bordo);
  color: var(--black);
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-size: 18px;
  line-height: 1.6;
  background-image: linear-gradient(135deg, var(--bordo) 60%, var(--orange) 100%), url('../img/texture.webp');
  background-size: cover, 400px;
  background-repeat: no-repeat, repeat;
}

h1, h2, h3, h4 {
  font-family: 'Anton', Arial, sans-serif;
  color: var(--gold);
  margin-top: 0;
}

h1 {
  font-size: 58px;
  letter-spacing: 2px;
  text-shadow: 0 2px 12px var(--red);
}

h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

@media (max-width: 600px) {
  h1 { font-size: 38px; }
  h2 { font-size: 28px; }
  body { font-size: 16px; }
}

header {
  width: 100%;
  background: rgba(33, 18, 18, 0.95);
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: background 0.3s;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}

.logo {
  font-family: 'Anton', Arial, sans-serif;
  font-size: 32px;
  color: var(--gold);
  letter-spacing: 1px;
  text-decoration: none;
  display: flex;
  align-items: center;
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: color 0.2s;
  position: relative;
}

nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: -4px;
}

nav a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 32px;
  height: 32px;
  justify-content: center;
  z-index: 1100;
}

.hamburger span {
  height: 4px;
  width: 100%;
  background: var(--gold);
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 900px) {
  nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -400px;
  width: 300px;
  height: 100vh;
  background: rgba(33, 18, 18, 0.98);
  box-shadow: -2px 0 12px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px 24px;
  z-index: 1200;
  transition: right 0.4s cubic-bezier(.77,0,.18,1);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  color: var(--gold);
  font-size: 22px;
  text-decoration: none;
  margin-bottom: 16px;
  font-weight: 700;
}

.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--bordo) 60%, var(--orange) 100%);
  background-image: url('/img/img\ \(4\).webp');
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  position: relative;
  margin-top: 72px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(93, 23, 39, 0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--gold);
  animation: fadeIn 0.7s;
}

.hero-fire {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px auto;
  background: url('../img/torch.webp') no-repeat center/contain;
  animation: fireFlicker 1.2s infinite alternate;
}

@keyframes fireFlicker {
  0% { opacity: 0.85; filter: blur(0.5px); }
  50% { opacity: 1; filter: blur(0); }
  100% { opacity: 0.7; filter: blur(1px); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.section {
  max-width: 1100px;
  margin: 0 auto 64px auto;
  padding: 48px 24px 24px 24px;
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  animation: fadeIn 0.7s;
}

.section-title {
  color: var(--gold);
  font-size: 36px;
  margin-bottom: 16px;
}

.btn {
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 10px;
  font-size: 22px;
  font-family: 'Anton', Arial, sans-serif;
  font-weight: 700;
  padding: 16px 40px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  animation: pulse 1.2s infinite alternate;
}

.btn:hover, .btn:focus {
  background: var(--red);
  color: #fff;
  transform: scale(1.05);
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: var(--shadow); }
  100% { transform: scale(1.1); box-shadow: 0 8px 24px rgba(211,47,47,0.25); }
}

.faq {
  margin-top: 32px;
}

.faq-item {
  margin-bottom: 24px;
  background: rgba(255,193,7,0.08);
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.faq-q {
  font-weight: 700;
  color: var(--red);
  margin-bottom: 8px;
}

.faq-a {
  color: var(--black);
}

footer {
  background: rgba(33, 18, 18, 0.98);
  color: var(--gold);
  padding: 32px 0 16px 0;
  text-align: center;
  font-size: 16px;
  border-top: 2px solid var(--red);
  margin-top: 48px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--gold);
  text-decoration: underline;
  font-weight: 700;
}

.footer-icons {
  margin: 16px 0;
}

.footer-icons img {
  
  height: 48px;
  margin: 0 8px;
  vertical-align: middle;
  filter: drop-shadow(0 2px 8px #0008);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(33, 18, 18, 0.9);
  color: var(--gold);
  padding: 28px 32px;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 95vw;
  font-size: 17px;
  animation: fadeIn 0.7s;
}

.cookie-banner button {
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  padding: 10px 28px;
  margin: 0 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.cookie-banner button:hover {
  background: var(--red);
  color: #fff;
  transform: scale(1.05);
}

.cookie-banner a {
  color: var(--gold);
  text-decoration: underline;
}

@media (max-width: 600px) {
  .cookie-banner {
    padding: 18px 8px;
    font-size: 15px;
  }
}

#age-popup {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(33, 18, 18, 0.93);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.7s;
}

#age-popup .popup-content {
  background: var(--bordo);
  color: var(--gold);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  padding: 48px 32px 32px 32px;
  max-width: 95vw;
  text-align: center;
  position: relative;
}

#age-popup label {
  display: block;
  margin: 24px 0 12px 0;
  color: var(--gold);
  font-size: 18px;
}

#age-popup input[type="checkbox"] {
  width: 18px;
  height: 18px;
  opacity: 1;
  visibility: visible;
  accent-color: #007bff;
  margin-right: 8px;
}

#age-popup button {
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 700;
  padding: 12px 36px;
  margin-top: 18px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

#age-popup button:disabled {
  background: #bdbdbd;
  color: #fff;
  cursor: not-allowed;
}

#age-popup button:hover:enabled {
  background: var(--red);
  color: #fff;
  transform: scale(1.05);
}

::-webkit-scrollbar {
  width: 10px;
  background: var(--bordo);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 8px;
}

/* Parallax háttér a Hero szekcióhoz */
.hero-parallax {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  background: url('../img/hero-bg.webp') center/cover no-repeat;
  will-change: background-position;
  pointer-events: none;
}

/* Egyéb reszponzív beállítások */
@media (max-width: 900px) {
  .header-inner { flex-direction: column; gap: 12px; }
  .section { padding: 32px 8px 16px 8px; }
} 

/* Fiesta Hangulat és Szerencse-Szenvedély szekciókhoz */
.fiesta-hangulat, .szerencse-szenvedely {
  background: linear-gradient(120deg, rgba(239,108,0,0.10) 0%, rgba(93,23,39,0.10) 100%);
  border: 2px solid rgba(255,193,7,0.13);
  box-shadow: 0 6px 32px 0 rgba(255,193,7,0.10), 0 1.5px 8px 0 rgba(211,47,47,0.10);
  position: relative;
  overflow: hidden;
}
.fiesta-hangulat::before, .szerencse-szenvedely::before {
  content: '';
  position: absolute;
  top: -40px; left: -40px; width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(255,193,7,0.18) 0%, rgba(239,108,0,0.05) 100%);
  z-index: 0;
  border-radius: 50%;
  filter: blur(8px);
}
.fiesta-hangulat::after, .szerencse-szenvedely::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px; width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(211,47,47,0.18) 0%, rgba(93,23,39,0.05) 100%);
  z-index: 0;
  border-radius: 50%;
  filter: blur(8px);
}
.fiesta-hangulat .section-title, .szerencse-szenvedely .section-title {
  text-shadow: 0 2px 16px #FFC10799, 0 1px 4px #D32F2F55;
}
.fiesta-hangulat img, .szerencse-szenvedely img {
  transition: transform 0.5s cubic-bezier(.77,0,.18,1), box-shadow 0.5s;
  box-shadow: 0 4px 24px rgba(255,193,7,0.18), 0 1.5px 8px rgba(211,47,47,0.10);
}
.fiesta-hangulat img:hover, .szerencse-szenvedely img:hover {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 8px 32px #FFC107cc, 0 2px 12px #D32F2F88;
}
hr {
  border: 0;
  border-top: 2px dashed #FFC107;
  width: 60%;
  margin: 36px auto 0 auto;
  opacity: 0.5;
  transition: opacity 0.4s;
}
.section {
  transition: box-shadow 0.4s, background 0.4s;
}
.section:hover {
  box-shadow: 0 8px 32px #FFC10733, 0 2px 12px #D32F2F22;
  background: rgba(255,255,255,0.07);
} 

@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu .close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 32px;
  font-family: 'Anton', Arial, sans-serif;
  cursor: pointer;
  z-index: 1300;
  transition: color 0.2s, transform 0.2s;
}
.mobile-menu .close-btn:hover {
  color: var(--red);
  transform: scale(1.15) rotate(8deg);
} 

@media (max-width: 900px) {
  body {
    overflow-x: hidden;
  }
} 