/* =========================================================
   TAVASZI SZÉL LOVASUDVAR / TANYAKALAND
   TISZTÍTOTT, EGYSÉGES STYLE.CSS
   ========================================================= */

/* ===== ALAPOK ===== */

:root {
  --bg: #e9e1d8;
  --paper: #f3ebe3;

  --text: #43352d;
  --muted: #72655b;

  --accent: #da834f;
  --accent-dark: #c36d3e;

  --green-1: #6f8569;
  --green-2: #55694f;

  --line: rgba(96, 73, 57, 0.12);

  --shadow-soft: 0 14px 34px rgba(84, 59, 42, 0.12);
  --shadow-strong: 0 22px 54px rgba(55, 39, 28, 0.18);

  --radius-md: 24px;
  --radius-lg: 34px;

  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  overflow-x: hidden;
}

.page-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.12;
  background-image:
    radial-gradient(rgba(116, 92, 73, 0.06) 0.7px, transparent 0.7px),
    radial-gradient(rgba(255,255,255,0.24) 0.7px, transparent 0.7px);
  background-size: 22px 22px;
  background-position: 0 0, 11px 11px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

main,
section {
  background: transparent;
}

/* ===== TOPBAR ===== */

.topbar {
  background: rgba(77, 62, 50, 0.86);
  color: #f6efe8;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
}

.topbar a {
  color: inherit;
}

.topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 6px 0;
}

.topbar-left,
.topbar-right {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* ===== NAVBAR / HEADER ===== */

.navbar-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(233, 225, 216, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 5px 18px rgba(80, 50, 30, 0.05);
}

.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.header-logos {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: inline-block;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  margin-left: auto;
  padding-right: 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.nav-links a {
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover {
  color: var(--accent-dark);
  transform: translateY(-1px);
}

.nav-sep {
  color: rgba(67, 53, 45, 0.45);
  font-size: 12px;
}


/* ===== VÁLASZTÓ / GOMBOS KÉP ===== */

.choice-poster-section {
  margin-top: 80px;
  padding: 0 0 64px;
  position: relative;
  z-index: 20;
  background: var(--bg);
}

.choice-poster-section .container {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.choice-poster-wrap {
  position: relative;
}

.choice-poster-image {
  display: block;
  width: min(1080px, 82vw);
  height: auto;
  margin: 0 auto;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.choice-card-link {
  position: absolute;
  z-index: 50;
  display: block;
  cursor: pointer;
  border-radius: 34px;
}
.choice-card-tanya {
  left: 6%;
  top: 36%;
  width: 31%;
  height: 48%;
}
.choice-card-lovas {
  left: 42%;
  top: 36%;
  width: 15%;
  height: 48%;
}
.choice-card-fejlesztes {
  left: 63%;
  top: 36%;
  width: 23%;
  height: 48%;
}

/* ===== VIDEÓ SZEKCIÓ ===== */

.video-section-new {
  position: relative;
  padding: 64px 0 82px;
  overflow: hidden;
  background: var(--bg);
}

.video-container-new {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 44px;
  max-width: 1180px;
  margin: 0 auto;
}

.video-title-new {
  max-width: 420px;
  margin: 0;
  text-align: left;
}

.video-title-new h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 4.8vw, 68px);
  line-height: 1;
  font-weight: 700;
  color: var(--text);
}

.video-divider {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin: 12px 0 16px;
  color: var(--accent-dark);
}

.video-divider span {
  width: 82px;
  height: 1px;
  background: rgba(86, 68, 48, 0.38);
}

.video-divider strong {
  font-size: 18px;
  line-height: 1;
}

.video-title-new p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.32;
  color: var(--muted);
}

.video-title-new em {
  font-style: normal;
  color: var(--accent-dark);
  font-weight: 700;
}

.video-frame-new {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: #111;
  box-shadow: 0 20px 46px rgba(55, 39, 28, 0.16);
}

.video-frame-new video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-bg-leaf {
  position: absolute;
  z-index: 1;
  color: rgba(91, 111, 72, 0.13);
  font-family: Georgia, serif;
  font-size: 160px;
  line-height: 1;
  transform: rotate(-28deg);
  pointer-events: none;
}

.video-leaf-left {
  left: 3%;
  top: 80px;
}

.video-leaf-right {
  right: 5%;
  top: 190px;
  transform: rotate(28deg);
}

/* ===== ÁLTALÁNOS SZEKCIÓK / KÁRTYÁK ===== */

.section {
  padding: 0;
}

.paper-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: none;
}

.tanya-card,
.lovas-card,
.video-card {
  padding: 70px 0;
  background: transparent;
  box-shadow: none;
  border: none;
  border-radius: 0;
}

.tanya-grid,
.lovas-grid {
  max-width: 1180px;
  margin: 0 auto;
}

.tanya-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.tanya-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tanya-text h2,
.dark-banner-content h2,
.experience-text h2,
.about-text h2,
.video-header h2,
.lovas-text h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  color: var(--text);
}

