/* ===== ALAP ===== */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #000;
  color: #eee;
  overflow-x: hidden;
}

h1, h2, h3 {
  color: #ff2b2b;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== FEJLÉC ===== */

header {
  width: 100%;
  background: rgba(0,0,0,0.85);
  border-bottom: 3px solid #b50000;
  display: flex;
  justify-content: space-between;  /* FIX */
  align-items: center;
  padding: 10px 25px 8px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 18px rgba(255,0,0,0.2);
}

/* LOGÓ FIX */
header img {
  height: 70px;
  width: auto;
}

/* EQ animáció */

.eq-container {
  display: flex;
  gap: 4px;
  margin-top: 6px;
  height: 25px;            /* fix magasság, nem ugrál semmi */
  align-items: flex-end;
  overflow: hidden;
}

.eq-bar {
  width: 4px;
  background: #ff1a1a;
  height: 10px;
  animation: eqAnim 0.6s infinite ease-in-out;
  transform-origin: bottom;
}

.eq-bar:nth-child(1){animation-delay:0s}
.eq-bar:nth-child(2){animation-delay:.1s}
.eq-bar:nth-child(3){animation-delay:.2s}
.eq-bar:nth-child(4){animation-delay:.1s}
.eq-bar:nth-child(5){animation-delay:0s}

@keyframes eqAnim{
  0%{height:10px}
  50%{height:25px}
  100%{height:10px}
}

/* ===== MENÜ ===== */

nav {
  display: flex;
  gap: 25px;
}

nav a {
  position: relative;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  padding: 6px 8px;
  transition: 0.3s;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 3px;
  width: 0%;
  background: #ff1f1f;
  transition: width .3s;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: #ff1f1f;
  text-shadow: 0 0 8px #ff0000;
}

/* Aktív menü link – minden oldalon a megfelelőt jelöld meg class="active"-vel */

nav a.active {
  color: #ff1f1f !important;
  text-shadow: 0 0 10px #ff0000;
}

nav a.active::after {
  width: 100% !important;
}



/* ===== OLDAL TARTALOM BLOKK ===== */

.page {
  padding: 170px 25px 60px;     /* fejléctől lejjebb */
  max-width: 1100px;
  margin: auto;
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== HERO BLOKK (csak a főoldalon használod) ===== */

.hero {
  background: linear-gradient(135deg, #200000, #440000);
  padding: 70px 50px 50px;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(255,0,0,0.25);
  animation: glowPulse 3s infinite ease-in-out;
  margin-top: 40px;
}

@keyframes glowPulse {
  0% { box-shadow: 0 0 15px rgba(255,0,0,0.20); }
  50% { box-shadow: 0 0 25px rgba(255,0,0,0.30); }
  100% { box-shadow: 0 0 15px rgba(255,0,0,0.20); }
}

/* Kiemelt CTA gomb (pl. Árajánlatkérés) */

.btn-primary {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 26px;
  border-radius: 30px;
  border: 2px solid #ff2b2b;
  background: radial-gradient(circle at top, #ff3b3b, #900000);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0 18px rgba(255,0,0,0.5);
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 26px rgba(255,0,0,0.7);
}

/* ===== LISTÁK ===== */

ul {
  padding-left: 20px;
}

ul li {
  font-size: 20px;
  margin-bottom: 12px;
}

/* ===== ÁR KÁRTYÁK ===== */

.card {
  background: #111;
  border: 2px solid #b00000;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 0 18px rgba(255,0,0,0.5);
  transition: .3s;
}

.card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 28px rgba(255,0,0,0.35);
}

/* ===== REFERENCIÁK – VÉLEMÉNY DOBOZOK ===== */

.testimonial {
  background: #111;
  border-left: 4px solid #ff2b2b;
  padding: 18px 20px;
  border-radius: 10px;
  margin-bottom: 18px;
  box-shadow: 0 0 15px rgba(255,0,0,0.40);
}

.testimonial-title {
  font-weight: 700;
  margin-bottom: 6px;
}

.testimonial-name {
  margin-top: 8px;
  font-style: italic;
  color: #ff9999;
}


/* ===== KAPCSOLATI DOBOZ ===== */

.contact-card {
    background: #1a1a1a;
    border: 2px solid #444;
    border-radius: 15px;
    padding: 20px;
    max-width: 600px; /* Megszünteti a batár méretet */
    margin: 20px auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-left: 2px solid #8c0b0b; /* Elegáns arany hangsúly */
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #444;
    padding-bottom: 15px;
}

.contact-photo {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid #333;
}

.header-text h3 {
    margin: 0;
    color: #fff;
    font-size: 1.2rem;
}

.brand-name {
    margin: 2px 0;
    color: #DAA520; /* Piros helyett arany, sokkal elegánsabb */
    font-weight: bold;
    font-size: 0.9rem;
}

.sub-brand {
    margin: 0;
    color: #888;
    font-size: 0.8rem;
}

.card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 0.9rem;
}

.card-footer {
    background: #252525;
    padding: 12px;
    border-radius: 10px;
}





/* GDPR sor */

.gdpr-note {
  font-size: 12px;
  color: #ccc;
}

/* ===== FOOTER ===== */

footer {
  text-align: center;
  background: #111;
  padding: 10px;
  border-top: 2px solid #b00000;
  margin-top: 40px;
  color: #bbb;
}


/* ===== MENÜ – ASZTALI ===== */
nav {
  display: flex;
  gap: 25px;
}

nav a {
  position: relative;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  padding: 6px 8px;
  transition: 0.3s;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 3px;
  width: 0%;
  background: #ff1f1f;
  transition: width .3s;
}

nav a:hover::after { width: 100%; }
nav a:hover { color: #ff1f1f; text-shadow: 0 0 8px #ff0000; }

nav a.active { color: #ff1f1f !important; text-shadow: 0 0 10px #ff0000; }
nav a.active::after { width: 100% !important; }





.select-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #222;
  color: #fff;
  border: 2px solid #b50000;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.select-btn:hover {
  background: #ff2b2b;
  color: #fff;
  box-shadow: 0 0 12px rgba(255,0,0,0.5);
  transform: scale(1.05);
}

/* kiemelt kártya */
.price-card.popular {
  border-color: #ff2b2b;
  box-shadow: 0 0 25px rgba(255,0,0,0.5);
}

.more-reviews {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #ccc;
}

.more-reviews .plus-icon {
  font-size: 24px;
  color: #b50000;
  font-weight: 700;
  transition: transform 0.2s, color 0.2s;
  cursor: pointer;
}

.more-reviews .plus-icon:hover {
  color: #ff2b2b;
  transform: scale(1.2);
}

.more-reviews .text a {
  color: #ff2b2b;
  text-decoration: none;
  transition: color 0.2s;
}

.more-reviews .text a:hover {
  color: #b50000;
  text-decoration: underline;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.service-card {
  background: #0b0b0b;
  border: 2px solid #b50000;
  padding: 25px 20px;
  border-radius: 14px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.15);
  text-align: center;
  color: #fff;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.35);
  border-color: #ff2b2b;
}

.service-card .icon {
  font-size: 38px;
  margin-bottom: 12px;
  color: #ff2b2b;
  text-shadow: 0 0 10px rgba(255,0,0,0.5);
}

.service-card h3 {
  margin-bottom: 10px;
  color: #ff2b2b;
  font-size: 22px;
}

.service-card p {
  font-size: 16px;
  color: #ccc;
  line-height: 1.4;
}
/* ==== RÉGI HEADER + NAV FELÜLÍRÁSA ==== */
@media (max-width: 1000px) {
  header nav,
  nav {
    display: none !important;
  }
}

/* ==== PB MOBIL MENÜ – ÚJ, FELÜLÍRÁSSAL ==== */

/* Hamburger ikon pozíció */
.pb-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 2000;
}

/* Hamburger vonalak */
.pb-menu-toggle span {
  width: 28px;
  height: 3px;
  background: #ff2b2b;
  border-radius: 3px;
  display: block;
  transition: 0.3s;
}

/* NAV alap */
.pb-nav {
  display: flex;
  gap: 25px;
}

/* MOBIL nézet */
@media (max-width: 768px) {

  /* Hamburger ikon látszódjon */
  .pb-menu-toggle {
    display: flex !important;
    position: absolute;
    right: 15px;
    top: 25px;
  }

  /* NAV rejtése mobilon */
  .pb-nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.97);
    flex-direction: column;
    width: 220px;
    padding: 15px 18px;
    border-left: 2px solid #b50000;
    border-bottom: 2px solid #b50000;
    border-radius: 0 0 0 12px;
    box-shadow: 0 0 18px rgba(255, 0, 0, 0.35);
    display: none !important;
    gap: 14px;
    z-index: 1500;
  }

  /* NAV lenyílva */
  .pb-nav.open {
    display: flex !important;
  }

  /* Header mobil padding */
  .pb-header {
    padding: 10px 15px 10px;  
  }
}
@media (max-width: 768px) {
  .pb-header {
    padding-right: 60px !important;  /* helyet csinál a hamburgernek */
  }
  .pb-menu-toggle {
    right: 20px !important;
    top: 18px !important;
  }
}


