/* ============================================
   CSS Variables & Reset
   ============================================ */

:root {
  /* Colors */
  --color-primary: #3E2723;
  --color-primary-dark: #2E1B17;
  --color-secondary: #C9A876;
  --color-secondary-light: #D4B896;
  --color-background: #FAF9F6;
  --color-background-beige: #F3E5AB;
  --color-accent: #8FBC8F;
  --color-white: #FFFFFF;
  --color-text-light: rgba(62, 39, 35, 0.8);
  
  /* Typography */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  
  /* Container */
  --container-max-width: 1280px;
  --container-padding: 1rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-background);
  color: var(--color-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

@media (min-width: 640px) {
  :root {
    --container-padding: 1.5rem;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --container-padding: 2rem;
  }
  
  h1 {
    font-size: 3.5rem;
  }
  
  h2 {
    font-size: 3rem;
  }
}

/* ============================================
   Navigation
   ============================================ */

.navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navigation.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  transition: color 0.3s ease;
  text-decoration: none;
}

.logo-image {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  transition: color 0.3s ease;
}

.navigation .logo {
  color: var(--color-primary);
}

.navigation .logo-text {
  color: var(--color-primary);
}

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

.nav-links.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nav-links li a {
  color: var(--color-primary);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navigation.scrolled .nav-links li a {
  color: var(--color-primary);
}

.nav-links.active li a {
  color: var(--color-primary);
}

.nav-links li a:hover {
  color: var(--color-secondary);
}

.btn-nav {
  background: var(--color-primary);
  color: var(--color-white) !important;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--color-primary);
}

.navigation.scrolled .btn-nav {
  background: var(--color-primary);
  color: var(--color-white) !important;
  border: 2px solid var(--color-primary);
}

.btn-nav:hover {
  background: var(--color-primary);
  color: var(--color-white) !important;
  transform: scale(1.05);
  border-color: var(--color-primary);
}

.navigation.scrolled .btn-nav:hover {
  background: var(--color-primary);
  color: var(--color-white) !important;
  border-color: var(--color-primary);
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-background);
  transition: all 0.3s ease;
}

.navigation.scrolled .mobile-menu-toggle span {
  background: var(--color-primary);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: row;
  }
  
  .nav-links.active {
    position: static;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-image: url('../images/pekseeg.png');
  background-size: cover;
  background-position: center;
  background-color: var(--color-primary);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 40%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--container-padding);
  animation: fadeInUp 0.8s ease;
}

