:root{
  --blue:#204F9C;
  --sand:#fffaf5;
  --beige:#f3e8d7;
  --darkblue:#193b79;
}
html{scroll-behavior:smooth;}
body{
  font-family:'Poppins',sans-serif;
  background:var(--sand);
  color:#333;
  overflow-x:hidden;
}

/*navbar start*/
/* ===== BUSINESS HEADER ===== */
.business-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height:55px;
  line-height:35px;
  background: #fff;
  color: #333;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-family: 'Poppins', sans-serif;
  z-index: 1051;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}

.business-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Contact Info */
.header-contact span {
  margin-right: 25px;
  font-size: 0.95rem;
  color: #333;
  font-weight: 500;
}
.header-contact i {
  color: var(--blue);
  margin-right: 6px;
}
.header-contact a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}
.header-contact a:hover {
  color: var(--blue);
}

/* Menu Links */
.header-links a {
  color: #333;
  font-weight: 500;
  margin-right: 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}
.header-links i {
  margin-right: 6px;
  color: var(--blue);
}
.header-links a:hover {
  color: var(--blue);
}

/* Social Icons */
.header-social .social-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #333;
  border-radius: 50%;
  color: #333;
  margin-left: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.header-social .social-icon:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}


/* ===== ADMIN BAR FIX ===== */
body.admin-bar .business-header {
  top: 32px;
}
body.admin-bar .navbar {
  top: calc(32px + 55px);
}
@media (max-width: 782px) {
  body.admin-bar .business-header {
    top: 46px;
  }
  body.admin-bar .navbar {
    top: calc(46px + 44px);
  }
}

/* ===== NAVBAR UNDER BUSINESS HEADER ===== */
.main-navbar {
  position: sticky;
  top: 55px; /* just below business header */
  width: 100%;
  background: rgba(25, 59, 121, 0.85);
  backdrop-filter: blur(10px);
  padding: 0.7rem 0;
  transition: background 0.5s ease, box-shadow 0.4s ease;
  z-index: 1050;
}

/* Fade-in glass effect when scrolling */
.main-navbar.scrolled {
  background: rgba(25, 59, 121, 0.98);
  box-shadow: 0 4px 25px rgba(0,0,0,0.25);
}

/* Logo + Links */
.main-navbar .navbar-brand img {
  height: 64px;
  transition: transform 0.3s ease;
}
.main-navbar .navbar-brand img:hover { transform: scale(1.05); }

