:root{
      --bg: #e98f7f;
      --surface: #dd9680;
      --ink: #1f1a17;         
      --muted: #6c625b;       
      --accent: #dd9e90;      
      --accent2:#a76f60;      
      --wash: #7e5c4e;        
      --shadow: 0 18px 40px rgba(31,26,23,.10);
      --shadow2: 0 10px 25px rgba(31,26,23,.08);
      --radius: 22px;
      --radius2: 28px;
      --max: 1140px;
    }

    /* Font init */
    @font-face{
    font-family: "Allura";
    src: url("../assets/allura.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    }

    /* Header offset and anchor */
  html{
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-offset, 160px) + 12px);
  }

  @media (max-width: 820px){
  html{
    scroll-padding-top: 500px;
    }
}

  @media (max-width: 820px){
  #booking{
    scroll-margin-top: -350px;
  }
}

@media (max-width: 820px){
  #services{
    scroll-margin-top: -320px;
  }
}

@media (max-width: 820px){
  #reviews{
    scroll-margin-top: -320px;
  }
}

@media (max-width: 820px){
  #contact{
    scroll-margin-top: -350px;
  }
}

@media (max-width: 820px){
  #gallery{
    scroll-margin-top: -300px;
  }
}

@media (max-width: 820px){
  #rules{
    scroll-margin-top: -320px;
  }
}

    *{ box-sizing:border-box }
    html,body{ margin:0; padding:0 }

    /* Body */
    body{
      font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color: var(--ink);
      background:
    linear-gradient(rgb(255, 239, 239), rgb(255, 252, 250)),
    url("../assets/img/background.jpg");
      background-size: cover;
      background-position: center;
      overflow-x: hidden;
    }
    a{ color: inherit; text-decoration: none }
    .container{ width:min(var(--max), 92vw); margin:0 auto }
    .sr{ position:absolute; left:-9999px }

    /* Header */
    header{
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 252, 252, 0.78);
      backdrop-filter: blur(8px);
      border-bottom: 2px solid rgb(247, 207, 192); 
    }
    .nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding: 14px 0;
      gap: 14px;
    }
    .brand{
      display:flex;
      flex-direction:column;
      gap: 2px;
      line-height:1.1;
    }
    .brand b{
      font-family: Allura, cursive;
      font-weight: 600;
      letter-spacing: .2px;
      font-size: 18px;
    }
    .brand span{
      font-size: 12px;
      color: var(--muted);
    }
    .logo{
      width: 150px;
      height: 150px;
      object-fit: contain;
      border-radius: 10px; 
}

    .navLinks{
      display:flex;
      gap: 10px;
      align-items:center;
    }
    .navLinks a{
      font-size: 13px;
      color: var(--muted);
      padding: 10px 12px;
      border-radius: 999px;
      transition: transform .18s ease, background .18s ease, color .18s ease;
    }
    .navLinks a:hover{
      color: var(--ink);
      background: rgba(194, 124, 109, 0.16);
      transform: translateY(-1px);
    }

    .cta{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding: 10px 14px;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(199, 120, 102, 0.28), rgba(182,143,132,.20));
      color: var(--ink);
      font-weight: 600;
      font-size: 13px;
      box-shadow: 0 10px 25px rgba(202,163,154,.25);
      transition: transform .18s ease, filter .18s ease;
      white-space: nowrap;
    }
    .cta:hover{ transform: translateY(-1px); filter: brightness(1.03); }

    /* Mobile menu button */
    .burger{
      display:none;
      border: 0;
      background: transparent;
      padding: 10px;
      border-radius: 12px;
      cursor:pointer;
    }
    .burger:focus{ outline: 2px solid rgba(182,143,132,.35); outline-offset: 2px; }
    .burgerLines{
      width: 22px; height: 14px; position: relative;
    }
    .burgerLines span{
      position:absolute; left:0; right:0;
      height: 2px; border-radius: 2px;
      background: var(--ink);
      transition: transform .28s ease, top .28s ease, opacity .22s ease;
    }
    .burgerLines span:nth-child(1){ top: 0; }
    .burgerLines span:nth-child(2){ top: 6px; opacity:.8; }
    .burgerLines span:nth-child(3){ top: 12px; opacity:.65; }

    /* Mobile panel (animated open) */
    .mobilePanel{
      display:none;
      overflow: hidden;
      transform-origin: top;
      max-height: 0;
      opacity: 0;
      transition: max-height .38s ease, opacity .28s ease;
    }
    .mobilePanelInner{
      padding: 8px 0 16px;
      display:flex;
      flex-direction:column;
      gap: 6px;
    }
    .mobilePanel a{
      padding: 12px 12px;
      border-radius: 14px;
      color: var(--muted);
      background: rgba(251,246,244,.9);
      transition: background .18s ease, transform .18s ease, color .18s ease;
    }
    .mobilePanel a:hover{
      background: rgba(202,163,154,.18);
      color: var(--ink);
      transform: translateY(-1px);
    }

    header[data-open="true"] .mobilePanel{
      max-height: 360px;
      opacity: 1;
    }
    header[data-open="true"] .burgerLines span:nth-child(1){ top: 6px; transform: rotate(45deg); }
    header[data-open="true"] .burgerLines span:nth-child(2){ opacity: 0; }
    header[data-open="true"] .burgerLines span:nth-child(3){ top: 6px; transform: rotate(-45deg); }

    /* Hero */
    .hero{
      padding: 44px 0 18px;
    }
    .heroGrid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 22px;
      align-items: stretch;
    }

    .kicker{
      display:inline-flex;
      align-items:center;
      gap: 10px;
      font-size: 12px;
      color: var(--muted);
      padding: 8px 12px;
      border-radius: 999px;
      background: #fff;
      box-shadow: var(--shadow2);
      width: fit-content;
    }
    .dot{
      width: 8px; height: 8px; border-radius: 99px;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      box-shadow: 0 10px 25px rgba(202,163,154,.35);
    }

    h1{
      font-family: Allura, cursive;
      color:#e68c7d;
      font-size: 72px;
      line-height: 1.05;
      letter-spacing: -0.6px;
      margin: 14px 0 10px;
    }
    .lead{
      color: var(--muted);
      font-size: 16px;
      margin: 0 0 16px;
      max-width: 56ch;
    }

    .heroActions{
      display:flex;
      gap: 10px;
      flex-wrap:wrap;
      margin-top: 10px;
      justify-content:center;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding: 12px 14px;
      border-radius: 999px;
      border: 0;
      cursor:pointer;
      font-weight: 600;
      font-size: 13px;
      transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
      white-space: nowrap;
    }
    .btnPrimary{
      background: linear-gradient(135deg, rgba(206, 117, 97, 0.38), rgba(182,143,132,.24));
      box-shadow: 0 18px 40px rgba(202,163,154,.24);
    }
    .btnGhost{
      background: rgba(251,246,244,.95);
      color: var(--ink);
      box-shadow: var(--shadow2);
    }
    .btn:hover{ transform: translateY(-1px); filter: brightness(1.02); }

    /* “No borders” premium cards */
    .soft{
      background: rgba(235, 220, 216, 0.82);
      border: 0;
      border-radius: var(--radius2);
      box-shadow: var(--shadow);
    }

    .heroLeft{
      padding: 26px;
      position: relative;
      overflow:hidden;
    }
    .heroLeft:after{
      content:"";
      position:absolute;
      inset:-120px -200px auto auto;
      background: transparent;
      width: 420px; height: 420px;
      filter: blur(2px);
      transform: rotate(14deg);
      pointer-events:none;
    }

    /* Animated gallery in hero */
    .galleryCard{
      background: transparent;
      padding: 18px;
      display:flex;
      flex-direction:column;
      gap: 12px;
      overflow:hidden;
      position:relative;
    }
    .galleryTop{
      display:flex;
      align-items:baseline;
      justify-content:space-between;
      gap: 12px;
    }
    .galleryTop b{
      font-family: Fraunces, serif;
      font-size: 18px;
      letter-spacing: -.2px;
    }
    .galleryTop span{
      color: var(--muted);
      font-size: 12px;
    }

    .carousel.fade{
  position: relative;
}

