/*
Theme Name: HB Ugralvar Theme v2.0
Theme URI: https://ugralovar-hb.hu
Author: H&B Ugrálóvár
Author URI: https://ugralovar-hb.hu
Description: Színes, animált WordPress téma ugrálóvár bérléshez - v2.0 (frissített árakkal és specifikációkkal)
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hb-ugralvar
*/

/* GOOGLE FONTS - Baloo 2 & Nunito */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;600;700;800&family=Nunito:wght@400;600;700;800&display=swap');

/* COLOR SYSTEM */
:root {
  --royal-blue: #1565C0;
  --blue-bright: #2196F3;
  --blue-sky: #64B5F6;
  --blue-light: #E3F2FD;
  --magenta: #E91E8A;
  --pink-hot: #FF4081;
  --pink-light: #FCE4EC;
  --sunny-yellow: #FFD600;
  --yellow-light: #FFF9C4;
  --orange: #FF9800;
  --orange-deep: #F57C00;
  --green: #4CAF50;
  --green-light: #E8F5E9;
  --purple: #9C27B0;
  --white: #FFFFFF;
  --off-white: #F0F7FF;
  --text-dark: #1A237E;
  --text-body: #37474F;
  --shadow-soft: 0 4px 20px rgba(21, 101, 192, 0.12);
  --shadow-card: 0 8px 32px rgba(21, 101, 192, 0.10);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --radius-bubble: 50px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-body);
  background: var(--off-white);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Baloo 2', cursive;
  color: var(--text-dark);
  line-height: 1.3;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--royal-blue);
  transition: all 0.3s;
}

a:hover {
  color: var(--magenta);
}

/* FLOATING CTA BUTTONS */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}

.floating-cta.visible {
  opacity: 1;
  pointer-events: auto;
}

.floating-cta a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-bubble);
  text-decoration: none;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: wobble 4s ease-in-out infinite;
}

.floating-cta a:hover {
  animation: none;
  transform: translateY(-4px) scale(1.08);
}

