/* ===== Variables & Reset ===== */
:root {
  --bg-dark: #0f0f10;
  --bg-darker: #070708;
  --bg-gradient: linear-gradient(135deg, #0f0f10 0%, #17181c 100%);

  --primary-gold: #d4a017;
  --primary-gold-glow: rgba(212, 160, 23, 0.4);
  --primary-gold-hover: #b88b14;

  --text-main: #ffffff;
  --text-muted: #a0a0a0;

  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(12px);

  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  --transition-fast: 0.3s ease;
  --transition-smooth: 0.6s cubic-bezier(0.22, 1, 0.36, 1);

  --gold: #d4a017;
  --bg: #0b0c0f;
  --cardR: 22px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

body {
  position: relative;
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== Utilities ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.italic {
  font-style: italic;
}

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 20px;
}

.section-line,
.title-underline {
  width: 60px;
  height: 3px;
  background: var(--primary-gold);
  margin: 0 auto;
  border-radius: 2px;
}

/* ===== Animated Underline ===== */
.title-underline {
  position: relative;
  overflow: hidden;
}

.title-underline::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
  100% {
    left: 100%;
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
  border: 1px solid transparent;
}

.btn--primary {
  background: var(--primary-gold);
  color: #000;
  box-shadow: 0 4px 20px var(--primary-gold-glow);
}

.btn--primary:hover {
  background: var(--primary-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--primary-gold-glow);
}

.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.btn--outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.btn--block {
  width: 100%;
  text-align: center;
}

/* ===== Shared Navbar Surface ===== */
.navbar,
.navbar-mobile,
.navbar--mobile,
.mobile-navbar {
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(15, 15, 16, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  transition: var(--transition-fast);
}

.navbar__content,
.mobile-navbar__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: 0;
}

.logo,
.mobile-navbar__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.nav-links,
.mobile-nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a,
.mobile-nav-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.nav-links a:hover,
.mobile-nav-links a:hover {
  color: var(--primary-gold);
}

.btn-nav {
  border: 1px solid var(--primary-gold);
  padding: 8px 20px;
  border-radius: 4px;
  color: var(--primary-gold) !important;
}

.btn-nav:hover {
  background: var(--primary-gold);
  color: #000 !important;
}

/* ===== Dropdown ===== */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  max-width: calc(100vw - 40px);
  min-width: 220px;
  padding: 10px 0;
  background: rgba(15, 15, 16, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: var(--transition-fast);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 0.9rem;
  text-align: left;
  color: rgba(255, 255, 255, 0.85);
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--primary-gold);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu a.is-current {
  color: var(--primary-gold);
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  cursor: default;
  opacity: 0.85;
}

/* ===== Generic badges ===== */
.badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--primary-gold);
}

/* ===== Generic form ===== */
.form {
  background: var(--glass-bg);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  background: rgba(0, 0, 0, 0.349);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  color: #fff;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition-fast);
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
  background: rgba(0, 0, 0, 0.911);
}

.form-message {
  margin-top: 15px;
  text-align: center;
  font-size: 0.9rem;
}

.form-message.success {
  color: #4ade80;
}

.form-message.error {
  color: #f87171;
}

/* ===== Footer ===== */
/* ===== Footer ===== */
.footer {
  width: 100%;
  background: #050505;
  padding: 60px 0 20px;
  border-top: 1px solid var(--glass-border);
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.footer__brand h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.footer__brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer__links {
  display: flex;
  gap: 20px;
}

.footer__links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer__links a:hover {
  color: #fff;
}

.footer__social {
  display: flex;
  gap: 15px;
}

.footer__social a,
.footer__mobile-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: var(--transition-fast);
  color: var(--text-muted);
  text-decoration: none;
}

.footer__social a:hover,
.footer__mobile-social a:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

.footer__mobile {
  display: none;
}

.footer__bottom {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;

  padding: 20px 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);

  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer__bottom-left {
  text-align: left;
}