.fadeSlides{
  position: relative;
  height: 340px;
  border-radius: 20px;
  overflow: hidden;
}

.fadeSlides img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #fff;
  opacity: 0;
  transform: scale(1);
  transition: opacity .8s ease, transform .6s ease;
  cursor: pointer;
}

.fadeSlides img.isActive{
  opacity: 1;
  transform: scale(1.10);
}

.fadeSlides:after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(800px 360px at 30% 15%, rgba(202,163,154,.20), transparent 55%),
    linear-gradient(to top, rgba(31,26,23,.20), transparent 55%);
  pointer-events:none;
}

.fadeSlides:hover img.isActive{
  transform: scale(1.2);
}

    @keyframes slide{
      0%, 18%   { transform: translateX(0%); }
      25%, 43%  { transform: translateX(-25%); }
      50%, 68%  { transform: translateX(-50%); }
      75%, 93%  { transform: translateX(-75%); }
      100%      { transform: translateX(0%); }
    }

    /* Sections */
    section{ padding: 26px 0;}
    .sectionTitle{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap: 20px;
      margin-bottom: 14px;
    }
    .sectionTitle h2{
      margin:0;
      font-family: Allura, cursive;
      color:#e68c7d;
      font-size: 52px;
      letter-spacing: -.3px;
    }
    .sectionTitle p{ margin:0; color: var(--muted); font-size: 13px; }

    .grid3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .tile{
      background: rgba(233, 205, 193, 0.45);
      backdrop-filter: blur(18px);
      border-radius:24px;
      padding:22px;
      box-shadow: 0 20px 45px rgba(192,143,134,.18);
    }
    .tile b{ display:block; margin-bottom: 6px; }
    .tile p{ margin:0; color: var(--muted); font-size: 13px; }

    .split{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
    }
    .panel{
      padding: 22px;
      border-radius: var(--radius2);
      background: rgba(255,255,255,.84);
      box-shadow: var(--shadow);
    }
    .panel p{ color: var(--muted); margin: 8px 0 0; }

    /* Review */
    .reviewGrid{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap:20px;
}

