/* Global variables */
:root {
  --gold: #CE9D0A;
  --burgundy: #5C0000;
  --white: #ffffff;
  --light-bg: #f9f5ef; /* subtle light background for alternating sections */
  --dark-text: #1a1a1a;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-text);
  scroll-behavior: smooth;
  margin: 0;
  font-size: 1.2rem;
}

/* Apply the Google Marcellus font to all major headings and section titles */
h1,
h2,
h3,
h4,
h5,
.section-title {
  font-family: 'Marcellus', serif;
}
.section-with-gold {
  position: relative;
  background: var(--light-bg);
  overflow: hidden; /* hogy a belógó elem ne folyjon túl */
  padding-bottom: 230px;
}
.zindex2{
  position: relative;
  z-index: 2;
}
.white-boxbg{
  background: #fff;
  border-radius: 50px;
  padding: 30px 30px 60px 50px;
}
.section-with-gold::before {
  content: "";
  position: absolute;
  top: -66%;
  left: -5%;
  width: 33%;         /* a section szélességének 1/3-a */
  height: 100%;
  background: var(--gold);
  border-bottom-right-radius: 80px; /* jobb alsó sarok lekerekítve */
  z-index: 1;         /* a háttér felett, de a tartalom mögött */
}
/* Jobb alsó sarok - képi háttér */
.section-with-gold::after {
  content: "";
  position: absolute;
  bottom: -40%;
  right: 0%;
  width: 60%;               /* jobbról a fele */
  height: 100%;
  background: url("/images/section1-bgnew.jpg") no-repeat center/cover;
  border-top-left-radius: 80px;
  background-position: -75px -114px;
  z-index: 1;
}
/* Jobb alsó sarok - képi háttér */
.section-with-gold2::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: 0%;
  width: 50%;               /* jobbról a fele */
  height: 100%;
  background: url("/images/section5-bg-new1.jpg") no-repeat center/cover;
  border-top-left-radius: 80px;
  background-position: -600px -110px;
  z-index: 1;
}
.section-leftbg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -20%;
  width: 60%;               /* jobbról a fele */
  height: 100%;
  background: url("/images/section2-bgnew.jpg") no-repeat center/cover;
  border-top-left-radius: 80px;
  background-position: 0px -110px;
  border-bottom-right-radius: 80px;
  z-index: 1;
}
.section-leftbg1::after {
  background: url("/images/section8-bg.png") no-repeat center/contain;
  border-top-left-radius: 0px;
  background-position: 0px 0px;
  border-bottom-right-radius: 0px;
}
.section-auctionbg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;               /* jobbról a fele */
  height: 100%;
  background: url("/images/section3-bg1.jpg") no-repeat center/cover;
  background-position: 0px 0px;
  z-index: 1;
}
/* ------------------------------------------------------------------
   Layout Helpers
   To provide a lightweight alternative to Bootstrap's grid system, we
   define a simple container and flex-based row/column classes. These
   classes are used throughout the page to structure content without
   external dependencies.
------------------------------------------------------------------ */

/* Container centers content and limits its maximum width */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Row uses flexbox to lay out children and wraps when necessary */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
}

/* Column classes with responsive breakpoints */
.col-md-6,
.col-lg-6,
.col-md-4,
.col-md-3,
.col-md-8 {
  padding-left: 1rem;
  padding-right: 1rem;
  flex: 1 1 100%;
}

@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-8 {
    flex: 0 0 66.666%;
    max-width: 66.666%;
  }
}

@media (min-width: 992px) {
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Order utilities (used to swap columns on larger devices) */
.order-md-1 {
  order: 1;
}
.order-md-2 {
  order: 2;
}
@media (min-width: 768px) {
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
}

/* Spacing utility classes */
.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.mb-3 {
  margin-bottom: 1rem;
}
.mb-4 {
  margin-bottom: 1.5rem;
}
.mb-5 {
  margin-bottom: 3rem;
}
.g-4 {
  gap: 1.5rem;
}
.g-5 {
  gap: 2rem;
}

/* Typography helpers */
.h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--burgundy);
}
.h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--burgundy);
}
.fw-bold {
  font-weight: 700;
}
.fst-italic {
  font-style: italic;
}
.text-muted {
  color: #6c757d;
}
.text-white {
  color: var(--white);
}
.text-center {
  text-align: center;
}

/* Responsive images */
.img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Rounded corners and shadows */
.rounded {
  border-radius: 0.25rem;
}
.shadow-sm {
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}

/* Input group and form controls */
.input-group {
  display: flex;
  width: 100%;
}
.input-group input[type="email"] {
  flex: 1;
  padding: 0.5rem 0.75rem;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 0.25rem 0 0 0.25rem;
  font-size: 1rem;
  background-color: var(--white);
  color: var(--dark-text);
}
.input-group button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0 0.25rem 0.25rem 0;
  background-color: var(--burgundy);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}
.input-group button:hover {
  background-color: #470000;
}
.form-text {
  font-size: 0.85rem;
  color: #666;
}

