/* ==========================================================================
   Fenyves Balatoni Nyaraló - Stíluslap (CSS3)
   Téma: Balatoni Természet & Retro Déli Part Vibe
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Shrikhand&display=swap');

/* --- Design Tokens / Színpaletta & Változók --- */
:root {
  /* Színek a Balaton vízpartjáról */
  --pine-dark: #123324;          /* Sötétzöld mint a fenyőfák */
  --pine-medium: #1b4d37;
  --grass-light: #52a443;        /* Világoszöld mint a fű */
  --grass-soft: #eaf5e9;
  --balaton-blue: #0f5257;       /* Kék és haragoszöld mint a Balaton */
  --balaton-storm: #143e49;
  --balaton-teal: #1d7a82;
  --balaton-cyan: #4bb3b2;
  --cloud-white: #f8faf9;        /* Fehér mint a felhők */
  --cloud-pure: #ffffff;
  --sunset-orange: #f4a261;      /* Narancssárga mint a naplemente */
  --sunset-coral: #e76f51;
  --sunset-glow: #ffa96b;
  
  /* Semleges tonusok */
  --text-dark: #1d2d27;
  --text-muted: #4e635a;
  --text-light: #f4f8f6;
  --border-light: rgba(20, 50, 36, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
  --shadow-sm: 0 4px 12px rgba(18, 51, 36, 0.06);
  --shadow-md: 0 10px 30px rgba(18, 51, 36, 0.12);
  --shadow-lg: 0 20px 40px rgba(14, 40, 28, 0.18);
  --shadow-glow: 0 0 25px rgba(244, 162, 97, 0.4);

  /* Typografia & Méretek */
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-retro: 'Shrikhand', cursive, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Alapbeállítások & Reszet --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--cloud-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .font-heading {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  color: var(--pine-dark);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Gombok & Jelvények --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-coral));
  color: var(--cloud-pure);
  box-shadow: 0 8px 20px rgba(231, 111, 81, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(231, 111, 81, 0.45);
  background: linear-gradient(135deg, var(--sunset-glow), var(--sunset-orange));
}

.btn-secondary {
  background: var(--pine-dark);
  color: var(--cloud-pure);
}

.btn-secondary:hover {
  background: var(--pine-medium);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(18, 51, 36, 0.3);
}

.btn-outline {
  background: transparent;
  border-color: var(--cloud-pure);
  color: var(--cloud-pure);
}

.btn-outline:hover {
  background: var(--cloud-pure);
  color: var(--pine-dark);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-retro {
  background: var(--sunset-orange);
  color: var(--pine-dark);
  box-shadow: var(--shadow-sm);
}

.badge-pine {
  background: var(--grass-soft);
  color: var(--pine-dark);
  border: 1px solid rgba(82, 164, 67, 0.3);
}

.badge-balaton {
  background: rgba(29, 122, 130, 0.15);
  color: var(--balaton-blue);
  border: 1px solid rgba(29, 122, 130, 0.3);
}

/* --- Kapu / Jelszó Védelmi Képernyő --- */
.login-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(135deg, var(--pine-dark) 0%, var(--balaton-storm) 50%, var(--pine-medium) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow-y: auto;
}

.login-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.login-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--grass-light), var(--balaton-cyan), var(--sunset-orange));
}

.login-logo {
  font-family: var(--font-retro);
  font-size: 2.2rem;
  color: var(--pine-dark);
  margin-bottom: 0.2rem;
}

.login-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.input-group {
  position: relative;
  text-align: left;
}

.input-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pine-dark);
  margin-bottom: 0.4rem;
  display: block;
}

.input-field {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-md);
  border: 2px solid rgba(18, 51, 36, 0.15);
  font-family: var(--font-main);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
  background: var(--cloud-pure);
}

.input-field:focus {
  border-color: var(--balaton-teal);
  box-shadow: 0 0 0 4px rgba(29, 122, 130, 0.15);
}

.login-error {
  background: #fde8e8;
  color: #c53030;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
}