.main-navbar .nav-link {
  color: #fff;
  margin: 0 10px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.main-navbar .nav-link:hover {
  color: #f8e8c0;
}

/* ===== MOBILE MENU (slide-down panel) ===== */
.main-navbar .navbar-collapse {
  background: rgba(25, 59, 121, 0.97);
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 25px rgba(0,0,0,0.25);
  transform: translateY(-20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}
.main-navbar .navbar-collapse.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.main-navbar .navbar-toggler {
  border-color: #fff;
  z-index: 1060;
  position: relative;
}
.main-navbar .navbar-toggler-icon {
  filter: invert(0);
}

/* ===== MOBILE ===== */
@media (max-width: 992px) {
  .main-navbar {
    position: relative;
    top:0;
    background: rgba(25,59,121,0.98);
  }

  .main-navbar .navbar-collapse {
    position: relative;
    top: 0;
    box-shadow: none;
    border: none;
    background: rgba(25,59,121,0.98);
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .hide-on-mobile {
    display: none !important;
  }

  .main-navbar .navbar-collapse.show {
    display: block;
    animation: slideDown 0.35s ease forwards;
  }

  @keyframes slideDown {
    from { transform: translateY(-10px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
  }

  .main-navbar .navbar-nav {
    text-align: center;
  }

  .main-navbar .nav-link {
    display: block;
    padding: 0.5rem 0;
    font-size: 1.05rem;
  }
}

/* ===== FIX: Navbar fully visible on desktop ===== */
.business-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050; /* slightly less than navbar */
}

.main-navbar {
  position: fixed;
  top: 55px; /* directly under business header */
  width: 100%;
  background: rgba(25, 59, 121, 0.85);
  backdrop-filter: blur(10px);
  transition: background 0.4s ease, box-shadow 0.4s ease;
  z-index: 1051; /* make sure it's above the header */
}

/* Add fade + shadow on scroll */
.main-navbar.scrolled {
  background: rgba(25, 59, 121, 0.97);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

/* Adjust page offset so content starts below both bars */
body {
  padding-top: 140px;
}

/* Desktop nav links visible */
.main-navbar .nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 12px;
}
.main-navbar .nav-link:hover {
  color: #f8e8c0 !important;
}

/* Dropdowns */
.main-navbar .dropdown-menu {
  background: rgba(25,59,121,0.97);
  border: none;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}
.main-navbar .dropdown-item {
  color: #fff;
}
.main-navbar .dropdown-item:hover {
  color: #f8e8c0;
  background: transparent;
}

/* ===== FIX COLLAPSE VISIBILITY ===== */

/* Reset desktop visibility */
@media (min-width: 992px) {
  .main-navbar .navbar-collapse {
    display: flex !important;
    flex-basis: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: static !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
    padding: 0 !important;
  }

  .main-navbar .navbar-nav {
    flex-direction: row !important;
    align-items: center !important;
  }

  .main-navbar .dropdown-menu {
    position: absolute;
  }
}

/* ====== FIX + STYLING FOR DESKTOP DROPDOWN MENUS ====== */

/* Ensure dropdowns work properly on desktop */
@media (min-width: 992px) {
  .main-navbar .navbar-collapse {
    display: flex !important;
    flex-basis: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: static !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
    padding: 0 !important;
  }

  .main-navbar .navbar-nav {
    flex-direction: row !important;
    align-items: center !important;
  }

  /* Dropdown container */
  .main-navbar .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background: rgba(25, 59, 121, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    padding: 0.6rem 0;
  }

  /* Show dropdown on hover */
  .main-navbar .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Dropdown links */
  .main-navbar .dropdown-item {
    color: #fff;
    padding: 0.6rem 1.2rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
  }

  .main-navbar .dropdown-item:hover {
    color: #f8e8c0;
    background: rgba(255, 255, 255, 0.05);
    padding-left: 1.5rem;
  }

  /* Small glowing border effect under active dropdown */
  .main-navbar .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 25px;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 8px solid rgba(25, 59, 121, 0.95);
  }

  /* Optional subtle fade animation */
  @keyframes dropdownFade {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .main-navbar .nav-item.dropdown:hover > .dropdown-menu {
    animation: dropdownFade 0.3s ease forwards;
  }
}

/* ===== MOBILE DROPDOWN ===== */
@media (max-width: 991.98px) {
  .main-navbar .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    background: rgba(25, 59, 121, 0.98);
    border: none;
  }

  .main-navbar .dropdown-item {
    color: #fff;
    padding: 0.6rem 1rem;
  }

  .main-navbar .dropdown-item:hover {
    color: #f8e8c0;
    background: rgba(255, 255, 255, 0.05);
  }
}

/*end navbar*/


/* HERO SLIDER start*/
.hero-slider{
  width:100%;
  height:70vh;
  min-height:420px;
}
.swiper-slide{
  background-size:cover;
  background-position:center;
  position:relative;
}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to bottom right,rgba(25,59,121,.7),rgba(0,0,0,.3));
  color:#fff;text-align:center;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  padding:2rem;
}
.hero-overlay img{width:160px;margin-bottom:15px;}
.hero-overlay h2{font-size:clamp(30px,4vw,50px);font-weight:700;margin-bottom:10px;}
.hero-overlay p{font-size:18px;margin-bottom:20px;}

.hero-overlay { opacity: 0; transition: opacity 1.2s ease; }
.swiper-slide-active .hero-overlay { opacity: 1; }

.swiper-button-next,.swiper-button-prev{color:#fff;}
.swiper-button-next:hover,.swiper-button-prev:hover{color:#f8e8c0;}

/* ===== HERO WITH EMBEDDED SEARCH ===== */
/* ===== HERO SLIDER OVERLAY ===== */
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: linear-gradient(to bottom right, rgba(25,59,121,0.6), rgba(0,0,0,0.4));
  padding: 2rem;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 2;
}

.swiper-slide-active .hero-overlay {
  opacity: 1;
}

.hero-heading {
  text-align: left;
  position: absolute;
  top: 80px;
  left: 80px;
}

.hero-heading h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.hero-heading h1 {
  font-size: 3rem;
  font-weight: 800;
}

.hero-search {
  background: rgba(255,255,255,0.95);
  border-radius: 18px;
  box-shadow: 0 6px 35px rgba(0,0,0,0.15);
  padding: 25px 30px;
  max-width: 950px;
  width: 95%;
  margin-top: auto;
}

@media (max-width: 992px) {
  .hero-heading {
    top: 40px;
    left: 25px;
  }
  .hero-heading h1 {
    font-size: 2rem;
  }
}

.hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-swiper .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1.2s ease-in-out;
}

.hero-swiper .swiper-slide {
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-swiper .swiper-slide-active {
  opacity: 1;
  z-index: 2;
}

.hero-text {
  position: absolute;
  top: 25%;
  left: 80px;
  z-index: 3;
  color: #fff;
  text-align: left;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-text h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: .3rem;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
}

/* ===== Parallax Smoothness ===== */
.hero-slide-bg {
  will-change: transform;
  transition: transform 0.3s ease-out;
}


/* ===== SEARCH BOX FIXED BELOW SLIDER ===== */
.hero-search-wrapper {
  position: relative;
  z-index: 5;
  top:-40%;
}

.hero-search {
  background: rgba(255,255,255,0.97);
  border-radius: 18px;
  box-shadow: 0 6px 35px rgba(0,0,0,0.15);
  padding: 25px 30px;
  max-width: 950px;
  width: 100%;
  margin: 0 auto;
}

.hero-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue) 0%, var(--darkblue) 100%);
  color: #fff !important;
  font-weight: 600;
  font-size: 1.15rem;
  padding: 0.9rem 2.4rem;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 0 18px rgba(25, 59, 121, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

/* Subtle golden edge (luxury look) */
.hero-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 2px;
  background: linear-gradient(135deg, #f8e8c0, rgba(255,255,255,0.3));
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* Shine animation overlay */
.hero-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transform: skewX(-25deg);
  transition: left 0.7s ease;
}

.hero-btn:hover::after {
  left: 130%;
}

/* Hover effects */
.hero-btn:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #2a64c3 0%, var(--blue) 100%);
  color: #f8e8c0 !important;
  box-shadow: 0 0 30px rgba(25, 59, 121, 0.5);
  border-color: #f8e8c0;
}

