/* ========================================================================
   01 — ALAPBEÁLLÍTÁSOK / VÁLTOZÓK / RESET
   ======================================================================== */

:root {
  --petrol-950: #001f22;
  --petrol-900: #002f33;
  --petrol-850: #004348;
  --petrol-800: #005257;
  --gold-500: #c88a2d;
  --gold-400: #dca34a;
  --gold-300: #efc06c;
  --cream: #f4ead8;
  --muted: #d4c9b8;
  --line: rgba(213, 153, 56, 0.68);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
  --shadow: 0 22px 65px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  background:
    radial-gradient(
      circle at 50% 10%,
      rgba(9, 100, 102, 0.18),
      transparent 24%
    ),
    var(--petrol-900);
  color: var(--cream);
  font-family: var(--serif);
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  display: block;
  width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--gold-400);
  color: var(--petrol-950);
}

.skip-link:focus {
  top: 10px;
}

.band {
  border-bottom: 1px solid var(--line);
}

.section {
  padding: clamp(55px, 6vw, 90px) clamp(20px, 4.5vw, 72px);
}

.section-heading {
  max-width: 960px;
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  color: var(--gold-400);
}

.section-heading span {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500));
}

.section-heading span:last-child {
  transform: rotate(180deg);
}

.section-heading h2 {
  margin-top: 3rem;
  font: 600 clamp(32px, 3.4vw, 49px)/1 var(--serif);
  text-transform: uppercase;
  white-space: nowrap;
}

.section-label {
  margin: 0 0 15px;
  color: var(--gold-400);
  font: 600 clamp(27px, 2.4vw, 38px)/1 var(--serif);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ========================================================================
   02 — FEJLÉC / NAVIGÁCIÓ / LOGÓ
   ======================================================================== */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: 86px;
  padding: 0 clamp(18px, 4.2vw, 70px);
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(0, 42, 46, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  overflow: visible;
  padding-left: 185px;
  justify-content: flex-end;
}

.brand {
  align-items: center;
  gap: 14px;
  min-width: max-content;
  text-decoration: none;
  color: var(--gold-400);
  position: absolute;
  left: 24px;
  top: 8px;
  z-index: 1100;
  width: 142px;
  height: 142px;
  display: block;
  pointer-events: auto;
}

.brand img {
  width: 142px;
  height: 142px;
  max-width: none;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.28));
}

.brand-copy {
  line-height: 1;
  display: none;
}

.brand-copy strong {
  font: 700 28px/1 var(--serif);
  letter-spacing: 0.16em;
}

.brand-copy small {
  margin-top: 6px;
  font: 500 9px/1 var(--sans);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.9vw, 28px);
  margin-left: auto;
  width: 100%;
  justify-content: flex-end;
}

.main-nav a {
  color: var(--gold-300);
  text-decoration: none;
  font-size: 16px;
  white-space: nowrap;
  transition: 0.2s ease;
}

.main-nav a:not(.nav-cta):hover {
  color: #fff1d0;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--gold-400);
  background: transparent;
  width: 46px;
  height: 42px;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 23px;
  height: 1px;
  margin: 5px auto;
  background: var(--gold-400);
}

.nav-cta,
.gold-button,
.outline-button {
  color: var(--gold-300);
  margin-top: 4px;
}

.nav-cta:hover,
.outline-button:hover {
  background: var(--gold-400);
  color: var(--petrol-950) !important;
  transform: translateY(-2px);
}

.main-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 16px;
  margin-top: 0;
  background: linear-gradient(180deg, #e4b45f, #a76a24);
  border: 1px solid var(--gold-400);
  color: #fff8e9 !important;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: 0.22s ease;
}

.main-nav .nav-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.07);
  color: #fff8e9 !important;
}

/* ========================================================================
   03 — KÖZÖS GOMBOK
   ======================================================================== */

