/* =============================================
   Hullám Szobák Siófok — style.css
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* --- Változók --- */
:root {
  --teal-50:    #E1F5EE;
  --teal-100:   #9FE1CB;
  --teal-400:   #1D9E75;
  --teal-600:   #0F6E56;
  --teal-800:   #085041;
  --amber-50:   #FAEEDA;
  --amber-200:  #FAC775;
  --amber-400:  #BA7517;
  --blue-50:    #E6F1FB;
  --blue-400:   #378ADD;
  --blue-600:   #185FA5;
  --coral-50:   #FAECE7;
  --coral-400:  #D85A30;
  --gray-50:    #F1EFE8;
  --gray-200:   #B4B2A9;
  --gray-600:   #5F5E5A;
  --gray-800:   #444441;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 12px rgba(29,158,117,0.08);
  --shadow-md:  0 8px 32px rgba(29,158,117,0.12);
  --shadow-lg:  0 20px 60px rgba(29,158,117,0.15);
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background:#FAFAF8; color:#2C2C2A; overflow-x:hidden; -webkit-font-smoothing:antialiased; }
a { text-decoration:none; color:inherit; }

/* =============================================
   NAVIGÁCIÓ
   ============================================= */

.nav {
  position: fixed;
  top:0; left:0; right:0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(29,158,117,0.1);
  transition: box-shadow 0.28s var(--ease);
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--teal-600);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.nav__logo span { color: var(--amber-400); font-style: italic; }

.nav__links { display:flex; gap:2.2rem; list-style:none; }
.nav__links a {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--gray-600);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content:'';
  position:absolute;
  bottom:-3px; left:0; right:0;
  height:2px;
  background: var(--teal-400);
  border-radius:2px;
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}
.nav__links a:hover { color: var(--teal-400); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__lang { display:flex; gap:0.4rem; }
.lang-btn {
  background:none;
  border: 1.5px solid var(--gray-200);
  border-radius:6px;
  padding: 0.28rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  cursor: pointer;
  color: var(--gray-600);
  font-family: var(--font-body);
  transition: all 0.2s;
}
.lang-btn:hover, .lang-btn.active {
  background: var(--teal-400);
  border-color: var(--teal-400);
  color: #fff;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.45rem;
  z-index: 1006;
  flex-shrink: 0;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--teal-600);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
  transform-origin: center;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   GOMBOK
   ============================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 100px;
  padding: 1rem 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  border: none;
  letter-spacing: 0.01em;
}
.btn--primary { background: var(--teal-400); color:#fff; }
.btn--primary:hover {
  background: var(--teal-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(15,110,86,0.28);
}
.btn--outline {
  background: transparent;
  color: var(--teal-600);
  border: 2px solid var(--teal-100);
}
.btn--outline:hover { border-color: var(--teal-400); background: var(--teal-50); }

/* =============================================
   SZEKCIÓK
   ============================================= */

.section { padding: 6rem 4rem; }
.section__inner { max-width:1200px; margin:0 auto; }

.section__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: 0.75rem;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  color: var(--teal-800);
  line-height: 1.13;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section__desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.75;
  font-weight: 300;
  max-width: 540px;
}
.section--center { text-align:center; }
.section--center .section__desc { margin:0 auto; }

/* =============================================
   HERO
   ============================================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: url('garden1.jpg') center / cover no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(4,28,18,0.62) 0%, rgba(4,28,18,0.38) 100%);
  z-index: 1;
}
.hero__bg-blob { display: none; }
.hero__wave {
  position:absolute;
  bottom:0; left:0; right:0;
  height:120px;
  overflow:hidden;
  pointer-events:none;
  z-index: 2;
}
.hero__wave svg { width:100%; height:100%; }

.hero__content {
  position:relative; z-index:2;
  padding: 6rem 4rem 3rem;
  max-width:1200px; margin:0 auto; width:100%;
}
.hero__tag {
  display:inline-block;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.92);
  font-size:0.78rem; font-weight:500;
  letter-spacing:0.1em; text-transform:uppercase;
  padding:0.45rem 1.1rem; border-radius:100px;
  margin-bottom:1.5rem;
  animation: fadeUp 0.8s ease both;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height:1.05; letter-spacing:-0.03em;
  color: #fff; max-width:700px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero__title em { font-style:italic; color: #FAC775; }
.hero__sub {
  font-size:1.15rem; color: rgba(255,255,255,0.80);
  line-height:1.75; margin-top:1.5rem;
  max-width:490px; font-weight:300;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero__cta {
  display:flex; gap:1rem; margin-top:2.5rem;
  flex-wrap:wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero__badges {
  display:flex; gap:2rem; margin-top:3.5rem;
  flex-wrap:wrap;
  animation: fadeUp 0.8s 0.4s ease both;
}
.hero__badge {
  display:flex; align-items:center; gap:0.6rem;
  font-size:0.85rem; color: rgba(255,255,255,0.85);
}
.hero__badge-icon {
  width:34px; height:34px; border-radius:50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  display:flex; align-items:center;
  justify-content:center; font-size:15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25); flex-shrink:0;
}
.hero .btn--outline {
  color: #fff;
  border-color: rgba(255,255,255,0.45);
  background: transparent;
}
.hero .btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.75);
}

/* =============================================
   RÓLUNK
   ============================================= */

.about__grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:5rem; align-items:center;
}
.about__stats { display:flex; gap:1rem; margin-top:2rem; flex-wrap:wrap; }