/* Gentle glowing animation */
.hero-btn {
  animation: heroGlow 3s infinite alternate ease-in-out;
}

@keyframes heroGlow {
  from { box-shadow: 0 0 15px rgba(25,59,121,0.4); }
  to   { box-shadow: 0 0 35px rgba(25,59,121,0.8); }
}

.hero-btn-light {
  display: inline-block;
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  color: var(--blue) !important;
  font-weight: 600;
  font-size: 1.15rem;
  padding: 0.9rem 2.4rem;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

/* Gold border */
.hero-btn-light::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 2px;
  background: linear-gradient(135deg, #f8e8c0, rgba(255,255,255,0.4));
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* Shine effect */
.hero-btn-light::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  transform: skewX(-25deg);
  transition: left 0.7s ease;
}

.hero-btn-light:hover::after {
  left: 130%;
}

/* Hover */
.hero-btn-light:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #f8e8c0 0%, #fff 100%);
  color: var(--darkblue) !important;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

/* Glow animation */
.hero-btn-light {
  animation: heroGlowLight 3s infinite alternate ease-in-out;
}

@keyframes heroGlowLight {
  from { box-shadow: 0 0 15px rgba(255,255,255,0.3); }
  to   { box-shadow: 0 0 30px rgba(255,255,255,0.6); }
}


/* ===== ARROWS ===== */
.swiper-button-prev,
.swiper-button-next {
  color: #fff;
  opacity: 0.8;
  transition: opacity .3s;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-section { height: 600px; }
  .hero-text { top: 40px; left: 25px; }
  .hero-text h1 { font-size: 2rem; }
  .hero-search-wrapper { margin-top: -60px; }
}


/* Search box */
.hero-search {
  background: rgba(255,255,255,0.97);
  border-radius: 18px;
  box-shadow: 0 6px 35px rgba(0,0,0,0.15);
  padding: 25px 30px;
  max-width: 950px;
  width: 95%;
  margin: 0 auto;
  z-index: 4;
}

/* Swiper arrows */
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  color: #fff;
  z-index: 5;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-slider {
    height: 600px;
  }
  .hero-heading {
    top: 40px;
    left: 25px;
  }
  .hero-heading h1 {
    font-size: 2rem;
  }
  .hero-search {
    padding: 20px;
  }
}

