:root {
  --beige: #EFE7DC;
  --beige-soft: #F6F1E9;
  --sage: #3F5C4B;
  --sage-dark: #32493C;
  --white: #FFFFFF;
  --text-dark: #1F1F1F;
  --text-muted: #5A5A5A;

  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 6px 18px rgba(0, 0, 0, 0.12);
}

body {
  background: var(--beige-soft);
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--text-dark);
  margin: 0;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--sage);
}

h3, h5 {
  font-weight: 500;
}

h1 {
  font-size: 40px;
  letter-spacing: 2px;
}

h2 {
  font-size: 30px;
  text-transform: uppercase;
}

h3 {
  line-height: 36px;
}

h5 {
  letter-spacing: 1px;
  padding-top: 10px;
}

p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 24px;
}

a {
  text-decoration: none !important;
  outline: none;
  color: var(--sage);
  transition: color 0.25s ease;
}

a:hover {
  color: var(--sage-dark);
}

.section-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 50px;
  color: var(--sage);
  text-align: center;
  letter-spacing: 1px;
}

.custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 9999;
  background: var(--sage-dark);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1300px;
  width: 100%;
  padding: 0 40px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}

.navbar-brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
}

.custom-navbar .navbar-brand img {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: none !important;
}

.navbar-toggle {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) translateY(-8px);
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  z-index: 99999;
}

.navbar-toggle span {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

.header-lang { 
    position: absolute; 
    left: 25px; 
    top: 50%; 
    transform: translateY(-50%); 
    z-index: 999999; 
    display: flex; 
    align-items: center; 
} 

.lang-btn { 
    background: transparent; 
    border: none; 
    cursor: pointer; 
} 

.flag-icon { 
    width: 30px; 
    height: auto; 
} 

.lang-menu { 
    background: #fff; 
    list-style: none; 
    padding: 8px 0; 
    margin: 0; 
    border-radius: 6px; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.15); 
    position: absolute; 
    top: 40px; 
    left: 0; 
    display: none; 
} 

.header-lang.open .lang-menu { 
    display: block; 
} 

.lang-menu li a { 
    padding: 8px 14px; 
    display: flex; 
    align-items: center; 
} 

.lang-btn { 
    position: relative; 
    display: inline-flex; 
    align-items: center; 
    padding: 0; 
} 

.lang-arrow { 
    position: absolute; 
    right: -12px; 
    top: 50%; 
    transform: translateY(-50%); 
    font-size: 11px; color: #ddd; 
    pointer-events: none; 
    transition: transform 0.25s ease; 
} 

.header-lang.open .lang-arrow { 
    transform: translateY(-50%) rotate(180deg); 
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--sage-dark);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: 0.35s ease;
  z-index: 99998;
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.menu-overlay-header {
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 25px;
  position: relative;
}

.menu-overlay-header .navbar-brand {
  position: static;
  transform: none;
}

.menu-overlay-header .navbar-brand img {
  height: 55px;
}

.menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 24px;
  border: none;
}

.menu-overlay-links {
  margin-top: 140px;
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
  text-align: center;
}