.stat-chip {
  background:#fff;
  border: 1.5px solid var(--teal-50);
  border-radius: var(--radius-md);
  padding:0.85rem 1.25rem; text-align:center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.stat-chip:hover { transform:translateY(-3px); box-shadow: var(--shadow-md); }
.stat-chip__num { font-family: var(--font-display); font-size:1.9rem; color: var(--teal-600); line-height:1; }
.stat-chip__lbl { font-size:0.73rem; color: var(--gray-600); margin-top:0.25rem; font-weight:500; letter-spacing:0.04em; }

.about__map-card {
  background:#fff; border-radius: var(--radius-lg);
  overflow:hidden; box-shadow: var(--shadow-lg); aspect-ratio:4/3;
}
.map-placeholder {
  width:100%; height:100%;
  background: linear-gradient(135deg, var(--teal-50), var(--blue-50));
  display:flex; flex-direction:column; align-items:center;
  justify-content:center; gap:1rem;
}
.map-placeholder__svg { opacity:0.45; }
.map-placeholder__name { font-family: var(--font-display); font-size:1.15rem; color: var(--teal-600); font-style:italic; }
.map-placeholder__address { font-size:0.82rem; color: var(--gray-600); text-align:center; padding:0 2rem; }

/* =============================================
   SZOBÁK
   ============================================= */

.section--rooms { background:#F5FAF7; }

.rooms__grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; margin-top:3rem; }

.room-card {
  background:#fff; border-radius: var(--radius-lg);
  overflow:hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.room-card:hover { transform:translateY(-7px); box-shadow: var(--shadow-lg); }

.room-card__visual {
  height:200px; display:flex; align-items:center;
  justify-content:center; font-size:4rem; position:relative;
}
.room-card__visual--double    { background: linear-gradient(135deg, #E1F5EE, #9FE1CB); }
.room-card__visual--family    { background: linear-gradient(135deg, #FAEEDA, #FAC775); }
.room-card__visual--apartment { background: linear-gradient(135deg, #E6F1FB, #B5D4F4); }

.room-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.room-card__badge {
  position:absolute; top:1rem; right:1rem;
  padding:0.35rem 0.9rem; border-radius:100px;
  font-size:0.7rem; font-weight:500;
  letter-spacing:0.07em; text-transform:uppercase; color:#fff;
  z-index: 1;
}
.room-card__badge--teal  { background: var(--teal-400); }
.room-card__badge--amber { background: var(--amber-400); }
.room-card__badge--blue  { background: var(--blue-600); }

.room-card__body { padding:1.5rem; }
.room-card__title { font-family: var(--font-display); font-size:1.25rem; color: var(--teal-800); margin-bottom:0.5rem; }
.room-card__desc  { font-size:0.88rem; color: var(--gray-600); line-height:1.65; margin-bottom:1.25rem; font-weight:300; }

.room-card__features { display:flex; flex-wrap:wrap; gap:0.45rem; margin-bottom:1.25rem; }
.feat-tag { background: var(--gray-50); color: var(--gray-800); border-radius:6px; padding:0.3rem 0.65rem; font-size:0.76rem; font-weight:500; }

.room-card__price { display:flex; align-items:baseline; gap:0.4rem; border-top:1px solid var(--gray-50); padding-top:1rem; }
.price__from   { font-size:0.72rem; color: var(--gray-200); text-transform:uppercase; letter-spacing:0.07em; }
.price__amount { font-family: var(--font-display); font-size:1.55rem; color: var(--teal-600); }
.price__per    { font-size:0.78rem; color: var(--gray-600); }

.room-card { cursor: pointer; }
.room-card__no-photo {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(0,0,0,0.35);
  letter-spacing: 0.04em;
  text-align: center;
  padding: 1rem;
}
.room-card__details {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.9rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--teal-400);
  transition: color 0.2s, gap 0.2s;
}
.room-card:hover .room-card__details { color: var(--teal-600); gap: 0.5rem; }

/* =============================================
   SZOBA RÉSZLETEK MODAL
   ============================================= */

.room-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,40,33,0.72);
  z-index: 8888;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.room-modal-overlay.active { display: flex; }

.room-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 1060px;
  width: 100%;
  height: min(80vh, 580px);
  max-height: 80vh;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  position: relative;
  box-shadow: 0 32px 100px rgba(0,0,0,0.4);
  animation: modalIn 0.3s var(--ease) both;
}
@keyframes modalIn {
  from { opacity:0; transform: scale(0.96) translateY(12px); }
  to   { opacity:1; transform: scale(1) translateY(0); }
}

.room-modal__close {
  position: absolute;
  top: 0.9rem; right: 0.9rem;
  z-index: 10;
  background: rgba(0,0,0,0.38);
  border: none;
  color: #fff;
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.room-modal__close:hover { background: rgba(0,0,0,0.62); }

/* Carousel */
.room-modal__carousel {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
  background: #111;
}
.carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.42s var(--ease);
}
.carousel__slide {
  flex: 0 0 100%;
  height: 100%;
  overflow: hidden;
}
.carousel__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.carousel__btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.32);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,0.28);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.28);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  z-index: 5;
}
.carousel__btn:hover {
  background: rgba(0,0,0,0.55);
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-50%) scale(1.08);
}
.carousel__btn--prev { left: 1rem; }
.carousel__btn--next { right: 1rem; }