/*end hero slider*/

/* SEARCH */
#search{background:var(--beige);}
.search-box{
  background:#fff;
  border-radius:18px;
  box-shadow:0 6px 25px rgba(0,0,0,0.08);
  padding:25px;
}

/* ===== RESPONSIVE SEARCH BOX IMPROVEMENTS ===== */

/* Make form elements taller and more tappable on mobile */
.hero-search .form-select,
.hero-search .form-control {
    font-size: 0.95rem;
    height: 48px; /* Taller touch target */
}

/* Remove border radius corners when inside input group for cleaner look */
.input-group .form-select:focus,
.input-group .form-control:focus {
    box-shadow: none;
    background-color: #fff !important;
}

/* Mobile Specific Adjustments */
@media (max-width: 992px) {
    .hero-search-wrapper {
        margin-top: -80px; /* Pull it up over the image */
        top: 0; /* Reset relative top positioning */
        padding: 0 15px;
    }

    .hero-search {
        padding: 20px 15px;
        border-radius: 12px;
    }

    /* On mobile, stack Step 2 spacing better */
    #search-step-2 {
        margin-top: 15px !important;
    }
    
    /* Make the Search Button Stand Out */
    .hero-search button[type="submit"] {
        margin-top: 10px;
        height: 50px;
        font-size: 1.1rem;
    }
}

/* Very small screens (iPhone SE etc) */
@media (max-width: 380px) {
    .hero-search .form-select, 
    .hero-search .form-control {
        font-size: 0.85rem;
        padding-left: 5px;
        padding-right: 5px;
    }
}

/* ===== HERO KERESŐ POZICIONÁLÁS ===== */

.hero-search-wrapper {
    position: relative;
    z-index: 20;
    margin-top: -100px; /* Desktopon felhúzzuk a képre */
    margin-bottom: 20px;
    padding: 0 15px;
    width: 100%;
}

.hero-search {
    background: rgba(255,255,255,0.98);
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    padding: 25px 30px;
    max-width: 950px;
    width: 100%;
    margin: 0 auto;
}

/* ===== MOBIL NÉZET (<992px) ===== */
@media (max-width: 992px) {
    
    .hero-search-wrapper {
        margin-top: -20px; /* Kicsit belelóg, vagy állítsd 0-ra ha teljesen alá akarod */
        padding: 0 10px;
    }

    .hero-search {
        padding: 20px 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1); /* Kisebb árnyék mobilon */
        border: 1px solid #eee;
    }

    /* Extra hely a gombnak mobilon */
    .hero-search button[type="submit"] {
        margin-top: 15px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    /* Inputok magasabbak legyenek mobilon (könnyebb érintés) */
    .hero-search .form-select,
    .hero-search .form-control {
        height: 48px;
    }
}

/* Balra igazított kép beállításai (Körbefuttatás) */
img.alignleft {
    float: left;            /* Ez mondja meg, hogy balra ússzon */
    margin-right: 25px !important;     /* Távolság a szövegtől jobbra */
    margin-bottom: 15px !important;    /* Távolság a szövegtől lefelé */
    max-width: 45% !important;         /* A kép ne foglalja el a fél képernyőnél többet */
    height: auto;           /* Képarány megtartása */
}

/* Jobbra igazított kép beállításai (ha ilyet is használsz) */
img.alignright {
    float: right;
    margin-left: 25px !important;
    margin-bottom: 15px !important;
    max-width: 45% !important;
    height: auto;
}

/* MOBIL NÉZET JAVÍTÁSA (Nagyon fontos!) */
/* Mobilon a körbefuttatás összenyomja a szöveget, ezért ott kikapcsoljuk */
@media (max-width: 600px) {
    img.alignleft, img.alignright {
        float: none;        /* Úsztatás kikapcsolása */
        display: block;     /* Kép külön sorba kerül */
        margin: 0 auto 20px auto; /* Középre igazítás */
        max-width: 100%;    /* Teljes szélesség mobilon */
    }
}

/* DESTINATIONS + OFFERS */
h2.section-title{
  color:var(--blue);
  font-weight:700;
  text-align:center;
  margin:40px 0 30px;
}
.destination-card img,.card img{
  width:100%;object-fit:cover;
}
.destination-card h5{text-align:center;color:var(--blue);margin-top:10px;font-weight:600;}
.card{
  border:none;border-radius:15px;
  box-shadow:0 4px 18px rgba(0,0,0,.08);
  transition:transform .3s;
}
.card:hover{transform:translateY(-5px);}
.card-body h5{color:var(--blue);font-weight:600;}