.tanya-text p,
.dark-banner-content p,
.experience-text p,
.about-text p,
.video-header p,
.lovas-text p {
  margin: 0 0 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
}

.tanya-lead,
.about-text .lead {
  font-size: 20px;
}

/* ===== TANYA KÉPEK ===== */

.tanya-highlight {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

.tanya-highlight-img,
.tanya-highlight img {
  width: 420px;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}

.tanya-highlight-img:hover,
.tanya-highlight img:hover {
  transform: scale(1.03);
}

.tanya-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tanya-img {
  width: 100%;
  height: 260px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
  background: var(--paper);
}

.tanya-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tanya-img:hover img {
  transform: scale(1.05);
}

.tanya-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(51, 41, 34, 0.62);
  color: #fff;
  padding: 6px 10px;
  border-radius: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.tanya-img-program {
  height: 180px;
}

.tanya-img.program14 {
  height: auto;
  max-height: 220px;
}

.tanya-img.program14 img,
.program14-box img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
}

.tanya-img img[src*="program14.jpg"] {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
}

/* ===== LOVASISKOLA BLOKK ===== */

.lovas-card {
  padding: 70px 0;
}

.lovas-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.lovas-info {
  margin-top: 18px;
  font-weight: 600;
}

.lovas-images {
  position: relative;
  min-height: 420px;
}

.lovas-img {
  position: absolute;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  background: var(--paper);
}

.lovas-img-main {
  left: 0;
  top: 0;
  width: 70%;
  height: 260px;
  z-index: 2;
  transform: rotate(-2deg);
}

.lovas-img-second {
  right: 0;
  bottom: 0;
  width: 58%;
  height: 320px;
  z-index: 3;
}

.lovas-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.lovas-img-second img {
  object-position: 50% 30%;
}

.lovas-img:hover {
  transform: scale(1.02);
}

.lovas-img:hover img {
  transform: scale(1.05);
}

.lovas-label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 14px;
  border-radius: 12px;
  background: rgba(51, 41, 34, 0.65);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

/* ===== EGYÉB BLOKKOK, HA MÉG HASZNÁLOD ŐKET ===== */

.dark-banner {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  }

.dark-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(53,40,32,0.75), rgba(53,40,32,0.18));
}

.dark-banner-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 48px 42px;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,0.28);
}

.experience-banner {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
 
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: end;
}

.experience-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(53,40,32,0.70), rgba(53,40,32,0.08));
}

.experience-text {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 42px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.26);
}

.experience-text p {
  font-size: 19px;
  line-height: 1.55;
}

.experience-image {
  position: relative;
  z-index: 2;
  min-height: 290px;
  margin: 0 22px 22px 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--paper);
  border: 4px solid rgba(255,255,255,0.75);
}

.about-card {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 30px;
  align-items: center;
}

