/* styles.css */

:root {
  --blue: #0072B5;
  --yellow: #FFC72C;
  --green: #4BA64F;
  --gray: #707070;
  --dark: #0F0F0F;
  --cta-red: #E63946;
  --font-sans: "Nunito Sans", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--dark);
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

/* HEADER + NAVIGATION */
header {
  background: var(--blue);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

header h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

header p {
  font-size: 1.3em;
  margin-bottom: 30px;
}

header .cta-btn {
  display: inline-block;
  background: var(--cta-red);
  color: #fff;
  padding: 15px 30px;
  font-size: 1.2em;
  border-radius: 6px;
  transition: transform .3s;
}

header .cta-btn:hover {
  transform: scale(1.05);
}

/* buborék animációk */
header .bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  animation: floatUp 12s infinite ease-in;
}

@keyframes floatUp {
  0% { bottom: -100px; opacity: 0.2; }
  50% { opacity: 0.05; }
  100% { bottom: 100%; opacity: 0; }
}

/* NAVIGATION (hamburger + menü) */
nav {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1000;
}
.menu-btn {
  display: none;
}
.menu-icon {
  display: none;
  width: 30px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.menu-icon span {
  display: block;
  height: 4px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all .3s ease;
}
.menu {
  display: flex;
  gap: 20px;
}
.menu a {
  color: #fff;
  font-size: 1em;
  padding: 8px 12px;
  transition: background .3s;
}
.menu a:hover {
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
}

@media (max-width: 768px) {
  .menu {
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    flex-direction: column;
    background: var(--blue);
    border-radius: 6px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
  }
  .menu-btn:checked ~ .menu {
    max-height: 300px;
  }
  .menu-icon {
    display: flex;
  }
  .menu-icon.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px,5px);
  }
  .menu-icon.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-icon.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px,-5px);
  }
  .menu a {
    padding: 12px;
  }
}

/* KONTAINER ÉS ALAP SZEPCIÓK */
.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

section {
  margin-bottom: 60px;
}
section h2 {
  color: var(--blue);
  font-size: 2em;
  margin-bottom: 20px;
  text-align: center;
}
.why-us ul {
  list-style: none;
  margin-top: 20px;
}
.why-us ul li {
  font-size: 1.1em;
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
}
.why-us ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: bold;
}
.packages .package {
  border: 2px solid var(--blue);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  transition: transform .3s, box-shadow .3s;
}
.packages .package:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.packages .package h3 {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: var(--yellow);
}
.packages .package p {
  font-size: 1.05em;
  margin-bottom: 15px;
}
.packages .package-content {
  display: flex;
  gap: 24px;
  align-items: stretch;
}
.packages .package-text {
  flex: 1 1 0;
}
.packages .package-media {
  flex: 0 0 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.packages .package-media img {
  width: 100%;
  max-width: 340px;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.packages .cta-btn {
  margin-top: 20px;
  background: var(--cta-red);
  color: #fff;
  padding: 15px 30px;
  font-size: 1.2em;
  border-radius: 6px;
  transition: transform .3s;
}
.packages .cta-btn:hover {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .packages .package-content {
    flex-direction: column;
  }
  .packages .package-media {
    width: 100%;
  }
  .packages .package-media img {
    max-width: 100%;
    height: auto;
  }
}

.schedule p {
  font-size: 1.05em;
  margin-bottom: 8px;
  text-align: center;
}


.contact {
  background: var(--yellow);
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
}
.contact h2 {
  color: var(--dark);
}
.contact p, .contact a {
  font-size: 1.2em;
  color: var(--dark);
}

.contact .cta-btn {
  margin-top: 20px;
  background: var(--cta-red);
  color: #fff;
  padding: 15px 30px;
  font-size: 1.2em;
  border-radius: 6px;
  transition: transform .3s;
}
.contact .cta-btn:hover {
  transform: scale(1.05);
}



/* Scroll-triggered fade-in animáció */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}



   /* FAQ */
    .faq{display:grid;gap:12px}
    details{background:var(--card);border:1px solid rgba(148,163,184,.1);border-radius:12px;padding:12px 14px}
    summary{cursor:pointer;font-weight:700}
    details p{color:var(--muted);margin:8px 0 0}


    .footer {
      background-color: var(--blue);
      color: #333;
  border-top-style: groove;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1rem;
      text-align: center;
}
.footer p, a{
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1rem;
  margin-bottom: 0.1rem;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

/* Helyszín blokk */
.location {
  border: 2px solid var(--blue);
  border-radius: 10px;
  padding: 30px 20px;
  margin: 40px 0;
  background: #f7fbff;
}
.location h2 {
  text-align: left;
  color: var(--blue);
  margin-bottom: 16px;
}
.location-text {
  font-size: 1.05em;
  line-height: 1.6;
}

/* Why-us gallery layout and carousel */
.why-us {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}
.why-us h2 {
  grid-column: 1 / -1;
}
.why-us p,
.why-us ul {
  grid-column: 1;
}
.why-us-gallery {
  grid-column: 2;
}
.carousel {
  position: relative;
  height: auto;
  border: 2px solid var(--blue);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  padding: 12px;
  background: #fff;
}
.carousel-window {
  overflow: hidden;
  border-radius: 6px;
}
.carousel-track {
  position: relative;
}
.carousel-slide {
  display: none;
}
.carousel-slide.active {
  display: block;
}
.carousel-slide img {
  width: 100%;
  display: block;
  border-radius: 6px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 114, 181, 0.9);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .2s ease;
  z-index: 2;
}
.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }
.carousel-btn:hover {
  background: var(--yellow);
  color: var(--dark);
  transform: translateY(-50%) scale(1.05);
}
.carousel-btn:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}
@media (max-width: 900px) {
  .why-us {
    grid-template-columns: 1fr;
  }
  .why-us-gallery {
    grid-column: 1;
  }
}