/* FAQ + MAP */
#faq{background:var(--beige);}
#map{
  width:100%;height:450px;
  border-radius:10px;border:2px solid var(--blue);
}

#map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  height: 500px;
}

/* ====== Page Layout ====== */
.page-hero {
  position: relative;
  background-color: #204F9C;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.page-hero h1 {
  font-weight: 700;
  letter-spacing: 0.5px;
}
.page-content p {
  line-height: 1.7;
  margin-bottom: 1.2em;
}
.page-content img {
  max-width: 100%;
  border-radius: 10px;
  margin: 10px 0;
}
aside h5 {
  color: #204F9C;
}

/* ===== PAGE CONTENT STYLING ===== */
.page-content {
  max-width: 1140px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 40px 50px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

/* Headings */
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
  color: var(--blue);
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.page-content h3 {
  font-size: 1.6rem;
  border-left: 5px solid var(--blue);
  padding-left: 12px;
}

.page-content h5 {
  font-size: 1.4rem;
}

.page-content h6 {
  font-size: 1.15rem;
  color: var(--darkblue);
}

/* Paragraphs */
.page-content p {
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.page-content p strong {
  color: var(--darkblue);
}

/* Lists */
.page-content ul, .page-content ol {
  padding-left: 1.6rem;
  margin-bottom: 1.2rem;
}

.page-content li {
  margin-bottom: 0.5rem;
}

/* Links */
.page-content a {
  color: var(--blue);
  text-decoration: underline;
  transition: color 0.3s ease;
}
.page-content a:hover {
  color: var(--darkblue);
}

/* Blockquotes */
.page-content blockquote {
  border-left: 5px solid var(--blue);
  background: var(--beige);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #333;
}

/*single utazas*/
.utazas-cta {
  background: linear-gradient(135deg, #0073aa, #005f8c);
}
.utazas-cta input[type=email]::placeholder {
  color: #666;
}

/* Légtér Club Sablon Stílusok */
.legter-container {
    background-color: #f0f4f8;
    padding-bottom: 50px;
}

.legter-hero {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.legter-card {
    background: #ffffff;
    max-width: 900px;
    width: 100%;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid #e1e8ed;
}

.legter-main-title {
    color: #1a3c61 !important; /* A klubutazas sötétkékje */
    font-size: 42px !important;
    font-weight: 800 !important;
    text-align: center;
    margin-bottom: 10px !important;
}

.legter-subtitle {
    font-size: 22px;
    color: #5a7184;
    text-align: center;
    margin-bottom: 40px;
}

.legter-intro h2 {
    color: #333;
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legter-bullet-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 30px 0 !important;
}

.legter-bullet-list li {
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
    line-height: 1.5;
}

.legter-bullet-list li::before {
    content: '✈️';
    position: absolute;
    left: 0;
    top: 0;
}

.legter-action-area {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: #f9fbff;
    border-radius: 15px;
}

.legter-cta-text {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* A NARANCSSÁRGA GOMB */
.legter-main-button {
    background-color: #ff6600 !important;
    color: #ffffff !important;
    padding: 22px 45px !important;
    font-size: 24px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    border-radius: 60px !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3) !important;
    border: none !important;
}

.legter-main-button:hover {
    background-color: #e65c00 !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 102, 0, 0.4) !important;
}

.legter-info-footer {
    margin-top: 40px;
    font-size: 14px;
    color: #9db2c3;
    text-align: center;
    font-style: italic;
}

.legter-offers-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.legter-promo-container {
    background: #1a3c61; /* A fejléc kékje */
    padding: 30px;
    margin: 40px 0;
    color: #ffffff;
}
.legter-promo-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}
.legter-text-side h3 {
    margin: 0 0 5px 0 !important;
    color: #ffffff !important;
    font-size: 24px !important;
}
.legter-text-side p {
    margin: 0 !important;
    font-size: 16px;
    opacity: 0.9;
}
.legter-promo-btn {
    background-color: #ff6600 !important; /* Narancs a kontraszt miatt */
    color: #ffffff !important;
    padding: 15px 30px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: bold !important;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    font-size: 14px;
}
.legter-promo-btn:hover {
    background-color: #e65c00 !important;
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .legter-promo-content { text-align: center; justify-content: center; }
}

#legter-floating-cta {
    position: fixed;
    bottom: 30px; /* Távolság az aljától */
    right: 30px;  /* Távolság a jobb széltől */
    z-index: 9999;
}

.floating-button {
    background-color: #ff6600 !important;
    color: white !important;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: bold;
    font-family: sans-serif;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.floating-button:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #e65c00 !important;
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.6);
}

.plane-icon {
    font-size: 20px;
    margin-right: 10px;
}

.button-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobilon kicsit kisebb legyen, hogy ne takarjon sokat */
@media (max-width: 768px) {
    #legter-floating-cta {
        bottom: 20px;
        right: 20px;
    }
    .button-text {
        font-size: 12px;
    }
    .floating-button {
        padding: 10px 15px;
    }
}