/* --- MP3 LEJÁTSZÓ: VÉGLEGES FIXÁLT VERZIÓ --- */

.pb-demo-player {
    max-width: 730px !important;
    margin: 30px auto !important;
    padding: 18px 20px 22px !important;
    background: #0e0e0e !important;
    /* ÚJ STÍLUSÚ KERET */
    border: 2px solid #444 !important;
    border-left: 2px solid #8c0b0b !important;
    border-radius: 12px !important;
    color: #fff !important;
    font-family: 'Segoe UI', Arial, sans-serif !important;
    box-sizing: border-box !important;
}

.pb-demo-title {
    margin: 0 0 14px !important;
    text-align: center !important;
    font-size: 20px !important;
    color: #ff0000 !important; /* Arany cím */
}

/* Felső sor: Visszaállítjuk a vízszintes elrendezést */
.pb-demo-top {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 18px !important;
}

.pb-demo-controls {
    display: flex !important;
    gap: 8px !important;
}

.pb-demo-btn {
    width: 46px !important;
    height: 46px !important;
    border-radius: 8px !important;
    border: 1px solid #444 !important;
    border-left: 3px solid #8c0b0b !important;
    background: #111 !important;
    color: #fff !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.pb-demo-btn:hover {
    border-color: #DAA520 !important;
    background: #1e1e1e !important;
}