.gold-button {
  background: linear-gradient(180deg, #e4b45f, #a76a24);
  color: #fff8e9;
  border-color: #d9a04b;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.gold-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

/* ========================================================================
   04 — HERO / FŐOLDALI NYITÓSZEKCIÓ
   ======================================================================== */

.hero {
  position: relative;

  min-height: calc(100vh - 86px);
  margin-top: 86px;

  overflow: hidden;
  border-bottom: 1px solid var(--line);

  background-image: url("../media/hero-banner2.jpg");
  background-size: 115% auto;
  background-position: 0% 25%;
  background-repeat: no-repeat;
}
/*.hero-bg {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background-attachment: fixed;
}*/

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 42, 46, 0.96) 0%,
      rgba(0, 42, 46, 0.9) 26%,
      rgba(0, 42, 46, 0.45) 52%,
      rgba(0, 0, 0, 0.12) 80%
    ),
    linear-gradient(0deg, rgba(0, 25, 28, 0.32), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(650px, 50vw);
  padding: clamp(92px, 11vh, 135px) 0 70px clamp(30px, 8vw, 125px);
}

.hero h1 {
  margin: 0;
  color: var(--gold-400);
  font: 600 clamp(46px, 6vw, 88px)/0.9 var(--serif);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  margin-top: 18px;
  font-size: clamp(28px, 3vw, 52px);
  letter-spacing: 0.04em;
}

.gold-rule {
  width: min(360px, 80%);
  display: flex;
  align-items: center;
  margin: 20px 0 8px;
  color: var(--gold-400);
}

.gold-rule::before,
.gold-rule::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--gold-500);
}

.gold-rule span {
  padding: 0 10px;
  font-size: 9px;
}

.hero-tagline {
  margin: 0 0 20px;
  color: var(--gold-300);
  font: italic 500 clamp(31px, 3.6vw, 50px)/1.1 var(--serif);
}

.hero-lead {
  max-width: 540px;
  margin: 0 0 30px;
  color: var(--cream);
  font-size: clamp(17px, 1.4vw, 21px);
}

.hero-logo {
  width: min(280px, 45vw);
  margin-bottom: 26px;
  display: none !important;
}

.hero-booking-button {
  margin-top: 18px;
  min-width: 210px;
  min-height: 52px;
  padding: 12px 26px;
  background: linear-gradient(180deg, #e4b45f, #a76a24);
  border: 1px solid var(--gold-400);
  color: #fff8e9;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  transition: 0.22s ease;
}

.hero-booking-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

/* ========================================================================
   05 — RÓLAM SZEKCIÓ
   ======================================================================== */

.about {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) 1.1fr;
  height: 670px;
  min-height: 0;
}

.about-photo {
  height: 670px;
  overflow: hidden;
  border-right: 1px solid var(--line);
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 55%;
}

.about-content {
  height: 670px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 60px;
  background:
    radial-gradient(
      circle at 100% 50%,
      rgba(13, 93, 95, 0.24),
      transparent 34%
    ),
    var(--petrol-850);
}

.about-content h2,
.gift-copy h2 {
  margin: 0 0 20px;
  color: var(--cream);
  font: 600 clamp(29px, 3.1vw, 46px)/1.1 var(--serif);
}

.about-content p:not(.section-label),
.gift-copy p:not(.section-label),
.contact-data p:not(.section-label) {
  color: var(--muted);
  font-size: 17px;
}

.about-content .section-label {
  margin: 0 0 8px;
}

.about-content h2 {
  margin: 0 0 12px;
}

.about-content p:not(.section-label) {
  margin: 0 0 10px;
  line-height: 1.4;
}

.about-content .outline-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 12px 24px;
  margin-top: 8px;
  border: 1px solid var(--gold-400);
  background: transparent;
  color: #d99b3e;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  transition: 0.22s ease;
}

.about-content .outline-button:hover {
  background: linear-gradient(180deg, #efc06c, #d99b3e);
  color: var(--petrol-950);
  transform: translateY(-2px);
}

/* ========================================================================
   06 — ELŐNYÖK / MIÉRT VÁLASSZ ENGEM
   ======================================================================== */

.benefits-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(8, 94, 97, 0.3), transparent 28%),
    linear-gradient(90deg, #003d42 0%, #004e53 43%, #004249 74%, #003940 100%);
}

.benefits-section::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 180px;
  background: url("../icons/benefits-ornament.svg") right center / 165px auto
    no-repeat;
  opacity: 0.13;
  pointer-events: none;
}