/* ===== LÉGTÉR CLUB ARCHIVE REFINEMENTS ===== */
.legter-archive-wrapper {
    background-color: #f0f2f5 !important;
}

.price-badge-floating {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #d32f2f;
    color: #fff;
    padding: 6px 16px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.4);
}

.avatar-fb {
    width: 45px;
    height: 45px;
    font-size: 20px;
}

.legter-feed-card {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.legter-feed-card:hover {
    transform: translateY(-5px);
}

.legter-main-button {
    background: linear-gradient(135deg, #ff6600 0%, #e65c00 100%) !important;
    padding: 18px 40px !important;
    border-radius: 50px !important;
    color: #fff !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    display: inline-block;
    transition: all 0.3s ease;
}

.legter-main-button:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4) !important;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "\F285"; /* Bootstrap Icon: chevron-right */
    font-family: "bootstrap-icons";
    font-size: 0.7rem;
    color: #ccc;
    vertical-align: middle;
}

.breadcrumb-item a:hover {
    color: #ff6600 !important; /* A te akciószíned */
}

.seo-text-content h1 {
    font-size: 1.5rem !important;
    font-weight: 500 !important;
    margin-bottom: 20px !important;
    color: #1a3c61 !important;
}

/* SEO Text Links - Animated Line */
.seo-text-content a {
    color: #0096FF;
    text-decoration: none;
    position: relative;
    font-weight: 600;
    transition: color 0.3s ease;
}

.seo-text-content a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #0096FF;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.seo-text-content a:hover {
    color: #0056b3;
}

.seo-text-content a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
/* RESPONSIVE UPDATES */
@media (max-width: 768px) {
    .legter-main-title {
        font-size: 28px !important;
    }
    .legter-subtitle {
        font-size: 16px !important;
    }
    .legter-card-intro h1 {
        font-size: 1.5rem !important;
    }
    .legter-feed-card {
        border-radius: 0 !important; /* Full width edge to edge on mobile like FB */
        margin-bottom: 12px !important;
        border-left: 0 !important;
        border-right: 0 !important;
    }
    .avatar-fb {
        width: 38px;
        height: 38px;
    }
    .price-badge-floating {
        padding: 4px 12px;
        font-size: 0.85rem;
    }
}


/* Responsive */
@media (max-width: 768px) {
  .page-content {
    padding: 25px 20px;
  }
  .page-content h3 {
    font-size: 1.3rem;
  }
  .page-content h5 {
    font-size: 1.2rem;
  }
  .page-content h6 {
    font-size: 1.05rem;
  }
}


/* FOOTER */