/* Csúszkák (Seekbar és Hangerő) */
.pb-demo-center {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.pb-demo-seek, .pb-demo-player input[type="range"] {
    width: 100% !important;
    -webkit-appearance: none !important;
    background: #333 !important;
    height: 6px !important;
    border-radius: 4px !important;
    outline: none !important;
}

/* A csúszka bogyója (hogy ne legyen kék!) */
.pb-demo-player input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none !important;
    width: 16px !important;
    height: 16px !important;
    background: #ff0000 !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    box-shadow: 0 0 8px rgba(255,0,0,0.5) !important;
}

/* Alsó sáv és lista */
.pb-demo-track {
    margin-top: 16px !important;
    padding: 12px !important;
    background: #151515 !important;
    border-radius: 8px !important;
    border: 1px solid #444 !important;
    border-left: 4px solid #8c0b0b !important;
    cursor: pointer !important;
}

.pb-demo-list {
    background: #111 !important;
    border: 1px solid #444 !important;
    border-left: 4px solid #8c0b0b !important;
    border-radius: 8px !important;
    margin-top: 8px !important;
}

.pb-demo-list div {
    padding: 10px 12px !important;
    border-bottom: 1px solid #222 !important;
}

.pb-demo-list div:hover {
    background: #1e1e1e !important;
    color: #DAA520 !important;
}
/* A lista alaphelyzete - NINCS !important a display-en */
.pb-demo-list {
    display: none; 
    background: #111 !important;
    border: 1px solid #444 !important;
    border-left: 4px solid #8c0b0b !important;
    border-radius: 8px !important;
    margin-top: 8px !important;
    overflow: hidden !important;
}

/* Ha a JS osztályt ad hozzá (biztonsági tartalék) */
.pb-demo-list.active, 
.pb-demo-list[style*="display: block"] {
    display: block !important;
}
/* --- MOBIL LEJÁTSZÓ FIX --- */
@media (max-width: 600px) {
    .pb-demo-top {
        flex-direction: column !important; /* Egymás alá rakja a sorokat */
        gap: 15px !important;
    }

    .pb-demo-controls {
        justify-content: center !important;
        width: 100% !important;
    }

    .pb-demo-center {
        width: 100% !important;
    }

    .pb-demo-seek {
        width: 100% !important;
        max-width: none !important;
    }

    .pb-demo-time {
        margin-top: 10px !important;
        flex-direction: row !important; /* Az idő maradjon egy sorban (0:00 / 0:00) */
        gap: 5px !important;
    }

    .pb-demo-volume {
        width: 100% !important;
        justify-content: center !important;
        margin-top: 5px !important;
    }

    #volumeBar {
        max-width: 150px !important; /* Hogy ne nyúljon túl hosszúra a hangerő */
    }
}
/* FAQ blokk stílus */
.faq {
    max-width: 400px;
    margin: 50px auto;
    text-align: center;
}

.faq h2 {
    margin-bottom: 25px;
}

/* accordion elemek */
.faq-item {
    border-bottom: 1px solid #ff0000; /* <<< PIROS ELVÁLASZTÓ VONAL */
}

/* rejtett checkbox (vezérlő elem) */
.faq-item input {
    display: none;
}

/* kérdés sor */
.faq-question {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 0;
    position: relative;
    text-align: center;
}

/* ikon hozzáadás (nyíl animáció) */
.faq-question::after {
    content: "▼";
    position: absolute;
    right: 0;
    top: 8px;
    font-size: 0.9rem;
    transition: 0.3s;
}

/* válasz blokk alapállapotban rejtve */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
    opacity: 0;
    padding: 0;
    text-align: center;
}

.faq .faq-answer,
.faq .faq-answer p {
  text-align: center !important;
}

.faq .faq-answer p {
  margin: 0 auto;
  display: inline-block;
  width: auto;
}

/* ha nyitva van: lenyílik */
.faq-item input:checked ~ .faq-answer {
    max-height: 200px;
    opacity: 1;
    padding-top: 6px;
}

/* nyíl elfordítása, ha nyitva */
.faq-item input:checked + .faq-question::after {
    transform: rotate(180deg);
}

/* gombok effekt telefon, email */

.quick-btn {
  background:#222 !important;
  border:2px solid #b50000 !important;
  color:#fff !important;
  transition:0.3s !important;
}

.quick-btn:hover {
  background:#ff1f1f !important;
  color:#fff !important;
  transform:scale(1.05) !important;
  box-shadow:0 0 12px rgba(255,0,0,0.5) !important;
}


/* Háttér teljesen fekete */
body {
    background: #000 !important;
    color: #fff;
}

/* A nagy wrap mögötti fehér háttér eltávolítva */
.why-wrap {
    background: none !important;
    max-width: 900px !important;   /* keskenyebbre véve */
    margin: 40px auto !important;
    padding: 0 20px !important;
}

/* A 3 kártya – háttér úgy, mint a nagy piros kártya alatt */
.why-item {
    /* Alap háttér és méretek */
    background: #0b0000 !important;
    padding: 18px !important;
    border-radius: 14px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 0 25px rgba(255,0,0,0.15) !important;
    box-sizing: border-box !important;

    /* ALAPHELYZET: Szürke keret, piros bal szél */
    border: 2px solid #444 !important;
    border-left: 2px solid #8c0b0b !important; 
}

/* HOVER: A szürke aranyra vált, a bal szél marad piros */
.why-item:hover {
    transform: translateY(-5px) !important;
    border-color: #DAA520 !important;      /* Arany keret */
    border-left-color: #8c0b0b !important; /* Piros bal szél marad */
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.2) !important;
}



