*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --zold:       #1C4A2A;
  --zold-vilag: #2E6B3E;
  --zold-halv:  #EBF2EC;
  --fa:         #C8974A;
  --krem:       #FAF8F3;
  --antr:       #2C2C2C;
  --szurke:     #6B7280;
  --feher:      #FFFFFF;
  --arnyek:     rgba(0,0,0,0.15);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--krem);
  color: var(--antr);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px;
  background: rgba(250,248,243,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(28,74,42,0.1);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 24px var(--arnyek); }
.nav-logo img { height: 50px; object-fit: contain; }
.nav-links { display: flex; gap: 1.75rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: .82rem; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; color: var(--zold);
  text-decoration: none; transition: opacity .2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { opacity: .6; }
.nav-links .nav-cta {
  background: var(--zold); color: var(--feher) !important;
  padding: .45rem 1.1rem; border-radius: 3px; opacity: 1 !important;
}
.nav-links .nav-cta:hover { background: var(--zold-vilag); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--zold); border-radius: 2px; }

/* ── KÖZÖS ── */
.page-wrap { padding-top: 72px; }
section { padding: 5.5rem 8%; }
.section-label {
  font-size: .72rem; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--fa); margin-bottom: .6rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 500; line-height: 1.15; color: var(--zold);
  margin-bottom: 1.25rem;
}
.section-body {
  font-size: .95rem; color: var(--szurke);
  max-width: 600px; line-height: 1.85;
}
.section-body + .section-body { margin-top: .9rem; }
.divider { width: 44px; height: 2px; background: var(--fa); margin: 1rem 0 1.75rem; }

.btn-primary {
  display: inline-block; background: var(--fa); color: var(--feher);
  padding: .8rem 1.9rem; border-radius: 3px;
  font-size: .88rem; font-weight: 500; letter-spacing: .04em;
  text-decoration: none; transition: background .25s, transform .2s;
}
.btn-primary:hover { background: #b07e38; transform: translateY(-1px); }
.btn-outline-green {
  display: inline-block; border: 1.5px solid var(--zold); color: var(--zold);
  padding: .8rem 1.9rem; border-radius: 3px;
  font-size: .88rem; font-weight: 500;
  text-decoration: none; transition: background .25s;
}
.btn-outline-green:hover { background: var(--zold-halv); }

/* ── HERO ── */
.hero {
  position: relative; height: 100svh; min-height: 560px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 40%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,30,16,.8) 0%, rgba(12,30,16,.2) 55%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 8%; max-width: 700px;
}
.hero-eyebrow {
  font-size: .73rem; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--fa); margin-bottom: .9rem;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5.5vw, 4.8rem);
  font-weight: 500; line-height: 1.1; color: var(--feher);
  margin-bottom: 1.1rem;
}
.hero-title em { font-style: italic; color: rgba(255,255,255,.78); }
.hero-sub {
  font-size: .95rem; font-weight: 300; color: rgba(255,255,255,.8);
  margin-bottom: 2rem; max-width: 440px; line-height: 1.75;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-hero-outline {
  display: inline-block; border: 1.5px solid rgba(255,255,255,.55);
  color: var(--feher); padding: .8rem 1.9rem; border-radius: 3px;
  font-size: .88rem; font-weight: 400; text-decoration: none;
  transition: background .25s;
}
.btn-hero-outline:hover { background: rgba(255,255,255,.12); }

/* ── FŐOLDAL SZEKCIÓK ── */
.intro { background: var(--feher); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.intro-img { position: relative; }
.intro-img img { width: 100%; height: 500px; object-fit: cover; border-radius: 4px; display: block; }
.intro-img::after {
  content: ''; position: absolute; bottom: -18px; right: -18px;
  width: 55%; height: 55%; border: 2px solid var(--fa); border-radius: 4px; z-index: -1;
}
.intro-badges { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.75rem; }
.badge {
  background: var(--zold-halv); color: var(--zold);
  padding: .35rem .85rem; border-radius: 20px; font-size: .78rem; font-weight: 500;
}

.highlight { background: var(--zold); }
.highlight-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.highlight .section-title { color: var(--feher); }
.highlight .section-body { color: rgba(255,255,255,.75); max-width: 100%; }
.highlight .divider { background: var(--fa); }
.highlight-img img { width: 100%; height: 460px; object-fit: cover; border-radius: 4px; }
.highlight-feats { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; margin-top: 1.75rem; }
.h-feat { display: flex; align-items: flex-start; gap: .55rem; font-size: .87rem; color: rgba(255,255,255,.82); }
.h-feat-icon { flex-shrink: 0; margin-top: .1rem; }

.amenities { background: var(--krem); }
.amenities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.amenity-card {
  background: var(--feher); border-radius: 6px; padding: 1.6rem 1.4rem;
  border: 1px solid rgba(28,74,42,.07);
  transition: box-shadow .25s, transform .25s;
}
.amenity-card:hover { box-shadow: 0 8px 28px rgba(28,74,42,.1); transform: translateY(-3px); }
.amenity-icon { font-size: 1.7rem; margin-bottom: .65rem; }
.amenity-name { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 600; color: var(--zold); margin-bottom: .3rem; }
.amenity-desc { font-size: .81rem; color: var(--szurke); line-height: 1.5; }

/* ── GALÉRIA OLDAL ── */
.gallery-hero { background: var(--zold); padding: 4rem 8% 3.5rem; }
.gallery-hero .section-title { color: var(--feher); margin-bottom: 0; }
.gallery-hero .section-body { color: rgba(255,255,255,.7); margin-top: .75rem; }

.gallery-section { background: var(--feher); padding: 4rem 8%; }
.gallery-cat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 500; color: var(--zold);
  margin-bottom: 1.25rem; padding-bottom: .6rem;
  border-bottom: 1px solid rgba(28,74,42,.1);
}
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem; margin-bottom: 2rem; }
.gallery-grid-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-grid-1 { grid-template-columns: 1fr; }
.gallery-grid img {
  width: 100%; border-radius: 4px; display: block;
  cursor: pointer; transition: opacity .25s, transform .2s;
  object-fit: cover; height: 220px;
}
.gallery-grid img:hover { opacity: .88; transform: scale(1.01); }