/* ===== NEWSLETTER BAR (1-row layout) ===== */
.newsletter-bar {
  background: linear-gradient(90deg, var(--darkblue) 0%, var(--blue) 100%);
  color: #fff;
  padding: 25px 15px;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.newsletter-form {
  max-width: 1100px;
  margin: 0 auto;
}

.newsletter-label {
  font-size: 1.05rem;
}

.newsletter-input {
  border-radius: 50px;
  padding: 10px 20px;
  border: none;
  outline: none;
  width: 260px;
  font-size: 1rem;
}

.newsletter-input::placeholder {
  color: rgba(0,0,0,0.4);
}

.newsletter-btn {
  background: linear-gradient(135deg, #f8e8c0 0%, #ffeeb8 100%);
  color: var(--darkblue);
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(248,232,192,0.4);
}

.newsletter-check {
  accent-color: #f8e8c0;
  width: 1.1rem;
  height: 1.1rem;
  cursor: pointer;
}

.form-check-label {
  cursor: pointer;
}

/* Smooth transition between newsletter and footer */
.newsletter-bar {
  margin-bottom: 0;
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gdpr-link {
  color: #f8e8c0;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s ease;
}
.gdpr-link:hover {
  color: #fff;
}

.footer-cta-box {
  background: linear-gradient(135deg, #f8e8c0 0%, #ffeeb8 100%);
  color: var(--darkblue);
  padding: 40px 20px;
  border-radius: 20px;
  margin-bottom: 50px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.15);
}
.footer-cta-btn {
  background: var(--darkblue);
  color: #fff !important;
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.footer-cta-btn:hover {
  background: var(--blue);
  transform: translateY(-2px);
}


footer{
  background:linear-gradient(180deg,var(--darkblue),#102c58);
  color:#fff;
  text-align:center;
  padding:0 0;
}
footer img{height:60px;margin-bottom:10px;}
footer p{margin:0;font-size:.9rem;}

/* ===== FOOTER MENU ===== */
footer .menu {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 0;
  margin: 10px 0;
  list-style: none;
}

footer .menu li a {
  color: #fff;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color .3s ease;
}

footer .menu li a:hover {
  color: #f8e8c0;
}

/* ===== MODERN FOOTER ===== */
.site-footer {
  background: linear-gradient(180deg, #14326b 0%, #0e2550 100%);
  color: #fff;
  padding-top: 60px;
  font-size: 0.95rem;
}

.footer-top {
  padding-bottom: 40px;
}

.footer-logo {
  height: 60px;
  width: auto;
}

.footer-contact {
  margin: 0;
  font-size: 0.9rem;
}

.footer-contact i {
  color: #f8e8c0;
  margin-right: 6px;
}
.footer-contact a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-contact a:hover {
  color: #f8e8c0;
}

/* Footer Menu (center column wider) */
.footer-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer-menu li {
  margin-bottom: 8px;
}
.footer-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.footer-menu a:hover {
  color: #f8e8c0;
}

/* Key Points */
.footer-points {
  font-weight: 500;
  color: #f8e8c0;
}
.footer-checklist li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}
.footer-checklist i {
  color: #f8e8c0;
  font-size: 1.1rem;
}

/* Copyright line at bottom */
.footer-bottom {
  background: #0a1b3d;
  text-align: center;
  padding: 15px 0;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 30px;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .footer-col {
    text-align: center !important;
    margin-bottom: 25px;
  }
  .footer-checklist {
    justify-content: center !important;
  }
  .footer-checklist li {
    justify-content: center;
  }
  .footer-points {
    text-align: center !important;
  }
}




/* FADE-IN */
.fade-in{opacity:0;transform:translateY(25px);transition:opacity .8s ease,transform .8s ease;}
.fade-in.show{opacity:1;transform:translateY(0);}

@media(max-width:768px){
  .hero-slider{height:45vh;}
  .navbar-brand img{height:40px;}
  .hero-overlay img{width:120px;}
  .search-box{padding:15px;}
}

/*cta block*/
/* ===== CTA BLOCK STYLES (Animated + Parallax) ===== */
.cta-block {
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
  will-change: transform, opacity;
}

/* Animate fade-in */
.cta-block.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Hover lift */
.cta-block:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* 🌊 Blue CTA variant — with animated gradient shift */
.cta-block.bg-primary {
  background: linear-gradient(135deg, #007bff 0%, #0056d6 100%);
  background-position: 50% var(--scroll-shift, 0px);
  background-size: 200% 200%;
  color: #fff !important;
  transition: background-position 0.2s linear;
}
.cta-block.bg-primary a.btn-light:hover {
  background-color: #f8f9fa;
  color: #0056d6;
}

/* 🩶 Light CTA variant */
.cta-block.bg-light {
  background: #f9fafc !important;
  border: 1px solid #dee2e6 !important;
  color: #212529 !important;
}
.cta-block.bg-light a.btn-primary:hover {
  opacity: 0.9;
  transform: scale(1.03);
}

/* Text styling */
.cta-block h3 {
  font-size: clamp(1.4rem, 1.2rem + 1vw, 2rem);
  font-weight: 700;
}
.cta-block p {
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  max-width: 720px;
  margin-inline: auto;
}

/* Responsive spacing */
@media (max-width: 768px) {
  .cta-block {
    padding: 2.5rem 1.5rem !important;
  }
}



