/* ==========================================================================
   LUBRICUS ARCULATI KÓD - VÉGLEGES VERZIÓ (2026)
   FIX: Nagyobb főoldali kép + FELE AKKORA (275px) portré a Rólam oldalon
   ========================================================================== */

:root {
  --bg-friendly-blue: #eaf3f7;   /* A régi, megnyugtató világoskék háttér */
  --card-white: #FFFFFF;
  --primary-teal: #009688;       /* A jól ismert meleg, megnyugtató teal zöld */
  --accent-orange: #F7882F;      /* Az energetizáló, hívogató narancssárga a gomboknak */
  --accent-orange-hover: #E2721B;
  --text-dark: #222222;          /* Kiválóan olvasható, kontrasztos sötétszürke */
  --text-muted: #556370;
  --footer-dark: #202b2a;        /* A régi, elegáns sötét zöldes-fekete lábléc */
  --border-color: #D1E1E8;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-friendly-blue) !important;
  color: var(--text-dark) !important;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 17px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

/* --- HEADER ÉS NAVIGÁCIÓ (BARÁTSÁGOS ZÖLD) --- */
header {
  background-color: var(--primary-teal) !important;
  padding: 1.6rem 0;
  box-shadow: 0 2px 8px rgba(0, 150, 136, 0.15);
}

.navbar {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}

.logo-area {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.site-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--card-white) !important;
  letter-spacing: -0.02em;
}