/* ── FOGLALÁS OLDAL ── */
.booking-hero { background: var(--zold-halv); padding: 4rem 8% 3.5rem; }
.booking-content { background: var(--feher); padding: 4rem 8%; }
.booking-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: start; }
.booking-placeholder {
  background: var(--krem); border: 2px dashed rgba(28,74,42,.2);
  border-radius: 8px; padding: 3rem 2rem; text-align: center;
  color: var(--szurke); font-size: .9rem;
}
.booking-placeholder .bp-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.booking-placeholder strong { display: block; color: var(--zold); font-size: 1.05rem; margin-bottom: .5rem; font-family: 'Cormorant Garamond', serif; }
.booking-rules { margin-top: 2.5rem; }
.booking-rule { display: flex; gap: 1rem; margin-bottom: 1.25rem; align-items: flex-start; }
.rule-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: .1rem; }
.rule-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--szurke); margin-bottom: .2rem; }
.rule-val { font-size: .95rem; color: var(--antr); }

/* ── INFÓK OLDAL ── */
.info-hero { background: var(--antr); padding: 4rem 8% 3.5rem; }
.info-hero .section-title { color: var(--feher); }
.info-hero .section-body { color: rgba(255,255,255,.65); }
.info-content { background: var(--feher); padding: 4rem 8%; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.info-block { margin-bottom: 2.5rem; }
.info-block-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600; color: var(--zold);
  margin-bottom: 1rem; padding-bottom: .5rem;
  border-bottom: 1px solid rgba(28,74,42,.12);
}
.info-list { list-style: none; }
.info-list li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .9rem; color: var(--szurke); padding: .45rem 0;
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.info-list li::before { content: '✓'; color: var(--zold); font-weight: 700; flex-shrink: 0; }