.carousel__progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: rgba(255,255,255,0.35);
  width: 100%;
}
.carousel__progress-bar {
  height: 100%;
  background: rgba(255,255,255,0.85);
  width: 0%;
  transition: width linear;
}
.carousel__dots {
  position: absolute;
  bottom: 0.85rem; left: 0; right: 0;
  display: flex; justify-content: center; gap: 0.4rem;
}
.carousel__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.carousel__dot.active { background: #fff; transform: scale(1.35); }
.carousel__slide--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gray-600);
  background: var(--gray-50);
  text-align: center;
  padding: 2rem;
}

/* Content panel */
.room-modal__content {
  flex: 1;
  padding: 2rem 1.75rem 1.75rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.room-modal__badge {
  display: inline-block;
  padding: 0.32rem 0.9rem;
  border-radius: 100px;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: #fff;
  align-self: flex-start;
}
.room-modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--teal-800);
  line-height: 1.15;
}
.room-modal__desc {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.8;
  font-weight: 300;
}
.room-modal__features { display: flex; flex-wrap: wrap; gap: 0.45rem; }

/* Price table */
.room-modal__prices { margin-top: 0.25rem; }

.ptable__heading {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: 0.6rem;
}
.ptable__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-50);
}
.ptable {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
}
.ptable__th {
  padding: 0.5rem 0.6rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.68rem;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.ptable__th--label {
  background: var(--gray-50) !important;
  color: transparent;
  width: 5rem;
}
.ptable__td {
  padding: 0.55rem 0.6rem;
  text-align: center;
  border-top: 1px solid var(--gray-50);
  vertical-align: middle;
}
.ptable__td--label {
  text-align: left;
  font-weight: 600;
  font-size: 0.74rem;
  color: var(--teal-800);
  white-space: nowrap;
  background: var(--gray-50);
  border-right: 2px solid #e8e6df;
}
tbody tr:last-child .ptable__td { background: #f5f4f0; }
tbody tr:last-child .ptable__td--label { background: #eeece6; }
.ptable__huf {
  display: block;
  font-weight: 600;
  color: var(--teal-800);
  font-size: 0.8rem;
}
.ptable__eur {
  display: block;
  color: var(--gray-600);
  font-size: 0.68rem;
  margin-top: 0.1rem;
}

/* Footer: CTA only */
.room-modal__footer {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-50);
}

@media (max-width: 680px) {
  .room-modal { flex-direction: column; height: auto; max-height: 96vh; }
  .room-modal__carousel { flex: 0 0 240px; }
  .room-modal__content { padding: 1.1rem 1rem 1.25rem; gap: 0.7rem; }
  .room-modal__title { font-size: 1.4rem; }
}

/* =============================================
   SZOLGÁLTATÁSOK
   ============================================= */

.amenities__grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; margin-top:3rem; }

.amenity-card {
  background:#fff; border-radius: var(--radius-md);
  padding:1.75rem 1rem; text-align:center;
  border: 1.5px solid var(--gray-50);
  transition: all 0.25s var(--ease);
}
.amenity-card:hover { border-color: var(--teal-100); box-shadow: var(--shadow-md); transform:translateY(-3px); }
.amenity-card__icon { font-size:2rem; margin-bottom:0.75rem; display:block; }
.amenity-card__name { font-size:0.88rem; font-weight:500; color: var(--teal-800); margin-bottom:0.25rem; }
.amenity-card__sub  { font-size:0.76rem; color: var(--gray-600); }

/* =============================================
   GALÉRIA
   ============================================= */

.gallery__grid {
  column-count: 3;
  column-gap: 1rem;
  margin-top: 3rem;
}
.gallery__item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.gallery__item img {
  width: 100%;
  display: block;
  transition: transform 0.4s var(--ease);
  cursor: zoom-in;
}
.gallery__item:hover img { transform: scale(1.04); }

/* Gallery collapse on mobile */
.gallery__expand {
  display: none;
  text-align: center;
  margin-top: 2rem;
}
.gallery__expand-btn {
  padding: 0.9rem 2.2rem;
  font-size: 0.9rem;
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
}
.lightbox-overlay.active { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-md);
  object-fit: contain;
  cursor: default;
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 1rem; right: 1.5rem;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.28);
  color: #fff;
  font-size: 1.1rem;
  width: 42px; height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  z-index: 10;
}
.lightbox-close:hover { background: rgba(255,255,255,0.28); border-color: rgba(255,255,255,0.6); }