.footer__bottom-center {
  text-align: center;
}

.footer__bottom-right {
  text-align: right;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom a {
  color: var(--primary-gold);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer__bottom a:hover {
  color: #ffffff;
}

/* ===== Mobil footer ===== */
@media (max-width: 768px) {
  .footer {
    padding: 28px 0 18px;
  }

  .footer__content {
    justify-content: center;
    margin-bottom: 20px;
  }

  .footer__brand,
  .footer__links,
  .footer__social--desktop {
    display: none;
  }

  .footer__mobile {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
  }

  .footer__top-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }

  .footer__top-link:hover {
    color: #fff;
  }

  .footer__mobile-social {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .footer__mobile-social a {
    width: 38px;
    height: 38px;
    font-size: 0.75rem;
  }

  .footer__bottom {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 16px 0;
    text-align: center;
  }

  .footer__bottom-left,
  .footer__bottom-center,
  .footer__bottom-right {
    text-align: center;
  }

  .footer__bottom-right {
    display: none;
  }
}

/* ===== Generic Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Mobile / Tablet Navbar Base ===== */
.mobile-navbar,
.navbar-mobile,
.navbar--mobile {
  display: none;
  position: fixed;
}

.mobile-hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.mobile-hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: #fff;
  transition: var(--transition-fast);
}

.mobile-dropdown {
  width: 100%;
}

.mobile-dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-dropdown-toggle {
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  transition: var(--transition-fast);
}

.mobile-dropdown.open .mobile-dropdown-toggle {
  transform: rotate(45deg);
  color: var(--primary-gold);
  border-color: var(--primary-gold);
}

.mobile-dropdown-menu {
  display: none;
}

@media screen and (max-width: 1023px) {
  .navbar-desktop {
    display: none;
  }

  .mobile-navbar,
  .navbar-mobile,
  .navbar--mobile {
    display: block !important;
  }

  .mobile-hamburger {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .mobile-nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 100%;
    max-height: calc(100vh - 70px);
    padding: 24px 20px 32px;
    background: #0f0f10;
    border-bottom: 1px solid var(--glass-border);
    overflow-x: hidden;
    overflow-y: auto;
    transform: translateY(-150%);
    transition: var(--transition-fast);
  }

  .mobile-nav-links.is-open {
    transform: translateY(0);
  }

  .mobile-nav-links > li,
  .mobile-nav-links a,
  .mobile-dropdown,
  .mobile-dropdown-menu {
    width: 100%;
    max-width: 100%;
  }

  .mobile-nav-links a {
    display: block;
    padding: 12px 0;
  }

  .mobile-dropdown-menu {
    margin-top: 8px;
    padding: 8px 12px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
  }

  .mobile-dropdown-menu a {
    padding: 10px 0;
  }

  .mobile-dropdown.open .mobile-dropdown-menu {
    display: block;
  }
}

/* ===== Responsive ===== */
/* ===== Mobile ===== */
@media (max-width: 768px) {
  .footer__content {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== Tablet ===== */
@media (min-width: 769px) and (max-width: 1023px) {
  .footer__content {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== Laptop ===== */
@media (min-width: 1024px) and (max-width: 1199px) {
  .footer__content {
    flex-direction: row;
    align-items: center;
  }

  .navbar-desktop {
    display: block;
  }

  .navbar-mobile {
    display: none !important;
  }

  .nav-links {
    position: static;
    transform: none;
    flex-direction: row;
    padding: 0;
    background: transparent;
    border: none;
    overflow: visible;
  }

  .dropdown-menu {
    position: absolute;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    background: rgba(15, 15, 16, 0.96);
    border: 1px solid var(--glass-border);
    display: block;
  }

  .dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* ===== Desktop ===== */
@media (min-width: 1200px) {
  .footer__content {
    flex-direction: row;
    align-items: center;
  }

  .navbar-desktop {
    display: block;
  }

  .navbar-mobile {
    display: none !important;
  }

  .nav-links {
    position: static;
    transform: none;
    flex-direction: row;
    padding: 0;
    background: transparent;
    border: none;
    overflow: visible;
  }

  .dropdown-menu {
    position: absolute;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    background: rgba(15, 15, 16, 0.96);
    border: 1px solid var(--glass-border);
    display: block;
  }

  .dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

@media screen and (min-width: 1024px) {
  .mobile-navbar,
  .navbar-mobile,
  .navbar--mobile {
    display: none !important;
  }
}
.pricing.section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
}

.pricing .container {
  width: 100%;
}

.pricing .section-head.center {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.pricing .section-kicker {
  display: inline-block;
  margin-bottom: 14px;
}

.pricing .section-head.center h2 {
  margin-bottom: 18px;
}

.pricing .section-head.center p {
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

.pricing-contact-action {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* =========================================================
   PEGASUS PREMIUM REVEAL ANIMATIONS
   Csak animációkat ad hozzá, a meglévő dizájnt nem módosítja.
========================================================= */
.pm-reveal {
  opacity: 0;
  will-change: opacity, transform, filter;
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--pm-delay, 0ms);
}

.pm-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.pm-fade-up {
  transform: translate3d(0, 34px, 0);
}

.pm-fade-down {
  transform: translate3d(0, -24px, 0);
}

.pm-fade-left {
  transform: translate3d(42px, 0, 0);
}

.pm-fade-right {
  transform: translate3d(-42px, 0, 0);
}

.pm-zoom-in {
  transform: scale(0.96);
  filter: blur(3px);
}

.pm-soft-blur {
  transform: translate3d(0, 22px, 0) scale(0.985);
  filter: blur(4px);
}

.pm-reveal-image {
  overflow: hidden;
}

.pm-reveal-image img,
.pm-reveal-image video,
.pm-reveal-image iframe {
  transition:
    transform 1.3s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.3s cubic-bezier(0.22, 1, 0.36, 1);
  transform: scale(1.045);
  filter: saturate(0.88) brightness(0.92);
}

.pm-reveal-image.is-visible img,
.pm-reveal-image.is-visible video,
.pm-reveal-image.is-visible iframe {
  transform: scale(1);
  filter: saturate(1) brightness(1);
}

/* Finom prémium lebegés csak a fő CTA gombokra */
.hero-actions .btn,
.pricing-contact-action .btn,
.contact-form-wrapper .submit-btn,
.booking-form .submit-btn {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.hero-actions .btn:hover,
.pricing-contact-action .btn:hover,
.contact-form-wrapper .submit-btn:hover,
.booking-form .submit-btn:hover {
  transform: translateY(-3px);
}

/* Mobilon kisebb mozgás, hogy ne legyen túl sok */
@media (max-width: 768px) {
  .pm-fade-up {
    transform: translate3d(0, 22px, 0);
  }

  .pm-fade-left,
  .pm-fade-right {
    transform: translate3d(0, 24px, 0);
  }

  .pm-soft-blur {
    transform: translate3d(0, 18px, 0) scale(0.99);
    filter: blur(2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pm-reveal,
  .pm-reveal-image img,
  .pm-reveal-image video,
  .pm-reveal-image iframe,
  .hero-actions .btn,
  .pricing-contact-action .btn,
  .contact-form-wrapper .submit-btn,
  .booking-form .submit-btn {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    animation: none !important;
  }
}

/* =========================================================
   FOOTER VISIBILITY FIX - subpages
   Desktop footer ne latszodjon mobilon, mobil footer ne latszodjon desktopon
========================================================= */
.footer__mobile {
  display: none !important;
}

@media (min-width: 769px) {
  .footer__mobile {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .footer__brand,
  .footer__links,
  .footer__social,
  .footer__social--desktop {
    display: none !important;
  }

  .footer__mobile {
    display: flex !important;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 18px;
  }

  .footer__mobile-social {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .footer__content,
  .footer .container.footer__content {
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