.menu-overlay-links a {
  color: #eee;
  font-size: 26px;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.menu-group-title {
  font-size: 24px;
  font-weight: 600;
  color: #eee;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.menu-group-arrow {
  font-size: 14px;
  margin-left: 6px;
  opacity: 0.7;
  position: relative;
  top: -1px;
}

.menu-group-items {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.menu-group-items a {
  font-size: 21px;
  line-height: 1.4;
  opacity: 0.85;
}

@media (max-width: 1024px) {

  .navbar-brand {
    left: 50%;
    transform: translateX(-50%);
  }

  .navbar-toggle {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .header-lang {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .custom-navbar .navbar-brand img {
    height: 44px;
  }
      .menu-overlay-links {
    margin-top: 60px;     
    padding-bottom: 80px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {

  .menu-overlay-links {
    gap: 52px;
  }

  .menu-overlay-links a {
    font-size: 30px;
  }

  .menu-group-title {
    font-size: 28px;
  }

  .menu-group-items {
    gap: 22px;
  }

  .menu-group-items a {
    font-size: 24px;
  }
}

@media (min-width: 1025px) {

  .menu-overlay-links {
    gap: 60px;
  }

  .menu-overlay-links a {
    font-size: 32px;
  }

  .menu-group-title {
    font-size: 30px;
  }

  .menu-group-arrow {
    font-size: 16px;
  }

  .menu-group-items {
    gap: 24px;
  }

  .menu-group-items a {
    font-size: 26px;
  }
}

@media (max-width: 1024px) {
  .navbar-toggle {
    transform: translateY(-50%) translateY(-8px);
  }
}
/* ===== INTRO OVERLAY ===== */

#hero-intro-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ALAPÁLLAPOT: SEMMI NEM LÁTSZIK */
.intro-item {
  position: absolute;
  max-width: 70vw;
  max-height: 70vh;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity .6s ease, transform .6s ease;
}

/* AKTÍV KÉP / LOGÓ */
.intro-item.show {
  opacity: 1;
  transform: scale(1);
}

/* ELTŰNŐ ÁLLAPOT */
.intro-item.hide {
  opacity: 0;
  transform: scale(1.1);
}



.hero-intro {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(90, 70, 55, 0.55);
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 15px;
}

.hero-text h1, 
.hero-text h2 {
  margin: 0;
  font-weight: 700;
  color: #fff;
}

.hero-text h1 {
  font-size: 5vw;
}

.hero-text h2 {
  font-size: 2.5vw;
  margin-top: 20px;
  color: var(--beige);
}

.hero-tagline {
  font-size: 1.6rem;
  color: #FDFBF9;
  margin-top: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

@keyframes taglineIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tagline,
.hero-buttons {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.show-hero-elements {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.cursor {
  display: inline-block;
  width: 2px;
  background-color: var(--beige);
  margin-left: 2px;
  animation: blink 0.7s steps(1) infinite;
  vertical-align: bottom;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 8vw;
    font-weight: 700;
  }

  .hero-text h2 {
    font-size: 5.5vw;
    color: var(--beige);
    margin-top: 15px;
    font-weight: 600;
  }

  .hero-tagline {
    font-size: 1.4rem;
    margin-top: 25px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 0.3px;
    padding: 0 10px;
  }
}

.hero-intro .hero-buttons {
  margin-top: 120px !important;
  display: flex !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 3rem !important;
}

.hero-intro a.hero-btn {
  all: unset !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.8rem !important;
  border-radius: 60px !important;
  cursor: pointer !important;
  font-weight: 600 !important;
  font-size: 1.25rem !important;
  letter-spacing: 0.4px !important;
  text-align: center !important;
  text-decoration: none !important;
  padding: 1.6rem 3.2rem !important;
  transition: all 0.3s ease !important;
  user-select: none !important;
}

.hero-intro a.hero-btn.primary {
  background: var(--sage) !important;
  color: var(--beige-soft) !important;
  box-shadow: var(--shadow-medium) !important;
}

.hero-intro a.hero-btn.primary:hover {
  background: var(--sage-dark) !important;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22) !important;
  transform: translateY(-3px) !important;
}

.hero-intro a.hero-btn.secondary {
  border: 2px solid var(--beige-soft) !important;
  color: #ffffff !important;
  background: transparent !important;
  box-shadow: none !important;
}

.hero-intro a.hero-btn.secondary:hover {
  background: rgba(239, 231, 220, 0.12) !important;
  box-shadow: var(--shadow-soft) !important;
  transform: translateY(-3px) !important;
}

.hero-intro a.hero-btn i {
  font-size: 1.4rem !important;
}

@media (max-width: 768px) {
  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
    font-size: 16px;
    padding: 12px 0;
  }

  .hero-btn i {
    margin-right: 6px;
  }
}

/* =========================
   GALLERY INTRO – HOTELES TIPOGRÁFIA
========================= */

.premium-destinations-section {
  background: #EDEAE3;
  padding: 90px 0;
}

.gallery-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

.gallery-intro {
  text-align: center;
  margin-bottom: 80px;
}

.gallery-intro .section-title {
  font-size: 32px;              /* ugyanaz mint hotels h1 */
  font-weight: 600;
  color: #3F5C4B;
  margin-bottom: 14px;
}

.gallery-intro .lead {
  font-size: 16px;              /* hotel-lead méret */
  color: #4E4E4E;
  margin-bottom: 40px;
}

.gallery-intro p {
  font-size: 15px;              /* hotel-desc méret */
  line-height: 1.7;
  color: #4E4E4E;
  margin-bottom: 14px;
}

/* MOBILE */
@media (max-width: 768px) {

  .gallery-intro {
    margin-bottom: 60px;
  }

  .gallery-intro .section-title {
    font-size: 26px;
  }

  .gallery-intro .lead {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .gallery-intro p {
    font-size: 14px;
  }
}

footer {
  color: var(--beige);
  background: linear-gradient(180deg, #1f3b32 0%, #0e1d18 100%);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -10%;
  width: 120%;
  height: 160%;
  background: radial-gradient(
    circle at 30% 40%,
    rgba(122, 173, 150, 0.18),
    transparent 70%
  );
  z-index: 0;
}

.footer-top {
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}

.footer-item h4 {
  color: var(--beige);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-item p,
.footer-item a,
.footer-item ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.6rem;
  transition: 0.3s ease;
  text-decoration: none;
}

.footer-item a:hover {
  color: var(--beige);
}

.footer-bottom {
  background-color: rgba(0,0,0,0.35);
  font-weight: 500;
  font-size: 1.6rem;
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  color: var(--beige) !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 80px;
    max-width: 900px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer-item ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-item ul li {
  margin-bottom: 1.4rem;
}

.social-icon {
  display: flex;
  gap: 1.2rem;
  padding: 0;
  list-style: none;
}

.social-icon li a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255,255,255,0.10);
  color: var(--beige);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s ease;
}

.social-icon li a:hover {
  background-color: rgba(150, 200, 170, 0.25); 
  box-shadow: 0 0 12px rgba(150, 200, 170, 0.4);
  transform: translateY(-3px);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 1rem 2rem;
}

.footer-links-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-grid li {
  margin-bottom: 1.2rem;
}

.footer-item,
.footer-item * {
  text-align: left !important;
}


.go-top {
  position: fixed;
  bottom: 2em;
  right: 2em;
  z-index: 99999;
  background: var(--sage);
  color: #ffffff;
  font-size: 28px;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 50%;
  box-shadow: var(--shadow-medium);
  transition: all 0.35s ease-in-out;
  display: none;
}

.go-top:hover {
  transform: translateY(-4px);
  background: var(--sage-dark);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .go-top {
    bottom: 1.5em;
    right: 1.5em;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
  }
}

.btn-row {
  margin-top: 80px !important;
}

.btn-row .hero-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  border-radius: 50px;
  padding: 1.6rem 3.2rem;
  font-size: 1.25rem;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: all 0.25s ease;
  background-color: var(--sage);
  color: var(--beige-soft);
  border: none;
}

.btn-row .hero-btn i {
  color: currentColor;
  font-size: 1.4rem;
  transition: color 0.25s ease;
  margin-right: 6px;
}

.btn-row .hero-btn:hover {
  background-color: var(--sage-dark);
  box-shadow: var(--shadow-medium);
  transform: translateY(-3px);
}

.btn-row .hero-btn:hover i {
  color: var(--beige-soft);
}

@media (max-width: 768px) {
  .btn-row {
    margin-top: 100px !important;
  }

  .btn-row .hero-btn {
    width: 100%;
    max-width: 320px;
    font-size: 1.1rem;
    padding: 1.4rem 2.6rem;
  }
}

@media (max-width: 768px) {
  .hero-buttons {
    margin-top: 70px !important;
    gap: 2.5rem !important;
  }
}