.floating-cta .call-btn {
  background: linear-gradient(135deg, #43A047, #2E7D32);
  color: #fff;
}

.floating-cta .book-btn {
  background: linear-gradient(135deg, var(--magenta), #AD1457);
  color: #fff;
  animation-delay: 0.6s;
}

@keyframes wobble {
  0%, 100% { transform: translateY(0) rotate(0); }
  25% { transform: translateY(-5px) rotate(-1deg); }
  75% { transform: translateY(-3px) rotate(1deg); }
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 10px 20px;
  transition: all 0.4s;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(21, 101, 192, 0.1);
  padding: 6px 20px;
}

.navbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  height: 52px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
  transition: all 0.3s;
}

.navbar.scrolled .nav-logo {
  height: 42px;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.3s;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--sunny-yellow);
  border-radius: 3px;
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.navbar.scrolled .nav-links a {
  color: var(--text-dark);
  text-shadow: none;
}

.nav-cta-link {
  padding: 8px 22px !important;
  background: linear-gradient(135deg, var(--magenta), var(--pink-hot)) !important;
  color: #fff !important;
  border-radius: var(--radius-bubble) !important;
  text-shadow: none !important;
  box-shadow: 0 4px 16px rgba(233, 30, 138, 0.3);
}

.nav-cta-link::after {
  display: none !important;
}

.nav-cta-link:hover {
  transform: scale(1.08);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s;
}

.navbar.scrolled .hamburger span {
  background: var(--text-dark);
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    background: #fff;
    padding: 90px 32px 32px;
    gap: 16px;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .nav-links.open {
    right: 0;
  }
  
  .nav-links a {
    color: var(--text-dark) !important;
    text-shadow: none !important;
    font-size: 1.15rem;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 120px;
  background: linear-gradient(175deg, #E1F5FE 0%, #B3E5FC 20%, #81D4FA 45%, #4FC3F7 70%, #29B6F6 100%);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%234CAF50' d='M0,50Q60,20 120,45Q180,70 240,40Q300,15 360,50Q420,75 480,45Q540,20 600,50Q660,70 720,40Q780,15 840,45Q900,70 960,40Q1020,20 1080,50Q1140,65 1200,40Q1260,20 1320,45Q1380,65 1440,40L1440,120L0,120Z' opacity='.35'/%3E%3Cpath fill='%2366BB6A' d='M0,65Q80,40 160,60Q240,80 320,55Q400,35 480,65Q560,80 640,55Q720,35 800,60Q880,80 960,55Q1040,35 1120,60Q1200,75 1280,55Q1360,40 1440,60L1440,120L0,120Z' opacity='.55'/%3E%3Cpath fill='%2381C784' d='M0,80Q100,60 200,75Q300,90 400,70Q500,55 600,75Q700,90 800,70Q900,55 1000,75Q1100,90 1200,70Q1300,55 1440,75L1440,120L0,120Z'/%3E%3C/svg%3E") no-repeat bottom/cover;
  z-index: 2;
}

/* Sun */
.sun {
  position: absolute;
  top: 55px;
  right: 8%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, #FFF176, var(--sunny-yellow), var(--orange));
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(255, 214, 0, 0.5), 0 0 120px rgba(255, 214, 0, 0.2);
  animation: sunPulse 4s ease-in-out infinite;
  z-index: 1;
}

@keyframes sunPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* Clouds */
.cloud {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
}

.cloud::before, .cloud::after {
  content: '';
  position: absolute;
  background: #fff;
  border-radius: 50%;
}

.cloud-1 {
  width: 140px;
  height: 50px;
  top: 12%;
  left: 5%;
  animation: cloudDrift 30s linear infinite;
}

.cloud-1::before {
  width: 70px;
  height: 70px;
  top: -35px;
  left: 25px;
}

.cloud-1::after {
  width: 50px;
  height: 50px;
  top: -20px;
  left: 70px;
}

.cloud-2 {
  width: 110px;
  height: 40px;
  top: 18%;
  left: 55%;
  animation: cloudDrift 38s linear infinite;
  animation-delay: -14s;
  opacity: 0.85;
}

.cloud-2::before {
  width: 55px;
  height: 55px;
  top: -28px;
  left: 18px;
}

.cloud-2::after {
  width: 40px;
  height: 40px;
  top: -15px;
  left: 55px;
}

.cloud-3 {
  width: 90px;
  height: 35px;
  top: 30%;
  left: 25%;
  animation: cloudDrift 24s linear infinite;
  animation-delay: -8s;
  opacity: 0.6;
}

.cloud-3::before {
  width: 45px;
  height: 45px;
  top: -22px;
  left: 15px;
}

.cloud-3::after {
  width: 35px;
  height: 35px;
  top: -12px;
  left: 42px;
}

@keyframes cloudDrift {
  0% { transform: translateX(-250px); }
  100% { transform: translateX(calc(100vw + 250px)); }
}

/* Balloons */
.balloon {
  position: absolute;
  width: 44px;
  height: 56px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.balloon::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 50%;
  width: 1px;
  height: 28px;
  background: rgba(0, 0, 0, 0.15);
  transform: translateX(-50%);
}

.b1 {
  background: var(--magenta);
  top: 18%;
  left: 3%;
  animation: bFloat 6s ease-in-out infinite;
}

.b2 {
  background: var(--sunny-yellow);
  top: 32%;
  right: 5%;
  animation: bFloat 7s ease-in-out infinite;
  animation-delay: -2s;
}

.b3 {
  background: var(--blue-bright);
  bottom: 38%;
  left: 8%;
  animation: bFloat 5.5s ease-in-out infinite;
  animation-delay: -4s;
}

.b4 {
  background: var(--orange);
  top: 10%;
  right: 22%;
  animation: bFloat 8s ease-in-out infinite;
  animation-delay: -1s;
  opacity: 0.55;
}

.b5 {
  background: var(--green);
  top: 48%;
  left: 2%;
  animation: bFloat 6.5s ease-in-out infinite;
  animation-delay: -3s;
  opacity: 0.5;
  width: 36px;
  height: 46px;
}

.b6 {
  background: var(--purple);
  bottom: 28%;
  right: 3%;
  animation: bFloat 7.5s ease-in-out infinite;
  animation-delay: -5s;
  opacity: 0.45;
  width: 38px;
  height: 48px;
}

@keyframes bFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  33% { transform: translateY(-20px) rotate(3deg); }
  66% { transform: translateY(-8px) rotate(-1deg); }
}

/* Confetti */
.confetti-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.cp {
  position: absolute;
  opacity: 0.7;
  animation: cDrop linear infinite;
}

@keyframes cDrop {
  0% {
    transform: translateY(-5vh) rotate(0);
    opacity: 0.75;
  }
  100% {
    transform: translateY(105vh) rotate(1080deg);
    opacity: 0;
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 750px;
}

.hero-logo {
  width: min(500px, 92vw);
  margin-bottom: 12px;
  animation: logoBounce 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  filter: drop-shadow(0 8px 28px rgba(21, 101, 192, 0.4));
}

@keyframes logoBounce {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(50px) rotate(-5deg);
  }
  60% {
    transform: scale(1.06) translateY(-8px) rotate(1deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0) rotate(0);
  }
}

.hero-illustration {
  width: min(340px, 70vw);
  margin: 0 auto 16px;
  display: block;
  animation: kidsSlideIn 1s 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
}

@keyframes kidsSlideIn {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.7);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-welcome {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--royal-blue);
  font-weight: 700;
  margin-bottom: 8px;
  animation: fUp 0.7s 0.5s both;
}

.hero h1 {
  font-size: clamp(1.6rem, 4.5vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 8px;
  animation: fUp 0.7s 0.6s both;
}

.hero h1 .hl {
  background: linear-gradient(135deg, var(--magenta), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: clamp(1.05rem, 2.8vw, 1.3rem);
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 6px;
  animation: fUp 0.7s 0.7s both;
  font-style: italic;
}

.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: #37474F;
  margin-bottom: 28px;
  animation: fUp 0.7s 0.8s both;
  line-height: 1.6;
}

@keyframes fUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  animation: fUp 0.7s 0.95s both;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--radius-bubble);
  text-decoration: none;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-5px) scale(1.06);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.btn:active {
  transform: translateY(-2px) scale(1.02);
}

