/* ===== ALAPOK Ã‰S RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  height: 100%;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

/* ===== TIPOGRÃFIA ===== */
:root {
  --font-xl: 48px;
  --font-lg: 32px;
  --font-md: 20px;
  --font-sm: 16px;
}

h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.8em;
  text-align: center;
}

h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0;
  text-align: center;
}

h3 {
  font-size: 30px;
  line-height: 1.35;
  font-weight: 500;
  margin: 0.15em 0 0.75em;
  text-align: center;
}

p {
  font-size: var(--font-md);
  margin-bottom: 1.2em;
  font-weight: 300;
}

.small-text {
  font-size: 13px;
  opacity: 0.85;
}

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

.no-bottom-space {
  margin-bottom: 0 !important;
}

/* ===== KONTÃ‰NER ===== */
.container {
  max-width: 98%;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SLIDESHOW HÃTTÃ‰R ===== */
.slideshow-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide.active {
  opacity: 1;
}

.desktop-slide {
  display: block;
}

.mobile-slide {
  display: none;
}

/* ===== MENÃœ RENDSZER ===== */

/* Hamburger menÃ¼ gomb (mobilon) */
.hamburger {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  margin-left: auto;
}

.hamburger span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: #ffffff;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 12px;
}

.hamburger span:nth-child(2) {
  top: 19px;
}

.hamburger span:nth-child(3) {
  top: 26px;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
  top: 19px;
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
  top: 19px;
}

/* MenÃ¼ overlay (slideshow-val) */
.menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), transparent);
  padding: 16px 0;
}


.menu-overlay-static .menu-link,
.menu-overlay-static .submenu-toggle {
  color: #ffffff;
}

/* Desktop menÃ¼ elrendezÃ©s */
.menu-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.menu-section {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 24px;
}

.menu-link,
.submenu-toggle {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.menu-link:hover,
.submenu-toggle:hover {
  color: #d1d5db;
}

/* Dropdown menÃ¼ */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: rgba(255, 255, 255, 0.97);
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-radius: 10px;
  padding: 8px 0;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: #333333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.2s;
}

.dropdown-content a:hover {
  background-color: rgba(0, 0, 0, 0.06);
}

/* ===== LOGÃ" ===== */
.logo-container {
  display: inline-block;
  position: relative;
  text-decoration: none;
}

.logo-img {
  width: 120px;
  height: auto;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  background: none !important;
}

.logo-container:hover .logo-img {
  transform: scale(1.06);
  filter: brightness(1.15);
}

/* ===== IKONOK ===== */
.icon {
  width: 20px;
  height: 20px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Social & Language ikonok hover effekt */
.social-icons a,
a[href$="english.png"] {
  position: relative;
  display: inline-block;
}

.social-icons a img,
a[href$="english.png"] img {
  display: block;
  width: 20px;
  height: 20px;
  transition: opacity 0.4s ease-in-out;
}

.social-icons a::after,
a[href$="english.png"]::after {
  content: '';
  position: absolute;
  inset: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.social-icons a:hover img,
a[href$="english.png"]:hover img {
  opacity: 0;
}

.social-icons a:hover::after,
a[href$="english.png"]:hover::after {
  opacity: 1;
}

/* Hover ikonok hÃ¡ttÃ©rkÃ©pei */
.social-icons a[href*="facebook.com"]::after {
  background-image: url("menu/facebook-hover.png");
}

.social-icons a[href*="instagram"]::after {
  background-image: url("menu/instagram-hover.png");
}

.social-icons a[href*="email"]::after,
.social-icons a[href^="mailto:"]::after {
  background-image: url("menu/email-hover.png");
}

a[href*="english.html"]::after {
  background-image: url("menu/english-hover.png");
}

/* ===== HERO SZEKCIÃ" (fÅ'oldal) ===== */
.hero-text-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 50;
  pointer-events: none;
  padding-left: 7%;
}

.hero-text {
  text-align: center;
  color: #ffffff;
  max-width: 28rem;
}

.hero-title {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-description {
  font-size: 20px;
  font-weight: 300;
  opacity: 0.9;
  line-height: 1.5;
}

/* ===== MAIN TARTALOM ===== */
main {
  background-color: #000000;
  color: #F3E8D3;
}

/* Csomagok oldal main hÃ¡ttere */
.packages-main {
  background:
    radial-gradient(
      circle at center,
      #601a25 0%,
      #4f131f 55%,
      #2b060d 100%
    );
  color: #F3E8D3;
}


/* ===== PORTFÃ"LIÃ" SZEKCIÃ" ===== */
.portfolio-section {
  padding: 80px 0;
}

#experience-portraits.portfolio-section {
  padding-bottom: 20px;
}

.section-title {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}


.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-item {
  aspect-ratio: 2 / 3;
  background: #000000;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-4px);
}

.portfolio-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* PortrÃ© container speciÃ¡lis stÃ­lus */
.portre-container {
  background: #000;
  color: #000;
  text-align: center;
}

.portre-container .portfolio-intro {
  background-color: #d8c3a5;
  display: inline-block;
  max-width: 800px;
  margin: 40px auto;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  color: #000;
}

.portre-container .portfolio-grid {
  background: #000;
  padding: 20px 0;
}

/* ===== INTRO BLOKK ===== */
.intro-block {
  padding: 80px 0;
  background-color: #d1bfb5;
  text-align: center;
  color: #1f2937;
}

.intro-content {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 24px;
}

.intro-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #6e0606;
}