/* --- Fejléc / Navigáció --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 2rem;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(18, 51, 36, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.8rem 2rem;
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cloud-pure);
}

.nav-logo-text {
  font-family: var(--font-retro);
  font-size: 1.8rem;
  letter-spacing: -0.5px;
  color: var(--sunset-orange);
}

.nav-logo-sub {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.9;
  border-left: 2px solid rgba(255, 255, 255, 0.3);
  padding-left: 0.6rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.3rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sunset-orange);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--cloud-pure);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cloud-pure);
  font-size: 1.8rem;
  cursor: pointer;
}

/* --- Hero Szekció --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(18, 51, 36, 0.82) 0%, rgba(15, 82, 87, 0.75) 100%),
              url('../assets/images/part/IMG_7746.jpg') center/cover no-repeat;
  color: var(--cloud-pure);
  padding: 8rem 1.5rem 4rem;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(18, 51, 36, 0.6) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-badge-wrap {
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--cloud-pure);
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-title span {
  color: var(--sunset-orange);
  font-family: var(--font-retro);
  font-weight: normal;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  max-width: 750px;
  margin: 0 auto 2.5rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-feature-pill {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 3;
}

.hero-wave-bottom svg {
  width: 100%;
  height: 60px;
  fill: var(--cloud-white);
}

/* --- Általános Szekció Stílusok --- */
.section {
  padding: 6rem 1.5rem;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 4rem;
}

.section-header .section-tag {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grass-light);
  margin-bottom: 0.6rem;
  display: block;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  color: var(--pine-dark);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* --- Bemutatkozás Szekció --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-card {
  background: var(--cloud-pure);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  position: relative;
}

.about-card::before {
  content: '★ BALATONI ÉLMÉNY ★';
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--sunset-orange);
  color: var(--pine-dark);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.2rem 0.8rem;
  border-radius: var(--radius-full);
}

.about-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  color: var(--pine-dark);
}

.about-card p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.about-images-wrapper {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.about-img-main img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: var(--transition);
}

.about-img-main:hover img {
  transform: scale(1.03);
}

.about-img-sub {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 55%;
  border-radius: var(--radius-md);
  border: 5px solid var(--cloud-pure);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.about-img-sub img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* --- Nyaraló Jellemzők (Specs & Amenities) Szekció --- */
.bg-light-green {
  background-color: var(--grass-soft);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--cloud-pure);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(82, 164, 67, 0.15);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--grass-light);
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(82, 164, 67, 0.15), rgba(29, 122, 130, 0.15));
  color: var(--pine-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--pine-dark);
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Szobák & Alvási Kapacitás kiemelt kártya */
.spec-highlight-box {
  margin-top: 3rem;
  background: linear-gradient(135deg, var(--pine-dark), var(--balaton-storm));
  color: var(--cloud-pure);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  box-shadow: var(--shadow-lg);
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.spec-item-icon {
  font-size: 2rem;
  color: var(--sunset-orange);
  line-height: 1;
}

.spec-item h4 {
  color: var(--cloud-pure);
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.spec-item p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

/* --- 3D Látványterv & Alaprajz Szekció --- */
.plan-section {
  background: var(--cloud-white);
}

.plan-wrapper {
  background: var(--cloud-pure);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  border: 1px solid var(--border-light);
}

.plan-img-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.08);
  position: relative;
  cursor: pointer;
}

.plan-img-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.plan-img-container:hover img {
  transform: scale(1.02);
}

.plan-zoom-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 51, 36, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cloud-pure);
  opacity: 0;
  transition: var(--transition);
  font-weight: 600;
  gap: 0.5rem;
}

.plan-img-container:hover .plan-zoom-overlay {
  opacity: 1;
}

.plan-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.plan-list {
  list-style: none;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.plan-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  color: var(--text-dark);
}

.plan-list li i {
  color: var(--grass-light);
  font-weight: bold;
}