.btn-primary {
  background: linear-gradient(135deg, var(--magenta), #C2185B);
  color: #fff;
  box-shadow: 0 6px 24px rgba(233, 30, 138, 0.35);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--sunny-yellow), var(--orange));
  color: var(--text-dark);
  box-shadow: 0 6px 24px rgba(255, 214, 0, 0.35);
}

.btn-green {
  background: linear-gradient(135deg, #43A047, #2E7D32);
  color: #fff;
  box-shadow: 0 6px 24px rgba(76, 175, 80, 0.35);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.95rem;
}

/* SECTIONS */
section {
  padding: 80px 20px;
  position: relative;
}

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

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

.section-header h2 {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  display: inline-block;
}

.underline-fun {
  display: block;
  height: 6px;
  border-radius: 3px;
  margin: 8px auto 0;
  width: 100px;
}

.section-header p {
  font-size: 1.05rem;
  color: #607D8B;
  margin-top: 10px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* PRODUCT SECTION */
#legvar {
  background: var(--white);
  overflow: hidden;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 768px) {
  .product-showcase {
    grid-template-columns: 1fr;
  }
}

.product-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(21, 101, 192, 0.15);
}

.product-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}

.product-image-wrap:hover img {
  transform: scale(1.03);
}

.product-ribbon {
  position: absolute;
  top: 20px;
  left: -8px;
  background: linear-gradient(135deg, var(--magenta), #AD1457);
  color: #fff;
  padding: 8px 24px 8px 16px;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: 0 4px 12px rgba(233, 30, 138, 0.3);
}

.product-ribbon::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  border: 4px solid #880E4F;
  border-left-color: transparent;
  border-bottom-color: transparent;
}

.product-info h3 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin-bottom: 12px;
  line-height: 1.2;
}