.intro-text {
  margin-bottom: 8px;
}

/* ===== GALÃ‰RIA (RobVic â€" One-Row Gallery) ===== */
.gallery-section {
padding: 0 0;
margin: 0;

}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 2 / 3;
  transition: transform 0.3s ease;
}

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

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}



/* ===== FOOTER ===== */
.site-footer {
  background-color: #111827;
  color: #ffffff;
  padding: 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

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

.footer-main-link {
  font-size: 18px;
  color: #F3E8D3;
  text-decoration: none;
  transition: color 0.3s;
  display: block;
  margin-bottom: 12px;
}

.footer-main-link:hover {
  color: #d1d5db;
}

.footer-sublinks {
  margin-top: 12px;
}

.footer-sublinks div {
  margin-bottom: 4px;
}

.footer-sublinks a {
  font-size: 14px;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-sublinks a:hover {
  color: #d1d5db;
}

.footer-static-title {
  font-size: 18px;
  color: #cccccc;
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  cursor: default;
  text-decoration: none;
}

.footer-static-title:hover {
  color: #cccccc;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 32px;
  text-align: center;
  color: #9ca3af;
}

/* ===== RÃ"LUNK OLDAL SPECIÃLIS STÃLUSOK ===== */

/* Háttér a Rólunk oldalon */
body.page-rolunk main,
body.page-rolunk .intro-block {
  background:
    radial-gradient(
      circle at center,
      #601a25 0%,
      #4f131f 55%,
      #2b060d 100%
    );
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent !important;
  color: #ffffff;
}

body.page-rolunk .menu-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0));
}

/* About szekciÃ³ */
.about-section {
  padding: 100px 0 20px;
  min-height: 100vh;
}

.about-intro {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}

