@charset "utf-8";
/* CSS Document */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

html, body {
  overflow-x: hidden
}

p {
	font-family: "Rajdhani";
	font-size: 22px;
}

h1 {
  font-family: "Rajdhani";
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: 400
}

h2 {
  font-family: "Rajdhani";
  font-size: 26px;
  font-weight: 200;
  color: #d4af37;
}

h3 {
  font-family: "Rajdhani";
  font-size: 18px;
  font-weight: 500;
  color: #d4af37;
}


ul li {
  font-family: "Rajdhani";
}

.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background-color: #d4af37;
  width: 0%;
  z-index: 9999;
  transition: width 0.25s ease-out;
}

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #d4af37;
  color: #000;
  padding: 15px 10px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  font-weight: bold;
  z-index: 9999;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.sticky-cta:hover {
  background-color: #bfa133;
  transform: translateX(-50%) scale(1.05);
}

@media (max-width: 768px) {
  .sticky-cta {
    display: block;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  font-size: 14px;
  z-index: 10000;
}

.cookie-banner button {
  background-color: #d4af37;
  color: #000;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.cookie-banner button:hover {
  background-color: #bfa133;
}

.faq-section {
            padding: 180px 0;
            background: #555555;
        }
        
        .faq-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
			font-family: "Rajdhani";
        }
        
        .faq-title {
            text-align: center;
            color: white;
            margin-bottom: 60px;
        }
        
        .faq-title h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .faq-title p {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        .faq-accordion {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            overflow: hidden;
        }
        
        .faq-item {
            border-bottom: 1px solid #eee;
        }
        
        .faq-item:last-child {
            border-bottom: none;
        }
        
        .faq-question {
            background: #f8f9fa;
            padding: 25px 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            color: #333;
        }
        
        .faq-question:hover {
            background: #e9ecef;
        }
        
        .faq-question.active {
            background: #393939;
            color: white;
        }
        
        .faq-question .icon {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        
        .faq-question.active .icon {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: white;
        }
        
        .faq-answer.active {
            max-height: 500px;
        }
        
        .faq-answer-content {
            padding: 30px;
            line-height: 1.8;
            color: #555;
        }
        
        .faq-answer-content h3 {
            color: #667eea;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        
        .faq-answer-content ul {
            margin: 15px 0;
            padding-left: 20px;
        }
        
        .faq-answer-content li {
            margin-bottom: 8px;
        }
        
        .faq-answer-content strong {
            color: #333;
        }
        
        .faq-category {
            margin-bottom: 40px;
        }
        
        .faq-category-title {
            color: white;
            font-size: 1.8rem;
            margin-bottom: 30px;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }
        
        .contact-cta {
            text-align: center;
            margin-top: 60px;
            padding: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }
        
        .contact-cta h2 {
            color: white;
            margin-bottom: 20px;
        }
        
        .contact-cta p {
            color: white;
            margin-bottom: 30px;
            font-size: 1.1rem;
        }
        
        .cta-button {
            display: inline-block;
            background: #ff6b6b;
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255,107,107,0.3);
        }
        
        .cta-button:hover {
            background: #ff5252;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255,107,107,0.4);
        }

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.navbar.hide {
  top: -130px; /* vagy az aktuális navbar magasság */
  transition: top 0.3s ease-in-out;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 0;
  position: relative;
}

.nav-links a {
  position: relative;
  padding-bottom: 5px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #d4af37;
  transition: width 0.3s ease;
}

.nav-links ul li a.active {
  color: #d4af37; /* Arany szín */
  position: relative;
}

.nav-links ul li a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: #d4af37;
}

.nav-links a:hover::after {
  width: 100%;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.9);
}

/* NAV LINKS (DESKTOP) */
.nav-links ul {
  display: flex;
  gap: 30px;
}

.nav-links ul li {
  list-style: none;
}

.nav-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  position: relative;
}

.nav-links ul li a:hover {
  color: #d4af37;
}