.about-image {
  overflow: hidden;
  border-radius: 18px;
  min-height: 430px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.signature {
  margin-top: 24px;
  font-size: 56px;
  font-style: italic;
  color: #624d3f;
}

/* ===== FLOW KÉPEK ===== */

.flow-intro,
.flow-riding {
  margin-top: 0;
  padding: 56px 0 0;
  position: relative;
  z-index: 1;
}

.flow-intro .container,
.flow-riding .container {
  width: min(1180px, calc(100% - 40px));
}

.flow-intro-image,
.flow-riding-image {
  display: block;
  width: min(1080px, 86vw);
  height: 360px;
  object-fit: cover;
  object-position: center;
  margin: 0 auto;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

/* ===== FOOTER ===== */

.footer {
  padding: 28px 0 46px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--muted);
  font-size: 15px;
  background: var(--bg);
}

.footer a {
  color: inherit;
}

.footer-inner {
  padding-top: 8px;
  border-top: 1px solid rgba(96,73,57,0.08);
}

/* ===== TABLET ===== */

@media (max-width: 1100px) {
  
    height: 68vh;
    min-height: 520px;
  }

  .tanya-grid,
  .lovas-grid,
  .experience-banner,
  .about-card {
    grid-template-columns: 1fr;
  }

  .tanya-images {
    min-height: auto;
  }

  .experience-image {
    margin-left: 22px;
  }
}

/* ===== VIDEÓ TABLET/MOBIL ===== */