/* Ikon háttér finom piros */
.why-icon {
    background: rgba(255, 0, 0, 0.08) !important;
    color: #ff2b2b !important;
    border: none !important;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: grid;
    place-items: center;
}

/* Cím piros */
.why-title {
    color: #ff2b2b !important;
    font-weight: 700 !important;
}

/* Leírás világos fehér */
.why-desc {
    color: #ddd !important;
    font-size: 14px;
    line-height: 1.55;
}

/* Mobil & desktop grid */
.why-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media(min-width:720px){
    .why-grid { flex-direction: row; }
    .why-item { flex: 1; }
}
/* === WHY KÁRTYÁK VÉGSŐ FINOMHANGOLÁSA === */

/* Grid szélesség szűkítése és középre igazítása */
.why-grid {
  max-width: 900px !important;   /* itt tudsz játszani: 800–900 jó szokott lenni */
  margin: 0 auto !important;     /* középre húzás */
  gap: 16px !important;
  justify-content: center !important;
}

/* Kártyák alap beállítása */
.why-item {
  flex: 1 1 0 !important;
  min-width: 0 !important;
}

/* NAGYOBB KIJELZŐN MÉG SZEBBEN KÖZÉPEN MARADJON */
@media (min-width: 1024px) {
  .why-grid {
    max-width: 1500px !important;   /* még keskenyebb, elegánsabb */
    padding: 0 10px !important;
  }
}

/* ===== PB HANGOSÍTÁS – FIX MAGASSÁGÚ, KÖZÉPRE IGAZÍTOTT BANNER ===== */

.pb-banner {
  width: 100%;
  height: 100px;
  background: linear-gradient(90deg, #000);
  color: #DC143C;
  border-top: 0.5px solid #ff2e2e;
  border-bottom: 0.5px solid #ff0000;
  box-shadow: 0 0 14px rgba(255, 0, 0, 0.50); /* finom piros fény */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 900;
  overflow: hidden;
  position: relative;
}

/* --- Banner alsó fénycsík (extra prémium részlet) --- */
.pb-banner::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ff0000, transparent);
  filter: blur(2px);
  opacity: 0.6;
}

.pb-banner .banner-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 500;
  animation: breathe 5s ease-in-out infinite;
  line-height: 1.3em;
  height: 100%;
  text-shadow: 0 0 8px rgba(255, 0, 0, 0.5); /* ✨ piros glow */
}

/* --- Hang ikon lassú pulzálással --- */
.pb-banner .banner-icon {
  font-size: 1.4rem;
  animation: pulse 2.0s infinite ease-in-out;
}