.hero-title {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.hero-title-accent {
  color: var(--color-secondary);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 2.5rem;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-subtitle {
    font-size: 1.75rem;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-arrow {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 9999px;
  position: relative;
  animation: scrollBounce 2s infinite;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 9999px;
  animation: scrollMove 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes scrollMove {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(12px); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--color-secondary);
  color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-secondary-light);
  transform: scale(1.05);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

/* ============================================
   Featured Products
   ============================================ */

.featured-products {
  padding: 5rem 0;
  background: var(--color-white);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #C69126;
  color: var(--color-white);
}

.filter-btn:hover {
  background: rgba(198, 145, 38, 0.9);
  color: var(--color-white);
}

.filter-btn.active {
  background: var(--color-primary);
  color: var(--color-white);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.product-card {
  background: var(--color-white);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.product-image {
  position: relative;
  width: 100%;
  height: 320px;
  background-size: cover;
  background-position: center;
  background-color: var(--color-secondary);
  transition: transform 0.5s ease;
  overflow: hidden;
}

.product-card:hover .product-image {
  transform: scale(1.1);
}

.bestseller-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  z-index: 10;
  white-space: nowrap;
  animation: fadeInBadge 0.5s ease;
}

@keyframes fadeInBadge {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.product-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-content h3 {
  margin-bottom: 0.5rem;
  color: var(--color-primary);
  min-height: 3rem;
}

.product-content p {
  color: var(--color-text-light);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  flex: 1;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tag {
  padding: 0.25rem 0.75rem;
  background: var(--color-background-beige);
  color: var(--color-primary);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.btn-ingredients {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-white);
  border: 2px solid var(--color-secondary);
  border-radius: 9999px;
  background-color: var(--color-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
  width: 100%;
}

.btn-ingredients:hover {
  background-color: var(--color-secondary-light);
  border-color: var(--color-secondary-light);
  transform: scale(1.02);
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .product-image {
    height: 400px;
  }
  
  .btn-ingredients {
    width: auto;
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   About Us
   ============================================ */

.about-us {
  padding: 5rem 0;
  background: var(--color-background-beige);
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 2rem;
  color: var(--color-primary);
}

.about-text {
  margin-bottom: 2rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--color-text-light);
  font-size: 1.125rem;
}

.about-quote {
  padding-left: 1.5rem;
  border-left: 4px solid var(--color-secondary);
  margin-top: 2rem;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.quote-author {
  color: var(--color-text-light);
}

.about-images {
  position: relative;
  height: 500px;
}

.about-image {
  position: absolute;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.about-image-1 {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-2deg);
  z-index: 2;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: var(--color-secondary);
}

@media (min-width: 1024px) {
  .about-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  
  .about-images {
    height: 600px;
  }
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials-section {
  padding: 5rem 0;
  background: var(--color-white);
}

.testimonials-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee 60s linear infinite;
}

.testimonial-card {
  background: var(--color-background);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  width: 350px;
  height: 350px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}

.testimonial-quote {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 120px;
  line-height: 1;
  font-family: serif;
  font-weight: bold;
  color: var(--color-secondary);
  opacity: 0.1;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 10;
}

.testimonial-text {
  color: var(--color-text-light);
  font-style: italic;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
}

.testimonial-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 10;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: bold;
  color: var(--color-primary);
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-top: 0.25rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================
   Sourdough Info Section
   ============================================ */

.sourdough-intro {
  padding: 5rem 0;
  background: var(--color-primary);
  color: var(--color-white);
}

.sourdough-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.sourdough-content h2 {
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
}

.sourdough-lead {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-background);
  margin-bottom: 1.5rem;
}

.sourdough-content p {
  color: var(--color-background);
  line-height: 1.75;
}

.sourdough-image {
  position: relative;
  height: 400px;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--color-secondary);
}

@media (min-width: 768px) {
  .sourdough-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  
  .sourdough-image {
    height: 500px;
  }
}

/* ============================================
   Benefits Section
   ============================================ */

.benefits-section {
  padding: 6rem 0;
  background: var(--color-background); /* picit tört, nem full fehér */
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.benefit-card {
  background: var(--color-white);
  border-radius: 1.5rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card-bg-1 {
  background-image: url('https://shop.vitcas.com/media/amasty/blog/bread-wood-fired-oven2_1.jpg');
  background-size: cover;
  background-position: center;
  background-color: var(--color-white);
}

.benefit-card-bg-2 {
  background-image: url('https://www.thespruceeats.com/thmb/xUYV9-j2zLcFvaoUiq8uQA_Xg14=/1500x0/filters:no_upscale():max_bytes(150000):strip_icc()/GettyImages-649885620-5a5e3ef9da2715003781bdd6.jpg');
  background-size: cover;
  background-position: center;
  background-color: var(--color-white);
}

.benefit-card-bg-3 {
  background-image: url('https://kep.cdn.indexvas.hu/1/0/6370/63702/637021/63702151_7621d8b82c65fee8aa71f62612d97638_wm.jpg');
  background-size: cover;
  background-position: center;
  background-color: var(--color-white);
}

.benefit-card-bg-4 {
  background-image: url('https://kep.index.hu/1/0/3016/30169/301695/30169555_7f61bdf953d110bd7f73a7b0ad646df1_wm.jpg');
  background-size: cover;
  background-position: center;
  background-color: var(--color-white);
}

.benefit-card-bg-1::before,
.benefit-card-bg-2::before,
.benefit-card-bg-3::before,
.benefit-card-bg-4::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.7) 40%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 0;
}

.benefit-card-bg-1 > *,
.benefit-card-bg-2 > *,
.benefit-card-bg-3 > *,
.benefit-card-bg-4 > * {
  position: relative;
  z-index: 1;
}


.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.10);
}

.benefit-icon {
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefit-icon img {
  width: 2.4rem;
  height: 2.4rem;
  object-fit: contain;
}

/* tipó: cím serif (mint a nagy cím), szöveg sans */
.benefit-card h3 {
  margin-bottom: 0.75rem;
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-weight: 600;
}

.benefit-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.8;
  font-family: var(--font-sans);
}

/* Háttérképes kártyák színezése - specifikusabb, hogy felülírja az általános szabályokat */
.benefit-card.benefit-card-bg-1 h3,
.benefit-card.benefit-card-bg-2 h3,
.benefit-card.benefit-card-bg-3 h3,
.benefit-card.benefit-card-bg-4 h3 {
  color: var(--color-secondary) !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.benefit-card.benefit-card-bg-1 p,
.benefit-card.benefit-card-bg-2 p,
.benefit-card.benefit-card-bg-3 p,
.benefit-card.benefit-card-bg-4 p {
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   Process Section
   ============================================ */

.process-section {
  padding: 5rem 0;
  background: var(--color-white);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.process-card {
  background: var(--color-background);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: box-shadow 0.3s ease;
}

.process-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.process-number {
  font-size: 3rem;
  font-family: var(--font-serif);
  font-weight: bold;
  color: var(--color-secondary);
  line-height: 1;
  flex-shrink: 0;
}

.process-content {
  flex: 1;
}

.process-content h3 {
  margin-bottom: 0.5rem;
  color: var(--color-primary);
  font-size: 1.125rem;
  font-weight: bold;
}

.process-content p {
  color: var(--color-text-light);
  font-size: 0.875rem;
  line-height: 1.75;
}

.process-quote {
  background: var(--color-background-beige);
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 3rem;
  text-align: center;
}

.process-quote p {
  font-size: 1.25rem;
  font-family: var(--font-serif);
  color: var(--color-primary);
  line-height: 1.75;
  font-style: italic;
}

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

.process-cta p {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-number {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .process-number {
    font-size: 4rem;
  }
}

/* ============================================
   FAQ Section
   ============================================ */

.faq-section {
  padding: 5rem 0;
  background: var(--color-primary);
  color: var(--color-white);
}

.faq-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.faq-header {
  margin-bottom: 2rem;
}

.faq-header h2 {
  color: var(--color-background);
  margin-bottom: 1rem;
}

.faq-header p {
  color: rgba(250, 249, 246, 0.8);
  font-size: 1.125rem;
  line-height: 1.75;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(212, 163, 115, 0.2);
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-background);
  font-size: 1.125rem;
  font-weight: 500;
}

.faq-question:hover {
  color: var(--color-secondary);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--color-secondary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 0 0 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 0 1.5rem 0;
}

.faq-answer p {
  color: rgba(250, 249, 246, 0.9);
  line-height: 1.75;
}

@media (min-width: 1024px) {
  .faq-wrapper {
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
  }
  
  .faq-header {
    position: sticky;
    top: 6rem;
    align-self: start;
  }
}

/* ============================================
   Locations Section
   ============================================ */

.locations-section {
  padding: 5rem 0;
  background: var(--color-background);
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.location-card {
  background: var(--color-white);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.location-card:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.location-image {
  width: 100%;
  height: 224px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.location-card:hover .location-image {
  transform: scale(1.1);
}

.location-content {
  padding: 1.5rem;
}

.location-content h3 {
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.location-info p {
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.location-info p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   Visit Us
   ============================================ */

.visit-us {
  padding: 5rem 0;
  background: var(--color-primary);
  color: var(--color-white);
}

.visit-us .section-header h2,
.visit-us .section-header p {
  color: var(--color-white);
}

.visit-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.visit-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.info-item .icon {
  font-size: 1.5rem;
  color: var(--color-secondary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.info-item h3 {
  margin-bottom: 0.5rem;
  color: var(--color-white);
}

.info-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
}

.info-item.hours {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  flex-direction: column;      /* ne egymás mellett legyenek */
  align-items: flex-start;     /* balra igazítva, oszlopban */
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  margin-top: 0.5rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  line-height: 1.6;
}

.hours-item span:first-child {
  flex-shrink: 0;
  margin-right: 1rem;
}

.hours-time {
  font-weight: 600;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .hours-item {
    flex-direction: column;
    align-items: flex-start;
  }
}

.visit-map {
  position: relative;
  height: 400px;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

.map-icon {
  font-size: 4rem;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.map-placeholder span {
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .visit-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--color-primary-dark);
  color: var(--color-white);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h3 {
  margin-bottom: 1rem;
  color: var(--color-secondary);
  font-size: 1.25rem;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1.25rem;
}

.social-links a img {
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
}

.social-links a:hover {
  background: var(--color-secondary);
  transform: scale(1.1);
}

.footer-hours p,
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
  white-space: normal;
}

.footer-hours p strong {
  flex-shrink: 0;
  min-width: 120px;
}

.footer-icon {
  font-size: 1rem;
  color: var(--color-secondary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   Modal
   ============================================ */

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.active .modal-backdrop {
  opacity: 1;
}

.modal-content {
  position: relative;
  background: var(--color-white);
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
  max-width: 28rem;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 10;
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.modal.active .modal-content {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.modal-header {
  position: sticky;
  top: 0;
  background: var(--color-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-text-light);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--color-primary);
}

.modal-body {
  padding: 1.5rem;
}

.modal-body h4 {
  color: var(--color-primary);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.modal-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.modal-body li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--color-text-light);
  opacity: 0;
  transform: translateX(-10px);
  animation: slideInListItem 0.3s ease forwards;
}

.modal-body li:nth-child(1) { animation-delay: 0.1s; }
.modal-body li:nth-child(2) { animation-delay: 0.15s; }
.modal-body li:nth-child(3) { animation-delay: 0.2s; }
.modal-body li:nth-child(4) { animation-delay: 0.25s; }
.modal-body li:nth-child(5) { animation-delay: 0.3s; }
.modal-body li:nth-child(6) { animation-delay: 0.35s; }
.modal-body li:nth-child(7) { animation-delay: 0.4s; }
.modal-body li:nth-child(8) { animation-delay: 0.45s; }

@keyframes slideInListItem {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.modal-body li::before {
  content: '';
  display: none;
}

.modal-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem 1.5rem;
}

.modal-footer .btn {
  width: 100%;
}

/* ============================================
   Animations
   ============================================ */

.fade-in {
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.slide-up {
  animation: slideUp 0.6s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