@media (max-width: 900px) {
  .video-container-new {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .video-title-new {
    max-width: 760px;
    text-align: center;
    margin: 0 auto;
  }

  .video-divider {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== MOBIL ===== */

@media (max-width: 760px) {
  .container {
    width: calc(100% - 24px);
  }

  .topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .navbar {
    min-height: auto;
    padding: 14px 0;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .header-logo {
    width: 52px;
    height: 52px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 16px;
    padding-right: 0;
    font-size: 19px;
  }

 

  .choice-poster-section {
    margin-top: 48px;
    padding-bottom: 44px;
  }

  .choice-poster-image {
    width: calc(100% - 24px);
    border-radius: 22px;
  }

  .video-section-new {
    padding: 52px 0 64px;
  }

  .video-title-new h2 {
    font-size: 44px;
  }

  .video-title-new p {
    font-size: 20px;
  }

  .video-frame-new {
    border-radius: 20px;
  }

  .video-bg-leaf {
    display: none;
  }

  .tanya-card,
  .lovas-card,
  .video-card {
    padding: 48px 0;
  }

  .tanya-images,
  .lovas-images {
    position: relative;
    display: grid;
    gap: 14px;
    min-height: auto;
  }

  .tanya-img,
  .lovas-img {
    position: relative;
    width: 100%;
    height: 220px;
  }

  .flow-intro,
  .flow-riding {
    padding: 42px 0 0;
  }

  .flow-intro-image,
  .flow-riding-image {
    width: calc(100% - 24px);
    height: 240px;
    border-radius: 22px;
  }

  .experience-image,
  .about-image {
    min-height: 260px;
  }

  .signature {
    font-size: 42px;
  }
}
.hero-new {
  padding: 42px 0 56px;
  background: var(--bg);
}

.hero-new-inner {
  display: flex;
  justify-content: center;
}

.hero-new-image {
  width: min(1080px, 86vw);
  height: auto;
  display: block;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}
/* ===== TANYAKALAND MOZGÓ KÉPSÁV ===== */

.image-marquee {

  overflow: hidden;

  padding: 24px 0 42px;
}

.marquee-track {

  display: flex;

  gap: 18px;

  width: max-content;

animation: marqueeMove 48s linear infinite;
}

.marquee-track img {

  width: 260px;

  height: 190px;

  object-fit: cover;

  border-radius: 18px;

  flex-shrink: 0;

  box-shadow: var(--shadow-soft);
}

@keyframes marqueeMove {

  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}
/* ===== TANYAKALAND FŐMENÜ KÉP ===== */

.tanyakaland-menu-section {
  padding: 42px 0 64px;
}

.tanyakaland-menu-image {
  width: min(1180px, 92vw);
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}
/* ===== TANYAKALAND MENÜ GOMBOK ===== */

.tanyakaland-menu-wrap {
  position: relative;
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.tanyakaland-menu-image {
  width: 100%;
  display: block;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

/* láthatatlan gombok */

.menu-hotspot {
  position: absolute;
  display: block;
}

/* 1 */

.hotspot-1 {
  left: 1%;
  top: 22%;
  width: 19%;
  height: 48%;
}

/* 2 */

.hotspot-2 {
  left: 21%;
  top: 22%;
  width: 19%;
  height: 48%;
}

/* 3 */

.hotspot-3 {
  left: 41%;
  top: 22%;
  width: 19%;
  height: 48%;
}

/* 4 */

.hotspot-4 {
  left: 61%;
  top: 22%;
  width: 19%;
  height: 48%;
}

/* 5 */

.hotspot-5 {
  left: 81%;
  top: 22%;
  width: 18%;
  height: 48%;
}
/* ===== PLAKÁT OLDAL ===== */

body {
  margin: 0;
  background: #f5f0e8;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.content-poster-section {
  padding: 40px 0;
}

.content-poster-image {
  width: 100%;
  display: block;
  border-radius: 24px;
}
body::before,
body::after {
  content: "✿";
  position: fixed;
  z-index: 1;
  pointer-events: none;
  font-family: Georgia, serif;
  color: rgba(143, 112, 82, 0.18);
}

body::before {
  left: 26px;
  bottom: 42px;
  font-size: 46px;
  transform: rotate(-14deg);
}

body::after {
  right: 34px;
  bottom: 58px;
  font-size: 38px;
  transform: rotate(18deg);
}
/* LOVASISKOLA PLAKÁT */

.lovas-poster {
  padding: 40px 0;
}

.lovas-poster-image {

  width: min(1100px, 94vw);

  display: block;

  margin: 0 auto;

  border-radius: 30px;

  box-shadow: 0 10px 35px rgba(0,0,0,0.14);

}
.page-wrap {
  width: min(1200px, 92vw);
  margin: 50px auto;
}

.poster-section {
  display: flex;
  justify-content: center;
}
.poster-image {
  width: 70%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 20px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-wrap img {
  height: 54px;
  width: auto;
  object-fit: contain;
  display: block;
}
.map-section {
  text-align: center;
  padding: 60px 20px;
}

.map-section h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.map-button {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: #6f2f2f;
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
}

.map-button:hover {
  background: #5a2525;
}

.topbar {
  background: #f4eee7;
  padding: 10px 20px;
  font-size: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.topbar-inner {
  width: min(1200px, 95vw);
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;

  flex-wrap: wrap;
  gap: 10px;
}

.navbar-wrap {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  width: min(1200px, 95vw);
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 0;
}

.header-logos {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.header-logo {
  height: 68px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #2d2d2d;
  font-weight: 600;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links .active {
  color: #6f2f2f;
}

@media (max-width: 900px) {

  .navbar {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links {
    justify-content: center;
  }

}
/* ===== FŐOLDAL FEJLÉC FELÜLÍRÁS ===== */

.topbar {
  background: #f4eee7 !important;
  padding: 10px 20px !important;
  border-bottom: 1px solid rgba(0,0,0,0.08) !important;
}

.topbar-inner {
  width: min(1200px, 95vw) !important;
  margin: 0 auto !important;

  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;

  flex-wrap: wrap !important;
  gap: 10px !important;
}

.navbar-wrap {
  background: rgba(255,255,255,0.75) !important;
  backdrop-filter: blur(10px) !important;

  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
}

.navbar {
  width: min(1200px, 95vw) !important;
  margin: 0 auto !important;

  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;

  padding: 20px 0 !important;
  min-height: 120px !important;
}

.header-logos {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  text-decoration: none !important;
}

.header-logo {
  height: 92px !important;
  width: auto !important;
  display: block !important;
}

.large-logo {
  height: 92px !important;
}

.nav-links {
  display: flex !important;
  gap: 26px !important;
  flex-wrap: wrap !important;
}

.nav-links a {
  text-decoration: none !important;
  color: #2d2d2d !important;
  font-weight: 600 !important;
  transition: 0.3s !important;
}

.nav-links a:hover,
.nav-links .active {
  color: #6f2f2f !important;
}

@media (max-width: 900px) {

  .navbar {
    flex-direction: column !important;
    gap: 20px !important;
  }

  .nav-links {
    justify-content: center !important;
  }

}
/* ===== FŐOLDALAS MENÜ STÍLUS ===== */

.nav-links a {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 34px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  color: #2d2d2d !important;
}

.nav-links {
  gap: 36px !important;
}

.header-logo,
.header-logo.large-logo {
  height: 86px !important;
}

.navbar {
  padding: 28px 0 !important;
}
/* ===== FŐOLDAL STÍLUSÚ FEJLÉC ===== */

.topbar {
  background: #f4eee7 !important;
  padding: 10px 20px !important;
  border-bottom: 1px solid rgba(0,0,0,0.08) !important;
}

.topbar-inner {
  width: min(1200px, 95vw) !important;
  margin: 0 auto !important;

  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;

  flex-wrap: wrap !important;
  gap: 10px !important;
}

.navbar-wrap {
  background: rgba(255,255,255,0.75) !important;
  backdrop-filter: blur(10px) !important;

  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
}

.navbar {
  width: min(1320px, 95vw) !important;
  margin: 0 auto !important;

  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;

  padding: 28px 0 !important;
}

.header-logos {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  text-decoration: none !important;
}

.header-logo,
.header-logo.large-logo {
  height: 82px !important;
  width: auto !important;
  display: block !important;
}

.nav-links {
  display: flex !important;
  gap: 28px !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
}

.nav-links a {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 30px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  color: #2d2d2d !important;
  transition: 0.3s !important;
}

.nav-links a:hover,
.nav-links .active {
  color: #6f2f2f !important;
}

@media (max-width: 1100px) {

  .navbar {
    flex-direction: column !important;
    gap: 18px !important;
  }

  .nav-links {
    flex-wrap: wrap !important;
    justify-content: center !important;
  }

  .nav-links a {
    font-size: 24px !important;
  }

}
/* ===== FŐOLDAL STÍLUSÚ FEJLÉC ===== */

.topbar {
  background: #f4eee7 !important;
  padding: 10px 20px !important;
  border-bottom: 1px solid rgba(0,0,0,0.08) !important;
}

.topbar-inner {
  width: min(1200px, 95vw) !important;
  margin: 0 auto !important;

  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;

  flex-wrap: wrap !important;
  gap: 10px !important;
}

.navbar-wrap {
  background: rgba(255,255,255,0.75) !important;
  backdrop-filter: blur(10px) !important;

  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
}

.navbar {
  width: min(1320px, 95vw) !important;
  margin: 0 auto !important;

  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;

  padding: 28px 0 !important;
}

.header-logos {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  text-decoration: none !important;
}

.header-logo,
.header-logo.large-logo {
  height: 82px !important;
  width: auto !important;
  display: block !important;
}

.nav-links {
  display: flex !important;
  gap: 28px !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
}

.nav-links a {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 30px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  color: #2d2d2d !important;
  transition: 0.3s !important;
}

.nav-links a:hover,
.nav-links .active {
  color: #6f2f2f !important;
}

@media (max-width: 1100px) {

  .navbar {
    flex-direction: column !important;
    gap: 18px !important;
  }

  .nav-links {
    flex-wrap: wrap !important;
    justify-content: center !important;
  }

  .nav-links a {
    font-size: 24px !important;
  }

}