/* Headings and paragraphs inside sections */
p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* ------------------------------------------------------------------
   Navigation styling
   The custom navigation bar is fixed at the top and adapts for mobile
   with a hamburger menu. The show class toggles visibility on small
   screens.
------------------------------------------------------------------ */
.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}
.container-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
}
.brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--burgundy);
  text-decoration: none;
}
.brand img{
  max-height: 50px;
}
.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.menu li {
  margin-left: 1rem;
}
.menu li a {
  text-decoration: none;
  color: var(--dark-text);
  font-weight: 600;
  transition: color 0.2s;
  padding: 0.5rem;
  text-transform: uppercase;
  font-family: 'Marcellus', serif;
  font-size: 1rem;
}
.menu li a:hover,
.menu li a.active {
  color: var(--gold);
}

/* Mobile menu styles */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--burgundy);
  margin: 4px 0;
  transition: all 0.3s ease;
}
.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 991.98px) {
  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    display: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .menu li {
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
  }
  .menu li a {
    padding: 0.75rem 1rem;
    display: block;
  }
  .menu.show {
    display: flex;
  }
  .menu-toggle {
    display: flex;
  }
}

/* ------------------------------------------------------------------
   Hero section
   The hero section covers the viewport and centers its content. A
   bouncing arrow encourages users to scroll down.
------------------------------------------------------------------ */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  padding: 2rem;
}
.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 500;
  margin: 0 auto;
  margin-bottom: 1rem;
  color: var(--gold);
  max-width: 60%;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
/*.hero-content .btn-gold {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--burgundy);
  color: var(--white);
  border-radius: 0.25rem;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s;
}
.hero-content .btn-gold:hover {
  background-color: #470000;
}*/
.mt-2{
  margin-top: 30px;
}
.btn-base {
  display: inline-block;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(to bottom, #e6c155, var(--gold));
  border: 2px solid var(--gold);
  border-radius: 40px;
  box-shadow: 0 3px 10px rgba(92, 0, 0, 0.35);
  text-decoration: none;
  transition: all 0.35s ease-in-out;
  letter-spacing: 0.5px;
}

.btn-base:hover {
  background: linear-gradient(to bottom, var(--burgundy), #7a0000);
  border-color: var(--burgundy);
  box-shadow: 0 6px 16px rgba(92, 0, 0, 0.55);
  transform: translateY(-2px);
}


.btn-base:hover::before {
  left: 130%;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  color: var(--white);
  opacity: 0.8;
  animation: bounce 2s infinite;
}

/* Video background for hero section */
#hero .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Slider container fills the hero area */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

/* Each slide covers the hero area and transitions via opacity */
.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-slider .slide.active {
  opacity: 1;
}

/* Constrain hero paragraph width */
.hero-content p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.5rem;
}

/* ------------------------------------------------------------------
   Animation for elements when they enter the viewport
------------------------------------------------------------------ */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}
[data-animate].animate {
  opacity: 1;
  transform: translateY(0);
}

/* Ensure anchored sections are fully visible below the fixed navbar */
section {
  scroll-margin-top: 80px;
  position: relative;
}

/* Navbar styling */
.navbar {
  background-color: var(--white);
}
.navbar-brand {
  color: var(--gold);
  font-size: 1.4rem;
}
.navbar-brand:hover {
  color: var(--burgundy);
}
.navbar-nav .nav-link {
  color: var(--dark-text);
  margin-left: 1rem;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--burgundy);
}