.lightbox-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,0.28);
  color: #fff;
  width: 50px; height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  z-index: 10;
}
.lightbox-btn:hover {
  background: rgba(0,0,0,0.58);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-50%) scale(1.08);
}
.lightbox-btn--prev { left: 1.5rem; }
.lightbox-btn--next { right: 1.5rem; }

/* =============================================
   ONLINE FOGLALÁS (widget szekció)
   ============================================= */

.section--booking { background: var(--teal-50); }

.booking__widget {
  margin-top: 3rem;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  min-height: 200px;
  overflow: hidden;
}

/* =============================================
   AJÁNLATKÉRÉS
   ============================================= */

.section--contact { background: var(--teal-800); color:#fff; }
.section--contact .section__label { color: var(--teal-100); }
.section--contact .section__title { color:#fff; }
.section--contact .section__desc  { color: var(--teal-100); }

.contact__grid { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:start; }

.contact__info { display:flex; flex-direction:column; gap:1.75rem; margin-top:2rem; }
.contact__item { display:flex; align-items:flex-start; gap:1rem; }
.contact__item-icon {
  width:46px; height:46px; border-radius:12px;
  background: rgba(255,255,255,0.1);
  display:flex; align-items:center; justify-content:center;
  font-size:1.2rem; flex-shrink:0;
}
.contact__item-label { font-size:0.72rem; color: var(--teal-100); font-weight:500; letter-spacing:0.07em; text-transform:uppercase; margin-bottom:0.25rem; }
.contact__item-value { color:#fff; font-size:0.95rem; line-height:1.55; }
.contact__item-value a { color:#fff; text-decoration:underline; text-underline-offset:3px; opacity:0.85; transition:opacity 0.2s; }
.contact__item-value a:hover { opacity:1; }

/* Form */
.contact__form { display:flex; flex-direction:column; gap:1rem; }
.form__row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form__group { display:flex; flex-direction:column; gap:0.4rem; }
.form__label { font-size:0.72rem; font-weight:500; letter-spacing:0.07em; text-transform:uppercase; color: var(--teal-100); }

.form__input,
.form__textarea,
.form__select {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius:10px;
  padding:0.9rem 1rem;
  color:#fff;
  font-family: var(--font-body);
  font-size:0.9rem;
  outline:none;
  transition: border-color 0.2s, background 0.2s;
  width:100%;
}
.form__input::placeholder,
.form__textarea::placeholder { color: rgba(255,255,255,0.38); }
.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  border-color: var(--teal-100);
  background: rgba(255,255,255,0.12);
}
.form__textarea { resize:vertical; min-height:100px; }
.form__select option { background: var(--teal-800); color:#fff; }

/* Státusz üzenet a formon */
.form__status {
  padding:0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size:0.88rem;
  font-weight:500;
  display:none;
}
.form__status.success {
  display:block;
  background: rgba(29,158,117,0.25);
  border: 1.5px solid var(--teal-100);
  color: var(--teal-50);
}
.form__status.error {
  display:block;
  background: rgba(216,90,48,0.2);
  border: 1.5px solid rgba(216,90,48,0.5);
  color: #FAC775;
}

/* =============================================
   VÉLEMÉNYEK
   ============================================= */

.section--reviews { background: var(--teal-50); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.review-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid rgba(29,158,117,0.08);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.review-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-card__stars {
  color: var(--amber-400);
  font-size: 1rem;
  letter-spacing: 2px;
}

.review-card__source {
  font-size: 0.7rem;
  font-weight: 600;
  color: #4285F4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.review-card__source--booking { color: #003580; }

.review-card__text {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--gray-600);
  flex: 1;
  position: relative;
  padding-left: 1.4rem;
}
.review-card__text::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--teal-100);
  line-height: 1;
  position: absolute;
  left: 0;
  top: -0.35rem;
}

.review-card__footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--teal-50);
}

.review-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal-400);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}
.review-card__avatar--blue   { background: var(--blue-400); }
.review-card__avatar--amber  { background: var(--amber-400); }
.review-card__avatar--coral  { background: var(--coral-400); }