/* --- Animációk --- */
@keyframes pulse {
  0%, 100% { transform: scale(1); color: #ffcccc; }
  50% { transform: scale(1.25); color: #ffffff; }
}

@keyframes breathe {
  0%, 100% { opacity: 0.88; }
  50% { opacity: 1; }
}

/* Finom betöltési animáció (opcionális, javasolt) */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== MOBILNÉZET ===== */
@media (max-width: 768px) {
  .pb-banner {
    height: 60px;
    padding: 0 10px;
  }

  .pb-banner .banner-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.0rem;
    line-height: 1.2em;
  }

  .pb-banner .banner-icon {
    font-size: 1.2rem;
    margin-bottom: 3px;
  }
}


/* === PB CLUB RED MODE EQ === */
.eq-bars {
  display: flex !important;
  gap: 6px;
  align-items: flex-end;
  justify-content: center;
  height: 40px;
  margin: 10px auto;
  width: fit-content;
}

.eq-bars div {
  width: 8px !important;
  height: 8px; 
  background: #8b0000;
  border-radius: 4px;
  display: block !important;
  transition: none !important; /* Létfontosságú: tilos a transition! */
}
.eq-bars div {
  /* ... többi kód ... */
  transition: none !important;
}
.eq-bars div {
  /* ... a többi marad ... */
  background: linear-gradient(to top, #8b6508, #ffd700);
}
/* ==== KARÁCSONYI PB BANNER – 1. verzió + ERŐS HOVER ==== */

.pb-banner {
  background: linear-gradient(90deg, #b30000, #000000, #b30000);
  border-top: 3px solid #e60000;
  border-bottom: 3px solid #e60000;
  padding: 10px 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease, background-position 0.5s ease;
  
}
.pb-banner {
  position: relative;
  border-radius: 10px; /* a banner sarkai */
  background-color: #000; /* a banner tartalma */
  padding: 20px;
  z-index: 1;
}

/* Külső fénykoszorú */
.pb-banner::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 25px; /* nagyobb, hogy a glow kerek legyen */
  box-shadow: 0 0 30px 5px gold; /* arany glow */
  z-index: 0; /* legyen a banner mögött */
}



/* Banner szöveg */
.pb-banner .banner-text,
.pb-banner .banner-icon {
  color: white !important;
  -webkit-text-stroke: 0px black;
  text-shadow:
    -1px -1px 0 black,
     1px -1px 0 black,
    -1px  1px 0 black,
     1px  1px 0 black;
}

/* ERŐS, LÁTVÁNYOS HOVER */
.pb-banner {
  position: relative;
  box-shadow: 
      0 0 25px rgba(255, 200, 0, 0.30),
      0 0 35px rgba(255, 170, 0, 0.20);
}




/* LOGO Fénykoszorú */
.pb-logo-wrap {
  position: relative;
  z-index: 2;
}

/* Külső fénykoszorú */
.pb-logo-wrap::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 6px;
  pointer-events: none;
  z-index: -1;

  /* Piros-arany fényhatás */
  box-shadow:
    0 0 12px rgba(255, 200, 0, 0.7),
    0 0 22px rgba(230, 0, 0, 0.6),
    0 0 32px rgba(255, 200, 0, 0.4),
    0 0 48px rgba(230, 0, 0, 0.35);

  
}

/* Folyamatos pulzálás */
@keyframes glowPulse {
  0% {
    box-shadow:
      0 0 8px rgba(255, 200, 0, 0.5),
      0 0 18px rgba(230, 0, 0, 0.45),
      0 0 28px rgba(255, 200, 0, 0.25),
      0 0 40px rgba(230, 0, 0, 0.2);
  }

  50% {
    box-shadow:
      0 0 18px rgba(255, 220, 50, 0.9),
      0 0 30px rgba(255, 0, 0, 0.8),
      0 0 50px rgba(255, 220, 50, 0.5),
      0 0 70px rgba(255, 0, 0, 0.4);
  }

  100% {
    box-shadow:
      0 0 8px rgba(255, 200, 0, 0.5),
      0 0 18px rgba(230, 0, 0, 0.45),
      0 0 28px rgba(255, 200, 0, 0.25),
      0 0 40px rgba(230, 0, 0, 0.2);
  }
}


/* --- "Hogyan árazok?" infókártya --- */
.pricing-info-wrap {
  display: flex;
  justify-content: center;
  margin: 3rem 1rem 4rem;
}

.pricing-info-card {
  background: #050505;
  border: 2px solid #ff0000;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.25);
  text-align: left;
}

.pricing-info-card h2 {
  text-align: center;
  font-size: 2rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  color: #ff2a2a;
}

.pricing-info-card h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-info-card p,
.pricing-info-card li {
  color: #f2f2f2;
  line-height: 1.6;
  font-size: 0.98rem;
}

.pricing-info-card .lead {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.pricing-info-card ul {
  margin-left: 1.2rem;
  margin-bottom: 0.5rem;
}

.pricing-info-card ul li {
  margin-bottom: 0.25rem;
}

.pricing-info-card .closing {
  margin-top: 1.5rem;
  font-weight: 600;
}

/* Mobil finomhangolás */
@media (max-width: 768px) {
  .pricing-info-card {
    padding: 2rem 1.4rem;
  }
}

  

 .pricing-info-card {
  background: #111;                 /* UGYANAZ, mint a .price-card háttere */
  border: 2px solid #b00000;        /* mint a csomagkártyák kerete */
  border-radius: 12px;
  padding: 2.5rem 2rem;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.25);
  text-align: left;
}

.info-bar {
  background: rgba(180, 0, 0, 0.75); /* pbhangositas piros – halványítva */
  color: #ffffff;
  padding: 12px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 15px;
  font-weight: 500;
}

.info-bar-btn {
  background: #ffffff;
  color: #b40000;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.info-bar-btn:hover {
  background: #b40000;
  color: #ffffff;
}

/* Mobil optimalizálás */
@media (max-width: 768px) {
  .info-bar {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    padding: 4px 8px !important;
    gap: 6px !important;

    /* VISSZAADOTT, DE FINOMÍTOTT DIZÁJN */
    border-radius: 6px !important;
    box-shadow:
      0 0 6px rgba(255, 215, 0, 0.25),
      0 0 12px rgba(255, 215, 0, 0.12) !important;
  }

  .info-bar span {
    font-size: 13px !important;
    line-height: 1.1 !important;
    text-align: center;
  }

  .info-bar-btn {
    padding: 4px 8px !important;
    font-size: 12px !important;
    line-height: 1 !important;
  }
}

.info-bar {
  position: relative;
  background: linear-gradient(90deg, #7a0000, #b30000, #7a0000);
  color: #ffffff;
  padding: 12px 20px;   /* PC alap */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 6px;
  box-shadow:
    0 0 10px rgba(255, 215, 0, 0.35),
    0 0 20px rgba(255, 215, 0, 0.18),
    0 12px 30px rgba(255, 180, 0, 0.12);
}

.promo-wrapper {
  text-align: center;
  padding: 10px;
}

.promo-img {
  width: 100%;
  max-width: 320px;   /* mobilon ideális */
  height: auto;       /* arány megtartása */
  border-radius: 12px;
  cursor: no-drop;
}

/* nagyobb kijelzőn picit nagyobb lehet */
@media (min-width: 768px) {
  .promo-img {
    max-width: 400px;
  }
}


.dj2-wrapper {
  text-align: center;
  padding: 10px;
}

.dj2-img {
  width: 100%;
  max-width: 320px;   /* mobilon ideális */
  height: auto;       /* arány megtartása */
  border-radius: 12px;
  cursor: no-drop;
}

/* nagyobb kijelzőn picit nagyobb lehet */
@media (min-width: 768px) {
  .dj2-img {
    max-width: 400px;
  }
}

.promo-bar{
  background: rgba(160, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  color: white;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;

  border-top: 1px solid rgba(255, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 0, 0, 0.25);

  animation: fadeIn 1s ease;
}
@keyframes fadeIn{
  from{opacity:0; transform: translateY(10px);}
  to{opacity:1; transform: translateY(0);}
}
.promo-bar{
  max-width: 400px;   /* ← Itt állítod a szélességet */
  margin: 0 auto;     /* középre teszi */

  background: rgba(160, 0, 0, 0.35);
  backdrop-filter: blur(8px);

  color: white;
  text-align: center;
  padding: 12px;
}


/* FAQ Konténer */
.faq-container {
  max-width: 700px;
  margin: 0 auto;
}

/* Egy-egy kérdés-válasz blokk */
.faq-item {
  margin-bottom: 15px;
  border: 1px solid #ff0000; /* Piros keret a stílusodhoz */
  border-radius: 10px;
  overflow: hidden;
  background-color: #111;
}

/* Rejtett jelölőnégyzet a működéshez */
.faq-item input[type="checkbox"] {
  display: none;
}

/* A kérdés sora (stilizált label) */
.faq-question {
  display: block;
  width: 99%;
  padding: 15px;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  color: #DAA520; /* Arany színű kérdések */
  font-weight: normal;
  background-color: #111;
  transition: background 0.3s ease;
  box-sizing: border-box;
}

.faq-question:hover {
  background-color: #222; /* Finom kiemelés egérmutatónál */
}

/* A válasz doboza (alaphelyzetben rejtve) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  background-color: #1a1a1a; /* Sötétszürke háttér */
  text-align: center;
  color: #DAA520; /* Alapértelmezett fehér szöveg */
}

/* A válaszon belüli szöveg (p tag) formázása */
.faq-answer p {
  padding: 15px;
  margin: 0;
  line-height: 1.6;
  color: #ffffff; /* Itt állítsd be a választ tetszőleges színre! */
  font-weight: normal;
}

/* A "varázslat": ha be van pipálva a checkbox, lenyílik a válasz */
.faq-item input[type="checkbox"]:checked ~ .faq-answer {
  max-height: 500px; /* Elég nagy érték, hogy beleférjen a szöveg */
  border-top: 1px solid #444; /* Elválasztó vonal a kérdés és válasz között */
}
/* ============================================================
   ÁRKÁRTYÁK – VÉGLEGES, TISZTA VERZIÓ
   ============================================================ */

/* --- ÁRKÁRTYÁK VÉGLEGES JAVÍTÁSA --- */
.price-container {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 25px !important;
    margin: 40px auto !important;
    max-width: 1200px !important;
    padding: 0 20px !important;
}

.price-card {
    flex: 1 1 300px !important;
    max-width: 350px !important;
    background: #111 !important;
    
    /* ALAPHELYZET: Szürke szegély (#444), piros bal szél */
    border: 2px solid #444 !important; 
    border-left: 2px solid #8c0b0b !important; 
    
    border-radius: 12px !important;
    padding: 25px !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    box-sizing: border-box !important;
}

/* HOVER: A szürke aranyra vált, a bal szél marad piros */
.price-card:hover {
    transform: translateY(-8px) !important;
    border-color: #DAA520 !important;      /* Ez az arany */
    border-left-color: #8c0b0b !important; /* Ez VISSZAKÉNYSZERÍTI a pirosat balra */
    box-shadow: 0 10px 25px rgba(218, 165, 32, 0.2) !important;
}


/* Árkártya szövegek - Színmegtartó verzió */
.price-card h2 {
    color: #d40606 !important;
    margin-bottom: 10px !important;
    font-size: 1.3rem !important;
}

.price-card .price {
    font-size: 24px !important;
    color: #fff !important; /* Az ár marad fehér */
    font-weight: 700 !important;
    margin-bottom: 15px !important;
}

.price-card ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 20px !important;
}

.price-card ul li {
    margin-bottom: 8px !important;
    font-size: 0.9rem !important;
    /* TÖRLÖTTÜK A COLOR: #CCC !IMPORTANT SORT! */
    /* Így a HTML-ben lévő <span style="color:..."> újra működni fog */
}
.service-card { 
    /* Alapállapot: sötétszürke keret, a bal széle piros */
    border: 2px solid #444; 
    border-left: 2px solid #8c0b0b; /* A piros csík kicsit vastagabb, hogy hangsúlyos legyen */
    
    border-radius: 8px; 
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.03); /* Egy leheletnyi háttérszín (opcionális) */
    transition: all 0.3s ease; /* Minden változás finoman történik */
}