.benefits-section > * {
  position: relative;
  z-index: 1;
}

.benefits-section .section-heading {
  max-width: 1120px;
  margin-bottom: 46px;
}

.benefits-section .section-heading h2 {
  font-size: clamp(38px, 4.1vw, 66px);
  letter-spacing: 0.02em;
}

.benefit-grid-large {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 35px;
  align-items: start;
  justify-items: center;
}

.benefit-card {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.benefit-card h3 {
  font-weight: 500;
  max-width: 260px;
  margin: 0 auto;
  color: var(--gold-300);
  font-size: 24px;
  line-height: 1.18;
  text-align: center;
}

.benefit-icon-image {
  width: 220px;
  height: 220px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* ========================================================================
   07 — SZOLGÁLTATÁSOK / VÉGTELEN FUTÓSZALAG
   ======================================================================== */

.services {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 15%,
      rgba(10, 102, 104, 0.24),
      transparent 33%
    ),
    var(--petrol-900);
}

.services-marquee {
  width: calc(100vw + 360px);
  margin-left: calc(50% - 50vw - 180px);
  overflow: hidden;
  padding: 20px 0 40px;
}

.service-track {
  display: flex;
  width: max-content;
  animation: service-scroll 40s linear infinite;
  will-change: transform;
}

.service-group {
  display: flex;
  flex-shrink: 0;
  gap: 22px;
  padding-right: 22px;
}

.service-card {
  flex: 0 0 250px;
  width: 250px;
  overflow: hidden;
  border: 1px solid var(--gold-500);
  border-radius: 13px;
  background: var(--petrol-850);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.14);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card > img {
  width: 100%;
  aspect-ratio: 0.93 / 1;
  object-fit: cover;
}

.service-card-body {
  position: relative;
  min-height: 105px;
  padding: 48px 10px 14px;
  color: var(--gold-300);
  text-align: center;
}

.service-card-body > span {
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);

  width: 110px;
  height: 110px;

  border: none;
  background: transparent;
  border-radius: 0;

  display: block;
  z-index: 5;
}

.service-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.service-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.15;
}

/* ========================================================================
   08 — ÁRLISTA
   ======================================================================== */

.price-section {
  background: linear-gradient(180deg, var(--petrol-850), var(--petrol-900));
}

.price-panel {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  background: rgba(0, 37, 40, 0.4);
}

.price-list {
  display: grid;
  gap: 7px;
}

.price-list > div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 9px;
  align-items: end;
  color: var(--gold-300);
  font-size: 18px;
}

.price-list i {
  border-bottom: 1px dotted rgba(218, 159, 70, 0.7);
  transform: translateY(-5px);
}

.price-list strong {
  font-weight: 500;
}

/* ========================================================================
   09 — VENDÉGVÉLEMÉNYEK
   ======================================================================== */

.testimonials {
  background: var(--petrol-850);
}

.testimonials-grid {
  max-width: 1220px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  padding: 28px 24px;
  border: 1px solid var(--line);
  background: rgba(0, 37, 40, 0.34);
  text-align: center;
}

.stars {
  margin-bottom: 14px;
  color: var(--gold-400);
  font-size: 26px;
  letter-spacing: 6px;
}

.testimonial-card blockquote {
  margin: 0 0 14px;
  color: var(--cream);
  font: italic 500 26px/1.4 var(--serif);
}

.testimonial-card p {
  margin: 0;
  color: var(--gold-300);
  font-size: 18px;
}

.reviews-link {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.reviews-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 52px;
  padding: 12px 26px;
  background: linear-gradient(180deg, #e4b45f, #a76a24);
  border: 1px solid var(--gold-400);
  color: #fff8e9;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transition: 0.22s ease;
}

.reviews-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.07);
}

/* ========================================================================
   10 — GALÉRIA
   ======================================================================== */

.gallery {
  background: var(--petrol-950);
}

.gallery-carousel {
  max-width: 1480px;
  margin: auto;
  display: grid;
  grid-template-columns: 58px 1fr 58px;
  gap: 14px;
  align-items: center;
}