.review-card__name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-800);
}
.review-card__date {
  font-size: 0.73rem;
  color: var(--gray-200);
  margin-top: 0.1rem;
}

/* =============================================
   LÁBLÉC
   ============================================= */

.footer {
  background:#1A1A18;
  color: rgba(255,255,255,0.45);
  text-align:center;
  padding: 2rem 4rem;
  font-size:0.8rem;
  line-height:1.8;
}
.footer a { color: var(--teal-100); transition:color 0.2s; }
.footer a:hover { color: var(--teal-400); }
.footer__copy { margin-bottom:0.25rem; }
.footer__social { margin: 0.5rem 0 0.25rem; }
.footer__fb {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--teal-100);
  font-size: 0.82rem;
  transition: color 0.2s;
}
.footer__fb:hover { color: #fff; }

/* =============================================
   COOKIE BANNER
   ============================================= */

.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--teal-800);
  color: rgba(255,255,255,0.9);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  z-index: 9500;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.cookie-banner.hidden { display: none; }
.cookie-banner__text { font-size: 0.86rem; line-height: 1.55; margin: 0; }
.cookie-banner__btn {
  background: var(--teal-400);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 0.6rem 1.6rem;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.cookie-banner__btn:hover { background: var(--teal-600); }

@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 1.1rem 1.1rem 1.4rem; gap: 0.85rem; }
  .cookie-banner__btn { width: 100%; text-align: center; }
}

/* =============================================
   ANIMÁCIÓK
   ============================================= */