/* Hover állapot: amikor ráviszed az egeret */
.service-card:hover {
    /* A keret többi része aranyszínű lesz */
    border-color: #DAA520; 
    
    /* A bal széle pedig marad (vagy megerősödik) piros */
    border-left-color: #ff0000; 
    
    /* Egy kis extra: egy enyhe ragyogás az arany színnel */
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.1);
    transform: translateY(-2px); /* Picit "felemelkedik" a kártya */
}

.testimonial-header .icon {
    display: flex;
    justify-content: flex-start; /* Balra igazítja az ikont a soron belül */
    margin-right: 15px;          /* Távolságot tart az ikon és a szöveg között */
}

.service-footnote {
    background-color: #1a1a1a;  /* Kicsit világosabb szürke, mint a fekete háttér */
    border: 1px solid #660000;   /* Nagyon finom, sötétpiros szegély (neon nélkül) */
    border-radius: 8px;          /* Enyhén kerekített sarkok */
    padding: 20px 25px;         /* Belső távolság a szöveg és a keret között */
    margin: 15px auto 0;        /* Függőleges távolság és középre igazítás */
    max-width: 600px;           /* Ne legyen túl széles asztali gépen */
    font-size: 0.95em;          /* Kicsit kisebb, mint a fő szöveg */
    line-height: 1.5;           /* Jobb olvashatóság */
}