.about-title {
  font-size: 48px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 40px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.about-content {
  background: #d1bfb5;
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-content p {
  font-size: 20px;
  line-height: 1.8;
  color: #3d1700;
  margin-bottom: 24px;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-content em {
  font-style: italic;
  
}
.about-content2 {
  background: #000000;
  backdrop-filter: blur(10px);
  padding: 10px;
  border-radius: 50px;

}

.about-content2 p {
  font-size: 20px;
  line-height: 1.8;
  color: #d1bfb5;
  margin-bottom: 24px;
}

.about-content2 p:last-child {
  margin-bottom: 0;
}

.about-content2 em {
  font-style: italic;
  
}
.highlight-text {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  display: block;
  margin: 32px 0;
}

/* About Me szekciÃ³ fotÃ³val */
.about-me-section {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 0;
  align-items: start;
}

.about-photo {
  position: sticky;
  top: 100px;
}

.profile-photo {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.about-text {
  background-color: #d1bfb5;
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-text h2 {
  font-size: 32px;
  font-weight: 600;
  color: #611a27;
  margin-bottom: 24px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #3d1700;
  margin-bottom: 20px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-text strong {
  color: #ffffff;
  font-weight: 700;
}

.current-focus {
  background: rgba(255, 255, 255, 0.55);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #611a27;
  margin: 24px 0 !important;
}

.coming-soon {
  font-size: 16px;
  font-style: italic;
  opacity: 0.9;
}

/* Kapcsolat szekciÃ³ */
.contact-section {
  padding: 80px 0;
  
}

.contact-box {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(209, 191, 181, 1);
  padding: 60px;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 1);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
}

.contact-title {
  font-size: 36px;
  font-weight: 600;
  color: #611a27;
  text-align: center;
  margin-bottom: 40px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(163, 25, 43, 0.2), rgba(163, 25, 43, 0.1));
  border-radius: 8px;
  border: 1px solid rgba(163, 25, 43, 0.3);
}

.contact-intro {
  margin-bottom: 40px;
}

.contact-intro p {
  font-size: 18px;
  line-height: 1.8;
  color: #3d1700;
  margin-bottom: 20px;
}

.contact-intro p:last-child {
  margin-bottom: 0;
}

.contact-intro strong {
  color: #611a27;
  font-weight: 600;
}

.contact-details {
  background: rgba(255, 255, 255, 0.55);
  padding: 32px;
  border-radius: 12px;
  margin: 40px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(97, 26, 39, 0.2);
  font-size: 18px;
  color: #611a27;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  font-size: 24px;
  width: 40px;
  text-align: center;
}

.contact-item a {
  color: #611a27;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #000000;
}

/* Social linkek */
.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(97, 26, 39, 0.2);
}

.social-link {
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-link:hover {
  transform: translateY(-4px);
  opacity: 0.8;
}

.social-link img {
  width: 48px;
  height: 48px;
  display: block;
}

/* ===== CSOMAGOK OLDAL SPECIÃLIS STÃLUSOK ===== */

/* Hero szekciÃ³ csomagok oldal */
.packages-hero {
  padding: 80px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(20,20,20,0.01) 100%);
}

.hero-title-pkg {
  font-size: 48px;
  font-weight: 600;
  color: #F3E8D3;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 22px;
  font-weight: 300;
  color: #d1bfb4;
  opacity: 0.9;
}

/* SzekciÃ³ stÃ­lusok */
.portrait-section,
.selfknowledge-section {
  padding: 80px 0;
}

.selfknowledge-section {
  background-color: #0a0a0a;
}

.section-intro {
  text-align: center;
  margin-bottom: 60px;
}

.section-title-main {
  font-size: 42px;
  font-weight: 600;
  color: #F3E8D3;
  margin-bottom: 24px;
}

.intro-large {
  font-size: 22px;
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.intro-emphasis {
  font-size: 20px;
  font-style: italic;
  opacity: 0.95;
  margin-top: 16px;
}

/* Szoveg blokkok */
.intro-text-block {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.intro-text-block p {
  font-size: 18px;
  line-height: 1.7;
}

/* Hangsuly doboz */
.emphasis-box {

  background: #d1bfb5;
  border-left: 4px solid #000000;
  padding: 32px;
  margin: 48px auto;
  max-width: 900px;
  border-radius: 8px;
    color: #000000;
    text-align: center;
}

.emphasis-box h3 {
  font-size: 28px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 16px;
}

.emphasis-box p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Csomagok rÃ¡cs */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 60px auto;
}

/* Csomag kÃ¡rtya */
.package-card {
  background: #d1bfb5;
  border: 1px solid #000000;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(163, 25, 43, 0.2);
}

.package-featured {
  border: 2px solid #ffffff;
  box-shadow: 0 8px 24px rgba(163, 25, 43, 0.15);
}

.package-header {
  background: linear-gradient(135deg, #6a0606, #7a1420);
  padding: 24px;
  text-align: center;
}

.package-title {
  font-size: 26px;
  font-weight: 600;
  color: #d1bfb5;
;
  margin-bottom: 8px;
}

.package-subtitle {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

.package-body {
  padding: 32px 24px;
    color: #000000;
}

.package-intro {
  font-size: 17px;
  margin-bottom: 24px;
  line-height: 1.6;
  color: #000000;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.package-features li {
  padding: 12px 0;
  border-bottom: 1px solid #2a2a2a;
  font-size: 16px;
  line-height: 1.6;
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features strong {
  color: #611a27;;
  font-weight: 600;
}

.package-note {
  font-size: 14px;
  font-style: italic;
  opacity: 0.85;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #6e0606;
}

/* ÃrazÃ¡s */
.package-pricing {
  background: rgba(163, 25, 43, 0.08);
  padding: 20px;
  border-radius: 8px;
  margin-top: 24px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.price-label {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
}

.price-original {
  font-size: 16px;
  color: #000;
  text-decoration: line-through;
  margin-right: 12px;
}

.price-special {
  font-size: 22px;
  font-weight: 700;
  color: #6a0606;
}

.intro-price-label {
  text-align: center;
  font-size: 14px;
  margin-top: 16px;
  margin-bottom: 0;
  opacity: 0.9;
}

/* Info dobozok */
.info-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.info-box {
  background: #d1bfb5;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 28px;
    color: #000000;
}

.info-box h4 {
  font-size: 20px;
  font-weight: 600;
  color: #6e0606;
  margin-bottom: 16px;
}

.info-box p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.info-box ul {
  margin: 16px 0;
  padding-left: 24px;
}

.info-box ul li {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.6;
}

.small-note {
  font-size: 14px;
  opacity: 0.8;
  font-style: italic;
  margin-top: 16px;
}

/* Önismereti intro */
.selfknowledge-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.selfknowledge-intro p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Folyamat szekció */
.process-section {
  max-width: 900px;
  margin: 60px auto;
  background: #d1bfb5;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 40px;
}

.process-section h3 {
  font-size: 28px;
  font-weight: 600;
  color: #6e0606;
  margin-bottom: 32px;
  text-align: center;
}

.process-step {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #2a2a2a;
}

.process-step:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.process-step h4 {
  font-size: 22px;
  font-weight: 600;
  color: #6e0606;
  margin-bottom: 16px;
}

.process-step p {
  font-size: 17px;
     color: #000000;
  line-height: 1.7;
  margin-bottom: 12px;
}

.process-step ul {
  margin: 16px 0;
  padding-left: 24px;
}

.process-step ul li {
   font-size: 17px;
     color:#6e0606;
    line-height: 1.7;
  margin-bottom: 12px;
  text-indent: 20px;
  list-style-position: inside;
  padding-left: 20px;
}

}

}

/* Ajánló program szekció */
.referral-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(163, 25, 43, 0.1), rgba(163, 25, 43, 0.05));
}

.referral-box {
  max-width: 900px;
  margin: 0 auto;
  background: #d1bfb5;
  border: 2px solid #361501;
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(163, 25, 43, 0.2);
}

.referral-box h2 {
  font-size: 32px;
  font-weight: 600;
  color: #6e0606 !important;
  margin-bottom: 24px;
   
}

.referral-intro {
  font-size: 20px;
  margin-bottom: 24px;
    color: #000000;
}

.referral-benefits {
  margin: 32px 0;
  text-align: left;
     color: #000000;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.6);
  padding: 20px;
  margin-bottom: 16px;
  border-radius: 8px;
  border-left: 4px solid #6e0606;
;
  font-size: 17px;
  line-height: 1.6;
}

.benefit-item:last-child {
  margin-bottom: 0;
}

.referral-closing {
  font-size: 19px;
  font-weight: 500;
  margin-top: 32px;
  margin-bottom: 0;
    color: #6e0606;
    font-weight: 600;
}

/* Hogyan működik szekció */
.how-it-works {
  padding: 80px 0;
 background:
  radial-gradient(
    circle at center,
    #7a2331 0%,   /* világosabb közép */
    #66202a 55%,  /* átmenet */
    #3a0a14 100%  /* sötét perem kissé világosítva */
  );


}

.how-it-works h2 {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  color: #d1bfb5;

  margin-bottom: 48px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.step-card {
  background: #d1bfb5;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
}

.step-number {
  width: 60px;
  height: 60px;
  background: #6e0606;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.step-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 16px;
}

.step-card p {
  font-size: 17px;
    color: #000000;
  line-height: 1.6;
  margin-bottom: 0;
}

.outdoor-note {
  text-align: center;
  font-size: 16px;
  max-width: 800px;
      color: #ffffff;
  margin: 0 auto;
  opacity: 0.9;
}

/* Záró CTA szekció */
.final-cta {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(20,20,20,1) 100%);
  text-align: center;
}

/* Átmeneti szöveg */
.transition-text {
  max-width: 900px;
  margin: 60px auto;
  text-align: center;
  padding: 40px;
  background: #d1bfb5;
     color: #361501;
  
  border-radius: 12px;
  border: 1px solid rgba(163, 25, 43, 0.2);
}

.transition-text p {
  font-size: 18px;
  line-height: 1.8;
      font-weight: 600;
  margin-bottom: 20px;
}

.transition-text p:last-child {
  margin-bottom: 0;
}

/* Csomagok alcím */
.packages-subtitle {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  color: #d1bfb5;
  margin: 60px 0 40px;
}

/* Felelősség kizárás jegyzet */
.disclaimer-note {
  text-align: center;
  font-size: 14px;
  font-style: italic;
  opacity: 0.85;
  color: #611a27;
  max-width: 800px;
  margin: 40px auto 0;
  padding: 20px;
  background:#d1bfb5;
  border-radius: 8px;
}

.cta-text {
  font-size: 20px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 24px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #a8192b, #7a1420);
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  padding: 16px 48px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(163, 25, 43, 0.3);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .hamburger {
    display: block;
  }

  .menu-container {
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
    border-radius: 12px;
    padding: 12px;
    margin-top: 8px;
  }

  .menu-container.open {
    display: grid;
  }

  .logo-container {
    order: -1;
    margin: 8px 0 12px;
  }

  .menu-section {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
  }

  .dropdown .dropdown-content {
    display: none;
    position: static;
    box-shadow: none;
    background: transparent;
    padding: 0;
    transform: none;
  }

  .dropdown.open .dropdown-content {
    display: block;
    margin-top: 6px;
  }

  .dropdown-content a {
    color: rgba(255, 255, 255, 0.95);
    padding: 8px 0 8px 16px;
  }

  .dropdown-content a:hover {
    background: transparent;
    color: #d1d5db;
  }

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

  .hero-description {
    font-size: 16px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title-pkg {
    font-size: 38px;
  }

  .section-title-main {
    font-size: 36px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .about-me-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-photo {
    position: relative;
    top: 0;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  /* Slideshow mobilra váltás */
  .desktop-slide {
    display: none;
  }
  
  .mobile-slide {
    display: block;
  }

  /* Typography */
  :root {
    --font-xl: 32px;
    --font-lg: 24px;
    --font-md: 18px;
    --font-sm: 15px;
  }

  /* Hero */
  .hero-text-overlay {
    padding-left: 5%;
    padding-right: 5%;
  }

  .hero-text {
    max-width: 100%;
  }

  /* portfolio */
  .portfolio-grid {
    grid-template-columns: 1fr !important;
  }

  .section-title {
    font-size: 30px;
  }

  .intro-title {
    font-size: 30px;
  }

  /* FAQ */
  .faq-question {
    padding: 20px;
    font-size: 1rem;
  }
  
  .faq-answer.active {
    padding: 0 20px 20px 20px;
  }

  /* Gallery - mobilon egymás alatt */
  .gallery-container {
    grid-template-columns: 1fr;
  }

  /* Csomagok oldal */
  .packages-hero {
    padding: 60px 0 40px;
  }

  .hero-title-pkg {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .section-title-main {
    font-size: 30px;
  }

  .intro-large {
    font-size: 18px;
  }

  .portrait-section,
  .selfknowledge-section,
  .referral-section,
  .how-it-works,
  .final-cta {
    padding: 60px 0;
  }

  .emphasis-box {
    padding: 24px;
  }

  .emphasis-box h3 {
    font-size: 24px;
  }

  .package-title {
    font-size: 22px;
  }

  .package-body {
    padding: 24px 20px;
  }

  .process-section {
    padding: 32px 24px;
  }

  .referral-box {
    padding: 32px 24px;
  }

  .referral-box h2 {
    font-size: 26px;
  }

  .info-boxes,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .cta-text {
    font-size: 18px;
  }

  .cta-button {
    font-size: 18px;
    padding: 14px 36px;
  }

  /* Rólunk oldal */
  .about-section {
    padding: 80px 0 20px;
  }

  .about-title {
    font-size: 36px;
  }

  .about-content {
    padding: 32px 24px;
  }

  .about-content p {
    font-size: 18px;
  }

  /* Képek responsivitása mobilon */
  .about-content img,
  .about-content2 img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .about-text {
    padding: 32px 24px;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-text p {
    font-size: 17px;
  }

  .contact-section {
    padding: 60px 0;
  }

  .contact-box {
    padding: 40px 24px;
  }

  .contact-title {
    font-size: 28px;
    padding: 16px;
  }

  .contact-intro p {
    font-size: 17px;
  }

  .contact-details {
    padding: 24px;
  }

  .contact-item {
    font-size: 16px;
    flex-wrap: wrap;
  }

  .social-links {
    gap: 20px;
  }

  .social-link img {
    width: 40px;
    height: 40px;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .gallery-container {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-description {
    font-size: 14px;
  }

  .section-title {
    font-size: 24px;
    font-weight: 600;
  }

  .intro-title {
    font-size: 24px;
    font-weight: 600;
  }

  /* Csomagok oldal */
  .hero-title-pkg {
    font-size: 26px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

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

  .package-card {
    margin: 0 -8px;
  }

  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .process-section {
    padding: 24px 16px;
  }

  .referral-box {
    padding: 24px 16px;
  }

  .step-card {
    padding: 24px 16px;
  }

  /* Rólunk oldal */
  .about-title {
    font-size: 28px;
  }

  .about-content {
    padding: 24px 20px;
  }

  .about-content p {
    font-size: 16px;
  }

  .highlight-text {
    font-size: 18px;
  }

  .about-text {
    padding: 24px 20px;
  }

  .about-text h2 {
    font-size: 24px;
  }

  .about-text p {
    font-size: 16px;
  }

  .contact-box {
    padding: 32px 20px;
  }

  .contact-title {
    font-size: 24px;
  }

  .contact-intro p {
    font-size: 16px;
  }

  .contact-details {
    padding: 20px;
  }

  .contact-item {
    font-size: 15px;
  }

  .contact-icon {
    font-size: 20px;
    width: 32px;
  }
}
/* ===== IMPRINT HÁTTÉR ===== */
/* ===== IMPRINT HÁTTÉR ===== */
body.page-imprint {
  background:
    radial-gradient(
      circle at center,
      #7a2331 0%,
      #66202a 55%,
      #3a0a14 100%
    );
}

/* A fekete main-t felül kell írni CSAK ezen az oldalon */
body.page-imprint main {
  background: transparent !important;
}


/* MESSENGER: chat bubble - jobb alsó sarok */
/* ============================================
   MESSENGER CHAT BUBBLE - JAVÍTOTT VERZIÓ
   Cseréld le a styles.css-ben az előző verziót!
   ============================================ */

/* Messenger chat bubble - jobb alsó sarok */
.messenger-chat-bubble {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

/* Gomb stílus */
.messenger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #6e0606;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(110, 6, 6, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  position: relative;
}

.messenger-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(110, 6, 6, 0.6);
}

/* Messenger ikon */
.messenger-btn svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* Tooltip buborék - JAVÍTOTT! */
.messenger-tooltip {
  position: absolute;
  bottom: 75px;
  right: 0;
  background: white;
  color: #333;
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  font-size: 13px;
  font-weight: 500;
  max-width: 200px;
  text-align: center;
}

.messenger-tooltip::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: 15px;
  width: 10px;
  height: 10px;
  background: white;
  transform: rotate(45deg);
  box-shadow: 2px 2px 2px rgba(0,0,0,0.1);
}

.messenger-chat-bubble:hover .messenger-tooltip {
  opacity: 1;
}

/* Pulzáló animáció */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(110, 6, 6, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(110, 6, 6, 0.8);
  }
}

.messenger-btn {
  animation: pulse 2s infinite;
}

/* Mobilon kicsit feljebb */
@media (max-width: 768px) {
  .messenger-chat-bubble {
    bottom: 15px;
    right: 15px;
  }
  
  .messenger-btn {
    width: 55px;
    height: 55px;
  }
  
  .messenger-btn svg {
    width: 28px;
    height: 28px;
  }
  
  /* Mobilon kisebb tooltip */
  .messenger-tooltip {
    font-size: 12px;
    padding: 6px 10px;
  }
}
/* MESSENGER EDDIG*/
/* Csomagok javítás - képek mobilon */
@media (max-width: 768px) {
  .packages-main img {
    float: none !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 0 20px 0 !important;
    display: block !important;
  }
}