@keyframes fadeUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}
.animate {
  opacity:0;
  transform:translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate.visible { opacity:1; transform:translateY(0); }

/* =============================================
   RESZPONZÍV
   ============================================= */

/* Prevent horizontal overflow on all screen sizes */
html, body { max-width: 100%; overflow-x: hidden; }

/* Large tablet / small desktop */
@media (max-width: 1100px) {
  .rooms__grid { grid-template-columns: repeat(2, 1fr); }
  .amenities__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { column-count: 3; }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet — hamburger menu kicks in */
@media (max-width: 900px) {
  .nav { padding: 1rem 1.5rem; }
  .nav__hamburger { display: flex; }

  /* Keep logo and lang buttons above the open overlay */
  .nav__logo { position: relative; z-index: 1005; }
  .nav__lang  { position: relative; z-index: 1005; }

  /* Mobile nav panel */
  .nav__links {
    display: none;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 5.5rem 2rem 2.5rem;
    z-index: 1001;
    list-style: none;
    gap: 0;
    overflow-y: auto;
  }
  .nav__links.open {
    display: flex;
    animation: menuFadeIn 0.22s ease both;
  }
  @keyframes menuFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .nav__links li { border-bottom: 1px solid var(--teal-50); }
  .nav__links li:first-child { border-top: 1px solid var(--teal-50); }
  .nav__links a {
    display: block;
    padding: 1.1rem 0.5rem;
    font-size: 1.15rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--teal-800);
    transition: color 0.18s, padding-left 0.18s;
  }
  .nav__links a:hover { color: var(--teal-400); padding-left: 1rem; }
  .nav__links a::after { display: none; }

  .section { padding: 4rem 1.5rem; }
  .hero__content { padding: 5rem 1.5rem 3rem; }
  .about__grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact__grid { grid-template-columns: 1fr; gap: 2rem; }
  .amenities__grid { grid-template-columns: repeat(2, 1fr); }
  .form__row { grid-template-columns: 1fr; }
  .booking__widget { padding: 1rem; overflow-x: auto; }
  .gallery__grid { column-count: 2; }
  .gallery__grid:not(.gallery--expanded) .gallery__item:nth-child(n + 7) { display: none; }
  .gallery__expand { display: block; }
  .reviews__grid { grid-template-columns: 1fr; }
  .section__title { font-size: clamp(1.8rem, 4vw, 2.6rem); }
}

/* Room modal stacks vertically at 680px */
@media (max-width: 680px) {
  .room-modal {
    flex-direction: column;
    height: auto;
    max-height: 96vh;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .room-modal__carousel { flex: 0 0 260px; overflow: hidden; }
  .room-modal__content { padding: 1.25rem 1rem 1.5rem; gap: 0.75rem; overflow-y: visible; }
  .room-modal__title { font-size: 1.3rem; }
}

/* Phone */
@media (max-width: 600px) {
  /* Nav */
  .nav { padding: 0.75rem 1rem; }
  .nav__lang { gap: 0.2rem; }
  .lang-btn { padding: 0.2rem 0.38rem; font-size: 0.63rem; letter-spacing: 0.03em; }

  /* Sections */
  .section { padding: 3rem 1.1rem; }
  .section__title { font-size: clamp(1.65rem, 7vw, 2.2rem); }
  .section__desc { font-size: 0.95rem; }

  /* Hero */
  .hero { min-height: 100svh; min-height: 100vh; }
  .hero__content { padding: 4.5rem 1.1rem 2.5rem; }
  .hero__title { font-size: clamp(2.1rem, 9vw, 2.9rem); }
  .hero__sub { font-size: 0.95rem; margin-top: 1rem; }
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
    margin-top: 1.75rem;
    gap: 0.75rem;
  }
  .hero__cta .btn { width: 100%; justify-content: center; text-align: center; }
  .hero__badges { gap: 0.75rem; margin-top: 2rem; }
  .hero__badge { font-size: 0.82rem; }

  /* About */
  .about__map-card { aspect-ratio: 3/2; }
  .about__stats { gap: 0.5rem; }

  /* Rooms */
  .rooms__grid { grid-template-columns: 1fr; }
  .room-card__visual { height: 185px; }

  /* Amenities */
  .amenities__grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .amenity-card { padding: 1.25rem 0.75rem; }
  .amenity-card__icon { font-size: 1.65rem; }

  /* Gallery */
  .gallery__grid { column-count: 2; gap: 0.6rem; }
  .gallery__item { margin-bottom: 0.6rem; }

  /* Reviews */
  .reviews__grid { grid-template-columns: 1fr; gap: 1rem; }
  .review-card { padding: 1.25rem 1rem; }

  /* Booking widget */
  .booking__widget { padding: 0.5rem; overflow-x: auto; }

  /* Contact */
  .contact__grid { gap: 2rem; }

  /* Footer */
  .footer { padding: 1.5rem 1.1rem; font-size: 0.75rem; }

  /* Lightbox */
  .lightbox-overlay { padding: 0.5rem; }
  .lightbox-btn--prev { left: 0.4rem; }
  .lightbox-btn--next { right: 0.4rem; }
  .lightbox-btn { width: 40px; height: 40px; }
  .lightbox-img { max-width: 95vw; max-height: 85vh; }

  /* Modal on phone: full screen */
  .room-modal-overlay { padding: 0; align-items: flex-end; }
  .room-modal {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-height: 95vh;
    width: 100%;
  }
  .room-modal__carousel { flex: 0 0 220px; }
}

/* Small phone */
@media (max-width: 400px) {
  .hero__title { font-size: 2rem; }
  .hero__badges { flex-direction: column; gap: 0.5rem; }
  .gallery__grid { column-count: 1; }
  .amenities__grid { grid-template-columns: 1fr; }
  .about__stats { gap: 0.5rem; }
  .stat-chip { padding: 0.65rem 1rem; }
  .review-card { padding: 1rem; }
  .lang-btn { padding: 0.18rem 0.32rem; font-size: 0.6rem; }
}