/* Az összes referencia címe arany lesz */
.testimonial-title {
    color: #DAA520 !important; /* Arany szín */
    font-weight: bold;
    font-size: 1.2rem;
    margin-left: 10px;
    display: inline-block;
}

/* Biztosítja, hogy az ikon és az arany cím egy vonalba kerüljön */
.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.testimonial {
	 border-left: 5px solid #DAA520;
}

/* Eltünteti a felesleges vastagítást, ha benne maradt volna a <b> tag */
.testimonial-header b {
    color: #DAA520;
    font-size: 1.2rem;
    margin-left: 10px;
}

.expert-advice {
    background-color: #111 !important;
    padding: 25px !important;
    margin: 40px auto !important;
    max-width: 800px !important;
    border-radius: 12px !important; /* Kicsit kerekítettünk, hogy egységes legyen */
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;

    /* ALAPHELYZET: Szürke keret (#444), piros bal szél */
    border: 2px solid #444 !important;
    border-left: 2px solid #8c0b0b !important; 
}

/* HOVER: Ez is kapjon egy kis reakciót, ha már a többi is kapott */
.expert-advice:hover {
    border-color: #DAA520 !important;      /* Arany keret */
    border-left-color: #8c0b0b !important; /* Piros szél marad */
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.15) !important;
}

.expert-advice h3 {
    color: #DAA520 !important;
    margin-top: 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-size: 1.4rem !important;
}

.expert-advice ul {
    list-style: none !important;
    padding: 0 !important;
}

.expert-advice li {
    color: #ffffff !important;
    margin-bottom: 15px !important;
    padding-left: 35px !important; /* Kicsit több hely a hangjegynek */
    position: relative !important;
    line-height: 1.6 !important;
    font-size: 1rem !important;
}

/* A kis hangjegy ikon maradjon piros, az jól mutat */
.expert-advice li::before {
    content: "\266A" !important; 
    position: absolute !important;
    left: 10px !important;
    color: #ff0000 !important; 
    font-size: 1.3rem !important;
}

.expert-advice strong {
    color: #DAA520 !important;
}

/* A vélemények rácsa - reszponzív oszlopok */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Egyedi kártya */
.testimonial {
    background: #1e1e1e; /* Mélyebb sötét háttér */
    border: 2px solid #444; /* Alap keret színe */
    border-left: 2px solid #8c0b0b; /* Fix piros kiemelés a bal oldalon */
    border-radius: 15px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.testimonial:hover {
    transform: translateY(-5px); /* Kicsit megemelkedik */
    border-color: #DAA520;      /* A keret (fent, lent, jobb) arany lesz */
    border-left-color: #ff0000; /* A bal szél élénkebb piros lesz */
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.15); /* Aranyos ragyogás */
}

/* Fejléc: Ikon + Cím */
.testimonial-header {
    display: flex !important;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.header-icon {
    width: 33px;
    height: 33px;
    object-fit: contain;
}

.testimonial-title {
    color: #DAA520; /* Arany szín */
    font-weight: bold;
    font-size: 1.0rem;
}

/* Szöveg stílusa */
.testimonial-text {
    color: #cccccc;
    font-style: italic;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 15px 0;
}

/* Lábléc: Kép + Név */
.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

/* Általános profilkép stílus - ÚJ, MODERN MEGKÖZELÍTÉS */
.user-img {
    width: 60px;
    height: 60px;
    /* 15px kerekítés: elegáns, modern és nem "arcbamászó" */
    border-radius: 15px; 
    
    /* Biztosítja, hogy a 70x70-es képed pontosan kitöltse a keretet */
    object-fit: cover; 
    
    /* Az arany szegély, ami illik a címekhez */
    border: 2px solid #DAA520;
    
    /* Sötét háttér, ha bármi pici elcsúszás lenne */
    background-color: #252525;
    
    display: block;
}

.testimonial-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Mobilos finomítás */
@media (max-width: 480px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        padding: 10px;
    }
}
.neon-star {
  font-size: 25px; /* Itt állítsd be a méretet */
  color: #fff; /* A csillag közepe fehér marad a ragyogás miatt */
  text-shadow: 
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px #ffea00, /* Sárga mag */
    0 0 30px #ffea00,
    0 0 40px #ffea00;
  
  animation: pulse 2s infinite ease-in-out;
  display: inline-block;
  cursor: default;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    text-shadow: 
      0 0 5px #fff,
      0 0 10px #ffea00,
      0 0 20px #ffea00,
      0 0 40px #ffea00;
    opacity: 1;
  }
  50% {
    transform: scale(1.4); /* Enyhe növekedés */
    text-shadow: 
      0 0 10px #fff,
      0 0 20px #ffea00,
      0 0 40px #ffea00,
      0 0 60px #ffea00; /* Erősebb ragyogás */
    opacity: 0.8;
  }
}
.neon-cim {
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    letter-spacing: 2px;
    
    /* Alap fényerő */
    text-shadow:
        0 0 7px #fff,
        0 0 10px #fff,
        0 0 21px #fff,
        0 0 42px #ff0000,
        0 0 82px #ff0000,
        0 0 92px #ff0000,
        0 0 102px #ff0000;
        
    /* A vibráló animáció meghívása */
    animation: flicker 1.5s infinite alternate;     
}