.navbar .tagline {
  font-size: 1rem;
  color: #E0F2F1;
  font-weight: 500;
  line-height: 1.4;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul li a {
  color: var(--card-white) !important;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 1.1rem;
}

nav ul li a:hover,
nav ul li.active a {
  color: var(--accent-orange) !important;
}

/* --- KÖZPONTI TARTALOMTERÜLET --- */
.page-container {
  width: 100%;
  max-width: 1140px;
  margin: 3rem auto;
  padding: 0 1.5rem;
  flex: 1;
}

.main-content-flow {
  background-color: var(--card-white) !important;
  padding: 3.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

/* --- ÜTŐS, NAGY FELIRATOK ÉS CÍMSOROK --- */
main h1 {
  font-size: 2.8rem !important; 
  color: var(--primary-teal) !important;
  font-weight: 800 !important;
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

main h2 {
  font-size: 2.1rem !important; 
  color: var(--primary-teal) !important;
  font-weight: 700 !important;
  margin-top: 3rem;
  margin-bottom: 1.3rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.callout h4, main h4 {
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  margin-bottom: 1rem;
}

main p {
  margin-bottom: 1.5rem;
}

main ul, main ol {
  margin-bottom: 1.8rem;
  padding-left: 1.5rem;
}

main ul li {
  margin-bottom: 0.5rem;
}

/* --- FINOMHANGOLT KÉPMÉRETEZÉS --- */
main img {
  max-width: 100% !important;
  height: auto !important;
}

/* A főoldali nagyméretű kép (Hangsúlyos: 720px) */
main img.thumbnail {
  display: block !important;
  width: 100% !important;
  max-width: 720px !important; 
  height: auto !important;
  margin: 2.5rem auto !important; 
  border-radius: 12px !important;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06) !important;
}

/* FIX: A Rólam oldali portrékép (FELE AKKORA: 275px, középre igazítva) */
.floated-img {
  display: block !important;
  width: 100% !important;
  max-width: 275px !important; 
  height: auto !important;
  margin: 2.5rem auto !important;
  float: none !important; 
  border-radius: 12px !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06) !important;
}

/* A Dorn képek és egyéb szövegközi elemek megmaradnak az eredeti kis méretben */
.dorn-img {
  display: inline-block !important;
  max-width: 170px !important; 
  width: 100% !important;      
  height: auto !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
}

/* Szöveg körbefolyatása a kis képekhez (pl. Dorn) */
.float-left {
  float: left !important;
  margin: 0 1.8rem 1.2rem 0 !important;
}

.float-right {
  float: right !important;
  margin: 0 0 1.2rem 1.8rem !important;
}

/* --- IDŐPONT GOMBOK ÉS CTA ELEMEK (MELEG NARANCS) --- */
.modern-booking-btn, .button, .direct-link {
  background-color: var(--accent-orange) !important;
  color: var(--card-white) !important;
  padding: 0.9rem 1.8rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none !important;
  display: inline-block;
  margin-top: 1.2rem;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(247, 136, 47, 0.25) !important;
  transition: all 0.2s ease-in-out;
  text-align: center;
  border: none;
}

.modern-booking-btn:hover, .button:hover, .direct-link:hover {
  background-color: var(--accent-orange-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(247, 136, 47, 0.35) !important;
}

/* --- ÁRLISTA TÁBLÁZAT --- */
.price-list {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: var(--card-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border-color);
}

.price-list thead th {
  background-color: var(--primary-teal) !important;
  color: var(--card-white) !important;
  font-weight: 700;
  padding: 1.1rem 1.25rem;
  text-align: left;
}

.price-list td {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
}

.price-list tbody tr:nth-child(odd) {
  background-color: #F9FBFB;
}

.price-list tbody tr:hover {
  background-color: #EAF3F7;
}

/* --- BARÁTSÁGOS MEGA-FOOTER LÁBLÉC --- */
.main-site-footer {
  background-color: var(--footer-dark) !important;
  color: #E0E7E9;
  padding: 4.5rem 1.5rem 2rem 1.5rem;
  margin-top: auto;
}

.footer-grid-container {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 4rem;
}

.footer-title {
  color: var(--card-white) !important;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 35px;
  height: 3px;
  background-color: var(--accent-orange);
  border-radius: 2px;
}

.footer-important-notice {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-orange);
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-info-list {
  list-style: none !important;
  padding-left: 0 !important;
}

.footer-info-list li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.footer-info-list a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
}

.footer-info-list a:hover {
  color: var(--accent-orange);
  text-decoration: underline;
}

.footer-navigation-grid {
  list-style: none !important;
  padding-left: 0 !important;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.footer-navigation-grid a {
  color: #B0C4C7;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s ease, padding 0.2s ease;
}

.footer-navigation-grid a:hover, .active-footer-link {
  color: var(--card-white) !important;
  padding-left: 4px;
}

.highlight-weekend {
  background: var(--accent-orange);
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  display: inline-block;
  margin-top: 4px;
}

/* --- FOOTER FORMA DIZÁJN --- */
.footer-form-text {
  font-size: 0.95rem;
  color: #B0C4C7;
  margin-bottom: 1.2rem;
}

.modern-footer-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.modern-footer-form input,
.modern-footer-form textarea {
  width: 100%;
  background-color: #2C3A39;
  border: 1px solid #3A4C4A;
  border-radius: 6px;
  padding: 0.75rem;
  color: var(--card-white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

.modern-footer-form input:focus,
.modern-footer-form textarea:focus {
  outline: none;
  border-color: var(--accent-orange);
}

.modern-footer-form textarea {
  height: 90px;
  resize: none;
}

.form-submit-btn {
  background-color: transparent;
  color: var(--card-white);
  border: 2px solid var(--accent-orange);
  padding: 0.75rem;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

.form-submit-btn:hover {
  background-color: var(--accent-orange);
}

.footer-copyright-bar {
  max-width: 1140px;
  margin: 4rem auto 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid #3A4C4A;
  text-align: center;
  font-size: 0.9rem;
  color: #839799;
}

/* --- COOKIE SÁV --- */
.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-teal);
  color: var(--card-white);
  padding: 1.2rem;
  font-size: 0.95rem;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
}

#cookie-accept {
  background-color: var(--accent-orange);
  color: var(--card-white);
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

#cookie-accept:hover {
  background-color: var(--accent-orange-hover);
}

/* --- POPUP ELŐUGRÓ ABLAK --- */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(32, 43, 42, 0.5);
  backdrop-filter: blur(3px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.popup-content {
  background: var(--card-white);
  padding: 2.5rem;
  max-width: 440px;
  width: 90%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  text-align: center;
}

.popup-content h2 {
  color: var(--primary-teal);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.popup-content button {
  margin-top: 1.8rem;
  padding: 0.8rem 2rem;
  background-color: var(--primary-teal);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.popup-content button:hover {
  background-color: var(--accent-orange);
}

/* --- RESPONSIVE NÉZET --- */
@media (max-width: 960px) {
  .footer-grid-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .navbar {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
  }
  .main-content-flow {
    padding: 2rem;
  }
}

@media (max-width: 700px) {
  .main-content-flow {
    padding: 1.5rem;
  }
  .dorn-img, .float-left, .float-right {
    float: none !important;
    display: block !important;
    margin: 1.5rem auto !important;
    max-width: 220px !important; 
  }
  main img.thumbnail, .floated-img {
    float: none !important;
    display: block !important;
    margin: 1.5rem auto !important;
    max-width: 100% !important;
  }
  .price-list, .price-list tbody, .price-list tr, .price-list td {
    display: block;
    width: 100%;
  }
  .price-list tr {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
  }
  .price-list thead {
    display: none;
  }
  .price-list td {
    text-align: right;
    position: relative;
    padding-left: 50%;
    border-bottom: 1px solid var(--border-color);
  }
  .price-list td::before {
    content: attr(data-label);
    position: absolute;
    left: 1rem;
    font-weight: 700;
    color: var(--primary-teal);
  }
}