/* Hero section */
#hero {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}
#hero .btn-gold {
  padding: 0.75rem 1.5rem;
}
.scroll-indicator {
  color: var(--white);
  opacity: 0.8;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

/* Section backgrounds */
.section-bg-light {
  background-color: var(--light-bg);
}
.section-bg-white {
  background-color: var(--white);
}
.section-bg-gold{
  background-color: var(--gold);
}

/* Section titles */
.section-title {
  font-size: 2.75rem;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
}

/* Custom list styling – borosüveg ikon */
.custom-list {
  list-style: none;
  padding-left: 0;
}
.custom-list li {
  position: relative;
  padding-left: 2rem;              /* több hely az üvegnek */
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 1.5rem;
  height: 1.4rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  /* Aranyra színezett SVG (HEX #CE9D0A → %23CE9D0A) */
  background-image: url("/images/icons/wine-bottle2.svg");
}

.custom-list strong {
  color: var(--gold);
  font-weight: 600;
}


/* A kiemelések maradhatnak aranyban */
.custom-list strong {
  color: var(--gold);
  font-weight: 600;
}


.process-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

.process-flow .step {
  flex: 1 1 30%;
  min-width: 100px;
  text-align: center;
}

.process-flow .step-circle {
  width: 48px;
  aspect-ratio: 1 / 1;          /* mindig kör marad */
  border-radius: 50%;
  display: inline-flex;          /* ne nyúljon szét */
  align-items: center;
  justify-content: center;
  background-color: var(--burgundy);
  color: var(--white);
  border: 2px solid var(--gold); /* arany perem – prémium */
  box-shadow: 0 2px 6px rgba(92,0,0,.35);
  margin: 0 auto 0.5rem;
  font-weight: 700;
  flex: 0 0 auto;                /* ne zsugorodjon */
}

.process-flow .step-label {
  font-size: 0.85rem;
  font-weight: 600;
  display: block;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* Asztali nézet: minden egy sorban, de a körök ne zsugorodjanak */
@media (min-width: 992px) {
  .process-flow {
    flex-wrap: nowrap;
  }
  .process-flow .step {
    flex: 1 1 0;
    min-width: 110px;            /* legyen elég hely a kör + címkének */
  }
}


/* Animation for process flow steps */
@keyframes stepFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.process-flow.animate .step {
  opacity: 0;
  animation: stepFadeIn 0.6s forwards;
}
.process-flow.animate .step:nth-child(1) {
  animation-delay: 0.1s;
}
.process-flow.animate .step:nth-child(2) {
  animation-delay: 0.2s;
}
.process-flow.animate .step:nth-child(3) {
  animation-delay: 0.3s;
}
.process-flow.animate .step:nth-child(4) {
  animation-delay: 0.4s;
}
.process-flow.animate .step:nth-child(5) {
  animation-delay: 0.5s;
}
.process-flow.animate .step:nth-child(6) {
  animation-delay: 0.6s;
}

/* Buttons */
/* Generic button styling */
.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s;
}

/* Gold variant used across the site */
.btn-gold {
  background-color: var(--burgundy);
  color: var(--white);
  border: none;
}
.btn-gold:hover {
  background-color: #470000;
  color: var(--white);
}

/* Footer */
.footer {
  background-color: var(--burgundy);
  color: var(--white);
  padding: 2rem 0;
  font-size: 0.9rem;
}
.footer a {
  color: var(--gold);
  text-decoration: underline;
}
.footer a:hover {
  color: var(--white);
}

/* Light link inside dark backgrounds (e.g., footer) */
.link-light {
  color: var(--gold);
  text-decoration: underline;
}
.link-light:hover {
  color: var(--white);
}

/* ------------------------------------------------------------------
   Decorative elements
   Dotted patterns reminiscent of the presentation are added via
   pseudo-elements. Apply these classes to a container with
   position: relative to position them properly.
------------------------------------------------------------------ */
.dots-decoration-left::before,
.dots-decoration-right::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(var(--burgundy) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.2;
  z-index: -1;
}
.dots-decoration-left::before {
  top: 40px;
  left: 40px;
}
.dots-decoration-right::before {
  bottom: 40px;
  right: 40px;
}
.abra{
  position: absolute; right: 0; top: 20px; padding: 20px;
}
.pb100{
  padding-bottom: 100px;
}
.pt70{
  padding-top: 70px;
}
.mt120{
  margin-top: 120px;
}
.wbp1{
  padding: 10px 50px 30px 50px;
}
#szakertok{
  padding-bottom: 100px;
}
#szakertok .section-title{
  max-width: 75%;
  margin-left: auto;
  margin-right: auto;
}
.lang-switcher {
  display: flex;
  /*gap: 10px;  kis hézag a két nyelv között */
}

.menu li a.lang-link {
  display: flex;
  align-items: center;
  font-size: 14px;

  text-decoration: none;
  padding: 6px 6px;
  border-radius: 4px;
  transition: background 0.2s;
}

.menu li a.lang-link:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1); /* hover effekt */
}

.menu li a.lang-link.active {
  opacity: 0.6; /* látszik, hogy inaktív */
  cursor: default;
  pointer-events: none; /* ne lehessen kattintani */
}

.flag-icon {
  height: 16px; /* kisebb méret, ne csússzon szét */
  margin-right: 4px;
  display: inline-block;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
  #szakertok .section-title{
    max-width: 100%;
  }
  .navbar-nav .nav-link {
    margin-left: 0;
    padding: 0.5rem 0;
  }
  .process-flow .step {
    flex: 1 1 45%;
  }
  .hero-content h1{
    Font-size: 2rem;
    max-width: 100%;
  }
  .hero-content p{
    Font-size: 1.25rem;
  }
  .section-title {
    font-size: 2rem;
    color: var(--gold);
    font-weight: 500;
    text-transform: uppercase;
  }
  .section-leftbg::after{
    background: none;
  }
  .section-leftbg1{
    background-color: var(--light-bg);
  }
  .abra{
    position: relative;
    padding:0;
  }
  .section-bg-light {
    background-color: var(--white);
    padding-left: 20px;
    padding-right: 20px;
  }
  .pt70{
    padding-top: 0;
  }
  .pb100{
    padding-bottom: 0;
  }
  .mt120{
    margin-top: 0;
  }
  .section-with-gold{
    padding-bottom: 80px;
  }
  .wbp1{
    padding: 10px 30px 30px 20px;
  }
  .white-boxbg {
    padding: 10px 30px 30px 20px;
  }
  #mc_embed_signup {
    width: 90%!important;
  }
  .lang-switcher {
  padding: 10px 11px;
  }
}