.carousel-arrow {
  position: relative;
  width: 58px;
  height: 58px;
  padding: 0;
  margin: 0;
  border: 1px solid var(--gold-400);
  background: rgba(0, 49, 53, 0.88);
  color: var(--gold-300);
  appearance: none;
  -webkit-appearance: none;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}

.carousel-arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1;
  color: var(--gold-300);
  pointer-events: none;
}

#galleryPrev::before {
  content: "‹";
  font-size: 38px;
  margin-top: -2px;
  margin-left: -1px;
}

#galleryNext::before {
  content: "›";
  font-size: 38px;
  margin-top: -2px;
  margin-left: 1px;
}

.gallery-track-wrap {
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 6px;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-slide {
  flex: 0 0 calc((100% - 42px) / 4);
  aspect-ratio: 1.3 / 1;
  padding: 0;
  border: 1px solid var(--gold-500);
  border-radius: 10px;
  overflow: hidden;
  background: #00181a;
  cursor: pointer;
}

.gallery-slide img,
.gallery-slide video {
  height: 100%;
  object-fit: cover;
}

.gallery-slide img,
.lightbox-content img {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: auto;
}

/* ========================================================================
   11 — AJÁNDÉKUTALVÁNY
   ======================================================================== */

.gift {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: clamp(35px, 6vw, 90px);
  padding: clamp(55px, 6vw, 90px) clamp(25px, 7vw, 120px);
  background: linear-gradient(110deg, var(--petrol-850), var(--petrol-900));
}

.gift-copy {
  max-width: 610px;
}

.gift-image {
  max-height: 480px;
  overflow: hidden;
  border: 1px solid var(--gold-500);
  box-shadow: var(--shadow);
}

.gift-image img {
  height: 100%;
  max-height: 480px;
  object-fit: cover;
}

.gift .gold-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 165px;
  min-height: 48px;
  padding: 12px 24px;
  margin-top: 10px;
  background: linear-gradient(180deg, #e4b45f, #a76a24);
  border: 1px solid var(--gold-400);
  color: #fff8e9;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transition: 0.22s ease;
}

.gift .gold-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.07);
}

/* ========================================================================
   12 — KAPCSOLAT / IDŐPONTFOGLALÁS
   ======================================================================== */

.contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(45px, 6vw, 90px);
  align-items: stretch;
  padding-top: 75px;
  padding-bottom: 75px;
  background: var(--petrol-850);
}

.booking-panel,
.contact-logo-panel {
  height: 100%;
  min-height: 430px;
  border: 1px solid var(--gold-500);
  border-radius: 12px;
}

.booking-panel {
  padding: 42px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(220, 163, 74, 0.09),
      transparent 32%
    ),
    rgba(0, 37, 40, 0.32);
}

.booking-contact-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 22px;
}

.booking-panel-phone,
.booking-panel-address {
  margin: 0;
  line-height: 1.2;
}

.booking-panel-phone {
  white-space: nowrap;
  margin-bottom: 22px;
  color: var(--gold-300);
  font-size: clamp(24px, 2vw, 31px);
  font-weight: 600;
  text-decoration: none;
}

.booking-panel-address {
  margin-left: auto;
  color: var(--cream);
  font-size: 17px;
  font-weight: 400;
  text-decoration: none;
  text-align: right;
  white-space: nowrap;
}

.booking-panel-address:hover {
  color: var(--gold-300);
}

.booking-panel > .booking-panel-label {
  margin: 0 0 18px;
  color: var(--gold-400);
  font: 600 clamp(27px, 2.4vw, 38px)/1 var(--serif);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.booking-panel h3 {
  margin: 0 0 14px;
  color: var(--cream);
  font-size: clamp(30px, 2.4vw, 42px);
  font-weight: 500;
  line-height: 1.1;
}

.booking-panel > p:not(.booking-panel-label):not(.booking-panel-note) {
  max-width: 520px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 17px;
}

.booking-panel-divider {
  width: 100%;
  height: 1px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
}

.booking-panel-note {
  margin-bottom: 18px !important;
  color: var(--gold-300) !important;
  font-size: 16px !important;
}

.booking-panel .gold-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 52px;
  padding: 12px 26px;
  margin-top: 8px;
  background: linear-gradient(180deg, #e4b45f, #a76a24);
  border: 1px solid var(--gold-400);
  color: #fff8e9;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  transition: 0.22s ease;
}

.booking-panel .gold-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.07);
}