/* --- Fotógaléria Szekció --- */
.gallery-section {
  background: var(--cloud-white);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  background: var(--cloud-pure);
  border: 1.5px solid var(--border-light);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--pine-dark);
  color: var(--cloud-pure);
  border-color: var(--pine-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  background: #e2e8e5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 51, 36, 0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  color: var(--cloud-pure);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
}

.gallery-tag {
  font-size: 0.8rem;
  color: var(--sunset-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Lightbox Modal (Nagyító & Léptető) --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 25, 18, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 1100px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.lightbox-img-wrap {
  position: relative;
  max-width: 100%;
  max-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  touch-action: pan-y pinch-zoom;
}

.lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transition: transform 0.2s ease-out;
}

.lightbox-controls {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  color: var(--cloud-pure);
  max-width: 900px;
}

.lightbox-counter {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sunset-orange);
  background: rgba(0, 0, 0, 0.4);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(244, 162, 97, 0.3);
}

.lightbox-btn {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--cloud-pure);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.lightbox-btn:hover {
  background: var(--sunset-orange);
  color: var(--pine-dark);
}

.lightbox-close {
  position: absolute;
  top: -60px;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--cloud-pure);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  font-size: 1.4rem;
  cursor: pointer;
}

.lightbox-close:hover {
  background: #e76f51;
}

.lightbox-nav-prev, .lightbox-nav-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-nav-prev { left: -70px; }
.lightbox-nav-next { right: -70px; }

/* Mobil Swipe Útmutató Jelvény */
.mobile-swipe-hint {
  display: none;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  align-items: center;
  gap: 0.4rem;
}

/* --- Üdülő & Környék Szekció --- */
.resort-section {
  background: linear-gradient(135deg, var(--pine-dark) 0%, var(--balaton-storm) 100%);
  color: var(--cloud-pure);
}

.resort-section .section-header h2 {
  color: var(--cloud-pure);
}

.resort-section .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.resort-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.resort-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  transition: var(--transition);
}

.resort-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
}

.resort-card h3 {
  color: var(--sunset-orange);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.resort-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.6;
}

/* --- Kapcsolat / Érdeklődés Szekció --- */
.contact-section {
  background: var(--cloud-white);
}

.contact-card {
  background: var(--cloud-pure);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--grass-soft);
  color: var(--pine-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--pine-dark);
}

.form-control {
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(18, 51, 36, 0.18);
  font-family: var(--font-main);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--balaton-teal);
  box-shadow: 0 0 0 3px rgba(29, 122, 130, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-feedback {
  display: none;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 500;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.form-feedback:not(:empty) {
  display: flex;
}

.form-feedback--success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.form-feedback--error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}


/* --- Lábléc (Footer) --- */
.footer {
  background: var(--pine-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 1.5rem 1.5rem;
  border-top: 4px solid var(--sunset-orange);
  text-align: center;
}

.footer-logo {
  font-family: var(--font-retro);
  font-size: 2rem;
  color: var(--sunset-orange);
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  margin: 1.5rem 0;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--cloud-pure);
}

.footer-copy {
  font-size: 0.85rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Reszponzív Nézet Módosítások (Mobile & Tablet) --- */
@media (max-width: 992px) {
  .about-grid, .plan-wrapper, .contact-card {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-img-sub {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    margin-top: 1rem;
    border-width: 3px;
  }
  
  .lightbox-nav-prev { left: 10px; }
  .lightbox-nav-next { right: 10px; }
  .mobile-swipe-hint { display: flex; }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.2rem;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--pine-dark);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    clip-path: circle(0% at 100% 0);
    transition: clip-path 0.4s ease-in-out;
  }
  
  .nav-menu.active {
    clip-path: circle(140% at 100% 0);
  }
  
  .hero {
    padding-top: 7rem;
  }
  
  .spec-highlight-box {
    padding: 1.8rem;
  }
  
  .contact-card {
    padding: 1.8rem;
  }
  
  .lightbox-nav-prev, .lightbox-nav-next {
    display: none; /* Mobilon gesztus alapú léptetés */
  }
}