@keyframes flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        /* Teljes fényerő szakaszok */
        text-shadow:
            0 0 4px #fff,
            0 0 11px #fff,
            0 0 19px #fff,
            0 0 40px #ff0000,
            0 0 80px #ff0000,
            0 0 90px #ff0000,
            0 0 100px #ff0000;
    }
    20%, 24%, 55% {        
        /* Pillanatnyi elhalványulás (vibrálás) */
        text-shadow: none;
        color: #440000; /* Ilyenkor a betű is besötétedik kicsit */
    }
}
/* Alapállapot: a menüpontok csak halványan pirosak vagy fehérek */
.menu-item {
    color: #fff;
    transition: all 0.3s ease;
}

/* Amikor az egeret fölé viszik (hover), kigyullad a neon */
.menu-item:hover {
    text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000;
    color: #ff0000;
}

/* Az az oldal, ahol éppen tartózkodik (active class) */
.active-page {
    animation: flicker 1.5s infinite alternate; /* A már kész vibrálás */
    color: #fff;
}
.cta-container {
    text-align: center;
    margin: 50px 0;
    padding: 20px;
}

.neon-button {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    border: 2px solid #ff4d4d; /* Válaszd a logód pirosát */
    border-radius: 50px;
    background: transparent;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 77, 77, 0.5), 
                inset 0 0 10px rgba(255, 77, 77, 0.3);
    animation: pulse-red 2s infinite;
}

.neon-button:hover {
    background: #ff4d4d;
    color: #000;
    box-shadow: 0 0 30px #ff4d4d, 0 0 60px #ff4d4d;
    transform: scale(1.05);
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 10px rgba(255, 77, 77, 0.5);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 77, 77, 0.8), 0 0 40px rgba(255, 77, 77, 0.4);
    }
    100% {
        box-shadow: 0 0 10px rgba(255, 77, 77, 0.5);
    }
}
.contact-buttons-mini {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

.mini-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px; /* Kisebb belső térköz */
    font-size: 0.9rem;  /* Kisebb betűméret */
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    border-radius: 6px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.call-btn {
    background: #222;
    border-color: #b50000;
}

.email-btn {
    background: #222;
    border-color: #b50000;
}

.mini-btn:hover {
    background: #b50000;
    box-shadow: 0 0 10px rgba(181, 0, 0, 0.5);
}

/* Ha mobilon egymás alá szeretnéd őket tenni, ha túl szűk lenne: */
@media (max-width: 400px) {
    .contact-buttons-mini {
        flex-direction: column;
        align-items: center;
    }
    .mini-btn {
        width: 150px;
        justify-content: center;
    }
}
/* Színes hétvégi feliratok */
.sat-text {
    color: #2ecc71; /* Szép zöld */
    font-weight: bold;
}

.sun-text {
    color: #ff0000; /* Piros */
    font-weight: bold;
}

/* Finomítás a megjelenésen */
.h-row.duty {
    margin-top: 2px;
    padding-top: 2px;
    border-top: 1px solid #333;
}

.no-border {
    border-top: none !important;
}

.duty-note {
    display: block;
    color: #ff4d4d;
    font-size: 0.75rem;
    font-style: italic;
    margin-top: 5px;
    text-align: center;
}
.nyitva-clean {
    max-width: 320px !important;
    margin: 20px auto !important;
    padding: 0 !important;
    background: transparent !important; /* Itt tűnik el a doboz */
    background-image: none !important;
    border: none !important;
    box-shadow: none !important;
    text-align: center !important;
}

.nyitva-clean {
    color: white;
    text-align: center;
    max-width: 100%;
}

.hours-table {
    margin: 0 auto; /* Középre igazítja a táblázatot */
    border-collapse: collapse;
    width: auto;
    min-width: 250px; /* Beállítja a minimális szélességet */
}

.hours-table {
    margin: 0 auto;
    border-collapse: collapse;
    width: 100%; /* Kitölti a rendelkezésre álló helyet */
    max-width: 320px; /* De nem lesz túl széles */
}

.hours-table td {
    padding: 5px 5px; /* Kicsit kevesebb hely az oszlopok között */
    font-size: 0.95rem; /* Mobilon kicsit kisebb betű, hogy elférjen */
    white-space: nowrap; /* Megakadályozza, hogy a szöveg (pl. Hétfő - Péntek) kettétörjön */
}

.day-col {
    text-align: left;
    font-weight: bold;
    width: 50%; /* Fix fele-fele arány, hogy ne ugráljon */
}

.time-col {
    text-align: right;
    width: 50%;
	font-weight: bold;
    font-family: 'Courier New', monospace; /* A fix szélességű betűk miatt a számok mindig egymás alatt maradnak */
}

/* Ez a rész kifejezetten a mobilokra vonatkozik */
@media (max-width: 480px) {
    .hours-table td {
        font-size: 0.85rem; /* Még kisebb betű, ha nagyon kicsi a kijelző */
    }
}
/* Színek */
.sat-row { color: #4CAF50; } /* Zöld */
.sun-row { color: #f44336; } /* Piros */

.duty-note {
    display: block;
    margin-top: 10px;
    font-style: italic;
    font-size: 0.9rem;
	color: #cccccc
}

 