.contact .gold-button {
  margin-top: 8px;
  min-width: 220px;
  min-height: 52px;
  font-size: 17px;
}

.contact-logo-panel {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(220, 163, 74, 0.08),
      transparent 45%
    ),
    rgba(0, 37, 40, 0.25);
}

.contact-logo-panel img {
  width: min(330px, 75%);
  height: auto;
  margin: 0 auto 14px;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.22));
}

.contact-logo-tagline {
  margin: 0 0 22px;
  color: var(--gold-300);
  font-size: 24px;
  font-style: italic;
}

.contact-logo-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--muted);
  font-size: 16px;
}

.contact-logo-info a {
  color: var(--gold-300);
  text-decoration: none;
  font-size: 19px;
}

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

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 86px;
  padding: 18px 25px;
  border-top: 1px solid var(--line);
  background: var(--petrol-950);
  color: #b9ad9b;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-300);
}

.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
}

.footer-brand strong {
  display: block;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.14em;
}

.footer-brand span {
  display: block;
  font-size: 16px;
  font-style: italic;
}

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: 13px;
}

.footer-contact a {
  text-decoration: none;
}

.footer-copy {
  font-family: var(--sans);
  font-size: 11px;
  text-align: right;
}

/* ========================================================================
   14 — LEBEGŐ IDŐPONTFOGLALÁS GOMB
   ======================================================================== */

.floating-booking {
  position: fixed;
  z-index: 950;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  display: none;
  place-items: center;
  border: 1px solid var(--gold-300);
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--petrol-950);
  text-decoration: none;
  box-shadow: var(--shadow);
  font-size: 23px;
}

/* ========================================================================
   15 — LIGHTBOX / GALÉRIA NAGYÍTOTT NÉZET
   ======================================================================== */

.lightbox {
  position: fixed;
  z-index: 5000;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px 90px;
  background: rgba(0, 18, 20, 0.94);
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: min(1100px, 86vw);
  max-height: 84vh;
}

.lightbox-content img,
.lightbox-content video {
  max-width: 100%;
  max-height: 84vh;
  width: auto;
  margin: auto;
  object-fit: contain;
}

.lightbox-close,
.lightbox-arrow {
  position: fixed;
  z-index: 5100;
  padding: 0;
  margin: 0;
  border: 1px solid var(--gold-400);
  background: rgba(0, 49, 53, 0.9);
  color: var(--gold-300);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
}

.lightbox-close {
  top: 18px;
  right: 18px;
  width: 50px;
  height: 50px;
}

.lightbox-arrow {
  top: 50%;
  width: 52px;
  height: 60px;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.lightbox-close::before,
.lightbox-arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1;
  color: var(--gold-300);
  pointer-events: none;
}

.lightbox-close::before {
  content: "×";
  font-size: 27px;
  margin-top: -1px;
}

.lightbox-prev::before {
  content: "‹";
  font-size: 38px;
  margin-top: -2px;
  margin-left: -1px;
}

.lightbox-next::before {
  content: "›";
  font-size: 38px;
  margin-top: -2px;
  margin-left: 1px;
}

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

@keyframes service-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ========================================================================
   18 — RESZPONZÍV NÉZETEK
   ======================================================================== */

/* ------------------------------------------------------------------------
   MOBIL — maximum 768px
   ------------------------------------------------------------------------ */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 76px;
  }

  /* FEJLÉC / NAVIGÁCIÓ */
