/* Mobilbarát beállítások - 768px alatti képernyőkre */
@media screen and (max-width: 768px) {
  /* Alapvető beállítások */
  body {
    overflow-x: hidden;
    width: 100%;
    min-width: 320px;
  }
  
  section, .container, .footer-content {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
  }

  /* Navigáció */
  .main-nav {
    flex-direction: column;
    padding: 10px 0;
  }
  
  .nav-left, .nav-links, .auth-section {
    width: 100%;
    justify-content: center;
    margin: 5px 0;
  }
  
  .nav-links {
    order: 3;  /* Mozgatjuk a menüt a legaljára */
  }
  
  .auth-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-text {
    font-size: 14px;
  }

  /* Logo mobil optimalizálás */
  .brand-logo {
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .brand-emblem {
    width: 45px;
    height: 45px;
  }
  
  .brand-sigil {
    /* Mobil esetén finomabb glow effektek */
    box-shadow: 
        0 0 15px rgba(135,206,250,.5),
        0 0 30px rgba(135,206,250,.2),
        inset 0 0 10px rgba(135,206,250,.1);
  }
  
  .brand-sigil::before {
    box-shadow: 
        0 0 12px rgba(255,0,255,.4),
        inset 0 0 8px rgba(255,0,255,.1);
  }
  
  .brand-wordmark {
    font-size: 1.4rem;
    letter-spacing: 0.5px;
  }
  
  .brand-subtitle {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }

  /* Hero szekció */
  .hero-content {
    padding: 20px 15px;
  }
  
  .hero-text h1 {
    font-size: 28px;
    line-height: 1.3;
  }
  
  .hero-text h2 {
    font-size: 20px;
  }
  
  .pre-title h3 {
    font-size: 16px;
  }

  /* Szolgáltatás kártyák */
  .service-layout {
    flex-direction: column;
  }
  
  .service-item {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .secondary-services {
    flex-direction: column;
  }

  /* Oracle gömb */
  .oracle-globe {
    transform: scale(0.8);
  }

  /* Piramis szekció */
  .pyramid-container {
    flex-direction: column;
  }
  
  .pyramid {
    width: 100%;
    margin: 0 0 30px 0;
    height: auto;
  }
  
  .pyramid-content {
    padding: 20px 15px;
  }
  
  .info-section ul {
    columns: 1;
  }

  /* Történet szekció */
  .journey-timeline {
    padding: 0 10px;
  }
  
  .timeline-item {
    flex-direction: column;
    margin-bottom: 30px;
  }
  
  .timeline-content {
    padding: 15px;
  }
  
  .sacred-elements {
    display: block;
  }
  
  .sacred-elements span {
    display: inline-block;
    margin: 5px;
  }

  /* Lábléc */
  .footer-sections {
    flex-direction: column;
  }
  
  .footer-section {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
  }
  
  .footer-links {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-links a {
    margin: 5px 0;
  }

  /* Admin panel mobilon */
  .admin-panel {
    width: 100%;
    left: 0;
    max-height: 90vh;
    overflow-y: auto;
  }
  
  .admin-controls {
    flex-direction: column;
  }
  
  .admin-menu {
    flex-wrap: wrap;
  }
  
  .admin-tab {
    flex: 1 0 40%;
    margin: 5px;
    font-size: 14px;
  }
}

/* Nagyon kis képernyők (320px alatt) */
@media screen and (max-width: 320px) {
  .hero-text h1 {
    font-size: 24px;
  }
  
  .nav-item, .auth-btn {
    padding: 5px;
  }
  
  .pyramid-content h3 {
    font-size: 18px;
  }
} 