/* ── MEGKÖZELÍTÉS ── */
.megk-hero { background: var(--zold-halv); padding: 4rem 8% 3.5rem; }
.megk-content { background: var(--feher); padding: 4rem 8%; }
.megk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.megk-map { width: 100%; height: 380px; border-radius: 8px; overflow: hidden; border: 1px solid rgba(28,74,42,.1); }
.megk-map iframe { width: 100%; height: 100%; border: none; }
.transport-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.transport-icon { font-size: 1.4rem; flex-shrink: 0; }
.transport-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--szurke); margin-bottom: .2rem; }
.transport-val { font-size: .93rem; color: var(--antr); line-height: 1.6; }

/* ── VÉLEMÉNYEK ── */
.reviews-hero { background: var(--zold); padding: 4rem 8% 3.5rem; }
.reviews-hero .section-title { color: var(--feher); }
.reviews-content { background: var(--krem); padding: 4rem 8%; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.review-card {
  background: var(--feher); border-radius: 8px; padding: 2rem;
  border: 1px solid rgba(28,74,42,.07);
}
.review-stars { color: var(--fa); font-size: 1rem; margin-bottom: .75rem; letter-spacing: .1em; }
.review-text { font-size: .9rem; color: var(--szurke); line-height: 1.75; font-style: italic; margin-bottom: 1rem; }
.review-author { font-size: .82rem; font-weight: 500; color: var(--zold); }
.reviews-cta { text-align: center; margin-top: 3rem; }
.reviews-cta p { font-size: .9rem; color: var(--szurke); margin-bottom: 1.25rem; }

/* ── KAPCSOLAT / FOOTER ── */
.contact-bar {
  background: var(--zold); color: var(--feher);
  padding: 4rem 8%; text-align: center;
}
.contact-bar .section-title { color: var(--feher); }
.contact-bar .section-body { color: rgba(255,255,255,.72); margin: 0 auto; }
.contact-items { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; margin-top: 2.5rem; }
.contact-item { text-align: center; }
.contact-item-icon { font-size: 1.5rem; margin-bottom: .4rem; }
.contact-item-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.55); margin-bottom: .2rem; }
.contact-item-val { font-size: 1rem; color: var(--feher); }
.contact-item-val a { color: var(--feher); text-decoration: none; }
.contact-item-val a:hover { text-decoration: underline; }

footer {
  background: var(--antr); color: rgba(255,255,255,.45);
  padding: 1.75rem 8%;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
footer img { height: 34px; filter: brightness(5); opacity: .6; }
footer p { font-size: .78rem; }
footer a { color: rgba(255,255,255,.55); text-decoration: none; }
footer a:hover { color: var(--feher); }

/* ── LIGHTBOX ── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,.93); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 4px; object-fit: contain; }
.lightbox-close { position: absolute; top: 1.5rem; right: 2rem; color: #fff; font-size: 2rem; cursor: pointer; background: none; border: none; }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.15); color: #fff;
  border: none; font-size: 1.8rem; padding: .5rem 1rem;
  cursor: pointer; border-radius: 3px; transition: background .2s;
}
.lightbox-prev { left: 1rem; } .lightbox-next { right: 1rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.28); }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .intro-grid, .highlight-grid, .booking-grid, .info-grid, .megk-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .intro-img::after { display: none; }
  .intro-img img, .highlight-img img { height: 280px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 160px; }
  .highlight-feats { grid-template-columns: 1fr; }
  section { padding: 4rem 5%; }
  .gallery-section, .booking-content, .info-content, .megk-content, .reviews-content { padding: 3rem 5%; }
  .gallery-hero, .booking-hero, .info-hero, .megk-hero, .reviews-hero, .contact-bar { padding: 3rem 5%; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--krem); border-top: 1px solid rgba(28,74,42,.1); padding: 1.5rem 5%; gap: 1.25rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .contact-items { flex-direction: column; gap: 1.5rem; align-items: center; }
  .hero-content { padding: 0 5% 5rem; }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  footer { flex-direction: column; text-align: center; }
}
@media (max-width: 500px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid-2 { grid-template-columns: 1fr; }
}