.site-header {
  min-height: 76px;
  padding-left: 104px;

  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

  .brand {
    left: 8px;
    top: 9px;
    width: 86px;
    height: 86px;
  }

  .brand img {
    width: 86px;
    height: 86px;
  }

  .brand-copy strong {
    font-size: 24px;
  }

  .brand-copy small {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  /* MOBIL MENÜ */
  .main-nav {
    position: fixed;

    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    height: calc(100dvh - 76px);

    margin: 0;
    padding: 32px 20px 45px;

    display: flex;
    flex-direction: column;
    align-items: center;

    /* FONTOS: ne center legyen */
    justify-content: flex-start;

    gap: 14px;

    background:
      radial-gradient(
        circle at 50% 10%,
        rgba(220, 163, 74, 0.08),
        transparent 35%
      ),
      linear-gradient(180deg, #004348 0%, #003438 45%, #001f22 100%);

    border-top: 1px solid var(--line);

    overflow-y: auto;
    overflow-x: hidden;

    overscroll-behavior: contain;

    transform: translateX(100%);
    transition: transform 0.3s ease;

    z-index: 1050;

    -webkit-overflow-scrolling: touch;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav a {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    width: auto;
    min-height: 38px;

    margin: 0;
    padding: 4px 10px;

    color: var(--gold-300);

    font-family: var(--serif);
    font-size: 22px;
    line-height: 1.2;

    text-align: center;
    text-decoration: none;
    white-space: nowrap;
  }

  .main-nav .nav-cta {
    flex: 0 0 auto;

    min-height: 42px;

    margin: 8px 0 20px;
    padding: 9px 18px;

    font-size: 14px;
  }

  /* HERO */
  .hero {
    margin-top: 76px;
    min-height: 680px;
        background-position: center 0%;
  }

  .hero-bg {
    object-position: 62% center;
  }

  .hero-overlay {
    background: linear-gradient(
      0deg,
      rgba(0, 42, 46, 0.98) 0%,
      rgba(0, 42, 46, 0.9) 44%,
      rgba(0, 42, 46, 0.15) 77%
    );
  }

  .hero-content {
    width: 100%;
    padding: 275px 18px 62px;
    text-align: center;
  }

  .hero-logo {
    width: 210px;
    margin-inline: auto;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero h1 span {
    font-size: 28px;
  }

  .hero-tagline {
    font-size: 32px;
  }

  .gold-rule,
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  /* KÖZÖS SZEKCIÓK */
  .section {
    padding: 48px 15px;
  }

  .section-heading {
    gap: 10px;
  }

  .section-heading h2 {
    font-size: 28px;
    white-space: normal;
    text-align: center;
  }

  /* RÓLAM */
  .about {
    grid-template-columns: 1fr;
    height: auto;
  }

  .about-photo {
    height: 330px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-content {
    height: auto;
    padding: 34px 22px;
  }

  .about-content h2 {
    font-size: 30px;
  }

  .about-content p:not(.section-label) {
    font-size: 15px;
    line-height: 1.45;
  }

  /* ELŐNYÖK */
  .benefit-grid-large {
    max-width: 320px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .benefit-icon-image {
    width: 200px;
  }

  .benefit-card h3,
  .service-card h3 {
    font-size: 18px;
  }

  .benefits-section .section-heading {
    margin-bottom: 28px;
  }

  .benefits-section .section-heading h2 {
    font-size: 31px;
  }

  .benefits-section::after {
    display: none;
  }

  /* ÁRLISTA */
  .price-panel {
    padding: 24px 18px;
  }

  .price-list > div {
    grid-template-columns: 1fr auto;
    gap: 5px 12px;
    font-size: 14px;
  }

  .price-list i {
    display: none;
  }

  /* VÉLEMÉNYEK */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card blockquote {
    font-size: 22px;
  }

  /* GALÉRIA */
  .gallery-carousel {
    grid-template-columns: 44px 1fr 44px;
    gap: 8px;
  }

  .gallery-slide {
    flex-basis: 100%;
  }

  /* AJÁNDÉKUTALVÁNY */
  .gift {
    grid-template-columns: 1fr;
    padding-inline: 24px;
  }

  /* KAPCSOLAT / IDŐPONTFOGLALÁS */
  .contact {
    grid-template-columns: 1fr;
  }

  .booking-panel,
  .contact-logo-panel {
    min-height: 0;
    padding: 32px 24px;
  }

  .booking-contact-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .booking-panel-address {
    margin-left: 0;
    text-align: left;
    white-space: normal;
  }

  .contact-logo-panel img {
    width: min(280px, 80%);
  }

  /* LÁBLÉC */
  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .footer-contact {
    justify-content: center;
  }

  .footer-copy {
    text-align: center;
  }

  .floating-booking {
    display: grid;
  }

  /* LIGHTBOX */
  .lightbox {
    padding: 62px 52px;
  }

  .lightbox-arrow {
    width: 38px;
    height: 52px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }
}

/* ------------------------------------------------------------------------
   TABLET — 769px–1023px
   ------------------------------------------------------------------------ */
@media (min-width: 769px) and (max-width: 1023px) {
  html {
    scroll-padding-top: 76px;
  }

  /* FEJLÉC / NAVIGÁCIÓ */
  .site-header {
    min-height: 76px;
    padding-left: 104px;

    /* fontos: mobilon ez zavarta a fixed menüt */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .brand {
    left: 8px;
    top: 9px;
    width: 86px;
    height: 86px;
  }

  .brand img {
    width: 86px;
    height: 86px;
  }

  .brand-copy strong {
    font-size: 24px;
  }

  .brand-copy small {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;

    position: relative;
    z-index: 1200;
  }

  .main-nav {
    position: fixed;

    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;

    width: 100vw;
    height: calc(100dvh - 76px);

    margin: 0;
    padding: 35px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 20px;

    background:
      radial-gradient(
        circle at 50% 10%,
        rgba(220, 163, 74, 0.08),
        transparent 35%
      ),
      linear-gradient(180deg, #004348 0%, #003438 45%, #001f22 100%);

    border-top: 1px solid var(--line);

    overflow-y: auto;
    overflow-x: hidden;

    transform: translateX(100%);
    transition: transform 0.3s ease;

    z-index: 1050;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav a {
    font-family: var(--serif);
    font-size: 24px;

    color: var(--gold-300);

    text-align: center;
    text-decoration: none;

    flex-shrink: 0;
  }

  .main-nav .nav-cta {
    margin-top: 8px;

    min-height: 42px;
    padding: 9px 18px;

    font-size: 14px;
  }

  .nav-cta {
    margin-top: 8px;
  }

  /* HERO */
  .hero {
    margin-top: 76px;
    min-height: 780px;
  }

  .hero-bg {
    object-position: 62% center;
  }

  .hero-overlay {
    background: linear-gradient(
      0deg,
      rgba(0, 42, 46, 0.98) 0%,
      rgba(0, 42, 46, 0.9) 44%,
      rgba(0, 42, 46, 0.15) 77%
    );
  }

  .hero-content {
    width: 100%;
    padding: 340px 24px 80px;
    text-align: center;
  }

  .hero-logo {
    margin-inline: auto;
  }

  .gold-rule,
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  /* RÓLAM */
  .about {
    grid-template-columns: 1fr;
    height: auto;
  }

  .about-photo {
    height: 400px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-content {
    height: auto;
    padding: 40px 32px;
  }

  /* ELŐNYÖK */
  .benefit-grid-large {
    max-width: 700px;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .benefits-section::after {
    width: 130px;
    background-size: 115px auto;
  }

  /* VÉLEMÉNYEK */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* GALÉRIA */
  .gallery-slide {
    flex-basis: calc((100% - 14px) / 2);
  }

  /* AJÁNDÉKUTALVÁNY */
  .gift {
    grid-template-columns: 1fr;
    padding-inline: 24px;
  }

  /* KAPCSOLAT / IDŐPONTFOGLALÁS */
  .contact {
    grid-template-columns: 1fr;
  }

  /* LÁBLÉC */
  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .footer-contact {
    justify-content: center;
  }

  .footer-copy {
    text-align: center;
  }

  .floating-booking {
    display: grid;
  }
}

/* ------------------------------------------------------------------------
   LAPTOP — 1024px–1199px
   ------------------------------------------------------------------------ */
@media (min-width: 1024px) and (max-width: 1199px) {
  /* ELŐNYÖK */
  .benefits-section::after {
    width: 130px;
    background-size: 115px auto;
  }

  /* VÉLEMÉNYEK */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* GALÉRIA */
  .gallery-slide {
    flex-basis: calc((100% - 14px) / 2);
  }
}

/* ------------------------------------------------------------------------
   DESKTOP — minimum 1200px
   ------------------------------------------------------------------------ */
@media (min-width: 1200px) {
  /* A desktop nézet a fenti alapstílusokat használja változtatás nélkül. */
}