.reviewCard{
  background: rgba(233, 205, 193, 0.45);
  backdrop-filter: blur(18px);
  border-radius:24px;
  padding:22px;
  box-shadow: 0 20px 45px rgba(192,143,134,.18);
}

.reviews h2 {
  font-family: Allura, cursive;
  color:#e68c7d;
  font-size: 52px;
}

.stars{
  color:#e68c7d;
  letter-spacing:2px;
  margin-bottom:8px;
  font-size:18px;
}

.google-review-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 18px;
    border-radius: 999px;
    font-weight:600;
    font-size: 14px;
    text-decoration:none;
    border: none;
    background: linear-gradient(135deg, rgba(206, 117, 97, 0.38), rgba(182,143,132,.24));
    box-shadow: 0 18px 40px rgba(202,163,154,.24);
    box-shadow:0 6px 18px rgba(0,0,0,.08);
    transition:transform .12s ease, box-shadow .12s ease;
  }
  .google-review-btn:hover{
    transform:translateY(-1px);
    box-shadow:0 10px 24px rgba(0,0,0,.12);
  }

/* Booking */
.bookingFrame{
  width: 100%;
  height: 1200px;
  display: flex;
  justify-content: center;  
}

.bookingFrame iframe{
  width: 100%;
  border: 0;
  display: block;
 
}

/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(20,20,20,.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 9999;
  touch-action: pan-y;
}

.lightbox.active{
  opacity: 1;
  pointer-events: all;
}

.lbImage{
  max-width: 90%;
  max-height: 85%;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  user-select: none;
  -webkit-user-drag: none;
}

.lbClose,
.lbPrev,
.lbNext{
  position: absolute;
  background: none;
  border: none;
  color: white;
  font-size: 40px;
  cursor: pointer;
  padding: 10px;
}

.lbClose{
  top: 20px;
  right: 30px;
}

.lbPrev{
  left: 30px;
}

.lbNext{
  right: 30px;
}

body.noScroll{
  overflow: hidden;
  position: fixed;
  width: 100%;
}
    
    /* Rules */
  /* Accordion – prémium, border nélküli */
.rulesAcc{
  padding: 26px 0;
}

.rulesHead{
  margin-bottom: 14px;
}

.rulesHead h2{
  margin: 0 0 8px;
  font-family: Allura, cursive;
  color:#e68c7d;
  font-size: 52px;
  letter-spacing: -.3px;
}