.product-tagline {
  font-size: 1.1rem;
  color: var(--magenta);
  font-weight: 700;
  margin-bottom: 20px;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.4;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* PRICING */
.pricing-section {
  margin-top: 48px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 3px solid transparent;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
}

.pricing-card.weekend {
  border-color: var(--magenta);
}

.pricing-card.weekend::before {
  background: linear-gradient(90deg, var(--magenta), var(--orange));
}

.pricing-card.weekday::before {
  background: linear-gradient(90deg, var(--blue-bright), #00BCD4);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(21, 101, 192, 0.18);
}

.popular-badge {
  position: absolute;
  top: 16px;
  right: -28px;
  background: var(--sunny-yellow);
  color: var(--text-dark);
  font-family: 'Baloo 2', cursive;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 36px;
  transform: rotate(35deg);
}

.pricing-label {
  font-family: 'Baloo 2', cursive;
  font-size: 1.1rem;
  color: #607D8B;
  margin-bottom: 4px;
}

.pricing-amount {
  font-family: 'Baloo 2', cursive;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card.weekend .pricing-amount {
  color: var(--magenta);
}

.pricing-card.weekday .pricing-amount {
  color: var(--royal-blue);
}

.pricing-unit {
  font-size: 0.95rem;
  color: #90A4AE;
  margin-bottom: 16px;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* SPECS BANNER */
.specs-banner {
  background: linear-gradient(135deg, var(--blue-light), #BBDEFB);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-top: 40px;
}

.specs-banner h3 {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.spec-item .si {
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* TESTIMONIAL */
.testimonial-strip {
  background: linear-gradient(135deg, var(--purple), #7B1FA2);
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.testimonial-strip blockquote {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto 12px;
  line-height: 1.6;
}

.testimonial-strip cite {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* USP SECTION */
#miert {
  background: linear-gradient(180deg, var(--off-white), #E8F5E9, var(--off-white));
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.usp-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}

.usp-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.usp-card:nth-child(1)::after {
  background: linear-gradient(90deg, var(--magenta), #E040FB);
}

.usp-card:nth-child(2)::after {
  background: linear-gradient(90deg, var(--blue-bright), #00BCD4);
}

.usp-card:nth-child(3)::after {
  background: linear-gradient(90deg, var(--sunny-yellow), var(--orange));
}

.usp-card:nth-child(4)::after {
  background: linear-gradient(90deg, var(--green), #66BB6A);
}

.usp-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(21, 101, 192, 0.12);
}

.usp-emoji {
  font-size: 3rem;
  margin-bottom: 12px;
  display: block;
  animation: emojiW 3s ease-in-out infinite;
}

.usp-card:nth-child(2) .usp-emoji {
  animation-delay: 0.5s;
}

.usp-card:nth-child(3) .usp-emoji {
  animation-delay: 1s;
}

.usp-card:nth-child(4) .usp-emoji {
  animation-delay: 1.5s;
}

@keyframes emojiW {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-8deg); }
  75% { transform: rotate(8deg); }
}

.usp-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.usp-card p {
  font-size: 0.92rem;
  line-height: 1.6;
}

/* STEPS */
.steps-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform 0.4s, box-shadow 0.4s;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(21, 101, 192, 0.14);
}

.step-num {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--blue-bright), #0288D1);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 1.1rem;
}

.step-emoji {
  font-size: 3rem;
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* BOOKING & CONTACT */
.booking-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .booking-wrapper {
    grid-template-columns: 1fr;
  }
}

.booking-widget-area {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.booking-widget-area h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.wp-note {
  background: var(--yellow-light);
  border-left: 4px solid var(--sunny-yellow);
  padding: 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.wp-note code {
  background: rgba(0, 0, 0, 0.08);
  padding: 3px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
}

.contact-panel {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.contact-panel h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ECEFF1;
}

.contact-item:last-of-type {
  border-bottom: none;
  margin-bottom: 24px;
}

.cic {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-item a {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--royal-blue);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--magenta);
}

.sub-text {
  font-size: 0.85rem;
  color: #78909C;
  margin-top: 2px;
}

.service-area-box {
  background: var(--green-light);
  border-radius: var(--radius-sm);
  padding: 20px;
}

.service-area-box h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.service-area-box p {
  font-size: 0.9rem;
  line-height: 1.5;
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: auto;
  min-height: 300px;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

.map-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, var(--text-dark), #283593);
  color: #fff;
  text-align: center;
  padding: 50px 20px 30px;
}

.footer-logo {
  height: 80px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

footer p {
  margin-bottom: 8px;
  opacity: 0.85;
}

footer a {
  color: var(--sunny-yellow);
  text-decoration: none;
  font-weight: 600;
}

footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}

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

/* RESPONSIVE */
@media (max-width: 480px) {
  .hero {
    padding: 60px 15px 100px;
  }
  
  .floating-cta {
    bottom: 15px;
    right: 15px;
  }
  
  .floating-cta a {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}

/* ============================================
   GALLERY SECTION
   ============================================ */

#galeria {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Mobil: 2 oszlop */
  gap: 12px;
  margin-top: 40px;
}

/* Tablet: 3 oszlop */
@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

/* Desktop: 4 oszlop */
@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

/* Nagy desktop: 4 oszlop nagyobb gap-pel */
@media (min-width: 1200px) {
  .gallery-grid {
    gap: 24px;
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  font-size: 3rem;
  color: white;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  overflow: auto;
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 85vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 10001;
}

.lightbox-close:hover {
  color: var(--magenta);
}

.lightbox-prev,
.lightbox-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -30px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 30px;
  transition: 0.3s ease;
  border-radius: 4px;
  user-select: none;
  z-index: 10001;
  background-color: rgba(0, 0, 0, 0.5);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
  color: var(--magenta);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
  padding: 12px 24px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 20px;
  font-size: 1rem;
  max-width: 80%;
}

/* Lightbox animáció */
@keyframes zoom {
  from {transform: translate(-50%, -50%) scale(0.8); opacity: 0;}
  to {transform: translate(-50%, -50%) scale(1); opacity: 1;}
}

.lightbox-content {
  animation: zoom 0.3s;
}

/* Lightbox mobile responsiveness */
@media (max-width: 768px) {
  .lightbox-prev,
  .lightbox-next {
    font-size: 20px;
    padding: 12px;
  }
  
  .lightbox-close {
    top: 10px;
    right: 15px;
    font-size: 30px;
  }
  
  .lightbox-caption {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}

/* ============================================
   3 LÉGVÁR KÁRTYÁK
   ============================================ */
.legvar-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;margin-top:40px;}
.legvar-card{background:#fff;border-radius:var(--radius-md);overflow:hidden;box-shadow:var(--shadow-card);transition:transform .3s,box-shadow .3s;}
.legvar-card:hover{transform:translateY(-8px);box-shadow:0 12px 40px rgba(21,101,192,.15);}
.legvar-image{position:relative;height:280px;overflow:hidden;}
.legvar-image img{width:100%;height:100%;object-fit:cover;transition:transform .3s;}
.legvar-card:hover .legvar-image img{transform:scale(1.08);}
.legvar-ribbon{position:absolute;top:16px;right:16px;background:linear-gradient(135deg,var(--magenta),var(--pink-hot));color:#fff;padding:8px 16px;border-radius:var(--radius-bubble);font-weight:700;font-size:.9rem;box-shadow:0 4px 12px rgba(233,30,138,.3);}
.legvar-content{padding:28px;}
.legvar-content h3{font-size:1.6rem;margin-bottom:8px;color:var(--text-dark);}
.legvar-tagline{font-size:1rem;color:var(--text-body);margin-bottom:20px;font-weight:600;}
.legvar-specs{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:20px;}
.lspec{display:flex;align-items:center;gap:8px;font-size:.95rem;color:var(--text-body);background:var(--off-white);padding:10px 12px;border-radius:var(--radius-sm);}
.lspec span{font-size:1.3rem;}
.legvar-price{background:linear-gradient(135deg,#E3F2FD,#BBDEFB);padding:16px;border-radius:var(--radius-sm);margin-bottom:20px;}
.price-row{display:flex;justify-content:space-between;align-items:center;margin-bottom:8px;font-size:1.05rem;}
.price-row:last-child{margin-bottom:0;}
.price-row span{color:var(--text-body);}
.price-row strong{color:var(--royal-blue);font-size:1.2rem;}
.btn-block{width:100%;justify-content:center;}
.info-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-top:32px;}
.info-card{background:#fff;padding:28px 20px;border-radius:var(--radius-sm);text-align:center;box-shadow:var(--shadow-soft);}
.info-icon{font-size:3rem;margin-bottom:12px;display:block;}
.info-card h4{font-size:1.2rem;margin-bottom:8px;color:var(--text-dark);}
.info-card p{font-size:.95rem;color:var(--text-body);margin:0;}
@media(max-width:968px){.legvar-grid{grid-template-columns:1fr;gap:32px;}.info-grid{grid-template-columns:repeat(2,1fr);gap:20px;}}
@media(max-width:640px){.legvar-specs{grid-template-columns:1fr;}.info-grid{grid-template-columns:1fr;}}