@keyframes fadeNav {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.nav-links ul li {
  opacity: 1; /* kezdeti állapot */
}

.nav-links ul li {
  opacity: 0; /* kezdeti állapot */
}

@media (min-width: 769px) {
  .nav-links ul li {
    opacity: 1; /* Desktopon legyen látható */
  }
}

/* Logo */
.logo a {
  color: #d4af37;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 28px;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.logo a:hover {
  color: #fff;
  transform: scale(1.05);
}

.logo-tagline {
  font-family: 'Lato', sans-serif;
  font-size: 8.5px;
  color: #FFF; /* Arany színnel harmonizál */
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500
}

.navbar.scrolled .logo a {
  transform: scale(0.9);
  color: #d4af37;
}

.logo span {
  color: #fff;
}

/* Navigation links */
.nav-links ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-family: "Rajdhani";
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #d4af37;
}

/* CTA LINK */
.nav-links ul li .cta {
  background-color: #d4af37;
  color: #000;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  max-width: 150px;
  margin:0 0 0 20px
}

.nav-links .cta:hover {
  background-color: #bfa133;
  color: white;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: absolute; /* vagy fixed */
  right: 20px;
  top: 20px;
  z-index: 10001; /* biztosan elöl legyen */
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: #d4af37;
  margin: 4px 0;
  transition: 0.3s;
}

.hamburger.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 10px);
}

.hamburger.open .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -10px);
}

.hamburger .bar {
  transition: all 0.3s ease;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .nav-links ul {
    flex-direction: column;
    position: fixed;
    right: 120px;
    top: 85px;
    height: 100vh;
    width: 250px;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: rgba(0, 0, 0, 0.95);
    
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    z-index: 998;
  }

  .nav-links ul.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links ul li {
    margin: 5px 0;
    width: 100%;
  }

  .nav-links ul li a {
    display: block;
    
    padding: 15px 50px;
    text-align: left;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .nav-links ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #d4af37;
  }

  .hamburger {
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
  }
}

.btn-secondary {
  display: inline-block;
  margin-top: 10px;
  background-color: transparent;
  color: #d4af37;
  border: 2px solid #d4af37;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-secondary:hover {
  background-color: #d4af37;
  color: #000;
  border: 2px solid black;
}
	
.footer {
  position: relative;
  background-color: #141414;
  color: #ccc;
  padding: 60px 20px 20px;
  font-family: 'Lato', sans-serif;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-column {
  flex: 1 1 30%;
  min-width: 250px;
}

.footer-column h4 {
  color: #d4af37;
  font-size: 20px;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-column p,
.footer-column a {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
}

.footer-column a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #d4af37;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  color: #777;
  font-size: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-column {
    flex: 1 1 100%;
  }
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  max-width: 800px; /* vagy amit akarsz */
  margin: 40px auto;
}

/* Az ikon gombok */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1a1a1a;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.social-icons a:hover {
  background-color: #d4af37;
  transform: translateY(-5px) scale(1.05);
  border-color: #d4af37;
}

.social-icons a img {
  width: 24px;
  height: 24px;
  filter: grayscale(100%) brightness(1.5);
  transition: all 0.3s ease;
}

.social-icons a:hover img {
  filter: none;
}

/* Limit 11 ikon per sor */
.social-icons a:nth-child(11n+1) {
  clear: both;
}

/* Reszponzivitás */
@media (max-width: 768px) {
  .social-icons {
    max-width: 100%;
    gap: 10px;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
  }

  .social-icons a img {
    width: 20px;
    height: 20px;
  }
}

.footer .back-top {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  color: #e67e22;
  width: 60px;
  height: 40px;
  font-family: 'FontAwesome';
  font-size: 22px;
  line-height: 40px;
  text-align: center;
  background: #141414;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  z-index: 9;
  box-shadow: 0 -5px 15px -5px #000;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms linear;
  font-weight:800;
}

.back-top.show {
  opacity: 1;
  visibility: visible;
}

.back-top:hover {
  background: #101010;
  box-shadow: 0 -5px 5px -5px rgba(0, 0, 0, 0.8);
}