.rulesHead p{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  max-width: 70ch;
}

.acc{
  display: grid;
  gap: 10px;
}

/* details */
.acc details{
  background: rgba(251,246,244,.92);
  box-shadow: var(--shadow2);
  border-radius: var(--radius);
  overflow: hidden;
}

/* summary */
.acc summary{
  list-style: none;
  cursor: pointer;
  padding: 16px 16px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.acc summary::-webkit-details-marker{ display:none; }

/* arrow */
.acc summary:after{
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(31,26,23,.55);
  border-bottom: 2px solid rgba(31,26,23,.55);
  transform: rotate(45deg);
  transition: transform .25s ease;
  flex: 0 0 auto;
}

.acc details[open] summary:after{
  transform: rotate(225deg);
}

.accBody{
  padding: 0 16px 16px;
  color: var(--muted);
  font-size: 13px;
}

/* finom elválasztás a nyitott rész előtt */
.acc details[open] summary{
  background: rgba(202,163,154,.14);
}

/* prémium lista (ha még nincs nálad) */
ul.premium{
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.premium li{
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--muted);
}

ul.premium li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}

    /* Mobile */
    @media (max-width: 940px){
      .heroGrid{ grid-template-columns: 1fr; }
      h1{ font-size: 40px; }
      .carousel{ height: 400px; }
    }
    @media (max-width: 820px){
  .navLinks{ display:none; }
  .cta{
    display:inline-flex;
    padding: 8px 12px;
    font-size: 12px;
  }
  .burger{
    display:inline-flex;
  }
  .mobilePanel{ display:block; }
}
    @media (max-width: 720px){
      .grid3{ grid-template-columns: 1fr; }
      .split{ grid-template-columns: 1fr; }
      h1{ font-size: 60px; }
      .heroLeft{ padding: 20px; }
      .carousel{ height: 400px; }
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce){
      .track, .dots i{ animation: none !important; }
      .reveal{ transition:none; }
      .navLinks a, .btn{ transition: none; }
      header{ backdrop-filter: none; }
    }

    @media (hover: hover){
      .fadeSlides:hover img.isActive{
      transform: scale(1.08);
    }
}

.priceDropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
}

.priceDropdown.open {
  max-height: 1000px;
  margin-top: 12px;
}

.priceDropdown ul {
  margin: 0;
  padding: 12px 18px;
  list-style: none;
  background: #f3dfda;
  border-radius: 14px;
}

.priceDropdown li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.priceDropdown li:last-child {
  border-bottom: none;
}

.badgeNew{
  font-size:11px;
  font-weight:600;
  padding:3px 8px;
  border-radius:20px;
  background:#ff8f8f;
  color:white;
  letter-spacing:.5px;

  animation:pulseBadge 1.8s infinite;
}

@keyframes pulseBadge{
  0%{
    transform:scale(1);
    box-shadow:0 0 0 0 rgba(255,120,120,0.6);
  }

  70%{
    transform:scale(1.05);
    box-shadow:0 0 0 8px rgba(255,120,120,0);
  }

  100%{
    transform:scale(1);
    box-shadow:0 0 0 0 rgba(255,120,120,0);
  }
}

.heartPulse{
  display:inline-block;
  animation: heartPulse 1.4s ease-in-out infinite;
}

@keyframes heartPulse{
  0%{
    transform: scale(1);
  }

  40%{
    transform: scale(1.35);
  }

  60%{
    transform: scale(1.15);
  }

  100%{
    transform: scale(1);
  }
}

.noticeBox{
  background: rgba(233, 205, 193, 0.45);
      backdrop-filter: blur(18px);
      border-radius:24px;
      padding:22px;
      box-shadow: 0 20px 45px rgba(192,143,134,.18);
}

.noticeBox h4{
  margin: 0 0 10px;
  font-size: 28px;
  color: #e68c7d;
  font-family: Allura, cursive;
}

.noticeBox p{
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.noticeBox ul{
  margin: 0 0 12px 18px;
  padding: 0;
  color: var(--muted);
}

.noticeBox li{
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.5;
}

.noticeThanks{
  margin-bottom: 0;
  font-weight: 600;
  color: #e68c7d;
}