.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-4cf73bc *//* =========================================
   1. BAZA I FONT
========================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');

/* Kluczowa poprawka dla Elementora - zapobiega rozpychaniu na boki */
.main-header, .main-header * {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #ffffff; /* Główne tło strony */
}

/* =========================================
   2. OKIENKO MODALNE (NEWSLETTER)
========================================= */
.newsletter-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: none; /* Domyślnie ukryte */
    align-items: center;
    justify-content: center;
}

.newsletter-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.close-newsletter-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #333;
}

/* =========================================
   3. NAGŁÓWEK (HEADER) - WIDOK DESKTOP
========================================= */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #FBF9F6; /* Delikatne kremowe tło */
  border-bottom: 1px solid #eaeaea;
  width: 100%;
  flex-wrap: wrap; 
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-container .logo {
  max-height: 70px;
  width: auto;
  display: block;
}

/* Menu nawigacyjne */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: #5F756B; /* Głęboka szałwia */
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 5px;
}

.main-nav a:hover {
  color: #B46A4D; /* Miedź */
}

.main-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #B46A4D;
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* Kontener dla przycisków po prawej */
.header-cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Przycisk Newslettera */
.btn-newsletter {
  text-decoration: none;
  color: #ffffff;
  background-color: #B46A4D;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.btn-newsletter:hover {
  background-color: #9C5B42;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Ikona Facebook */
.fb-icon {
  color: #B46A4D;
  width: 20px;
  height: 22px; 
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, transform 0.2s ease;
}

.fb-icon:hover {
  color: #9C5B42;
  transform: translateY(-2px);
}

/* Hamburger Menu (ukryty na desktopie) */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: 10px;
}

.hamburger-menu span {
  width: 100%;
  height: 3px;
  background-color: #5F756B;
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}

.hamburger-menu.is-active span:first-child { transform: rotate(45deg); }
.hamburger-menu.is-active span:nth-child(2) { opacity: 0; }
.hamburger-menu.is-active span:nth-child(3) { transform: rotate(-45deg); }


/* =========================================
   4. RESPONSYWNOŚĆ (TABLETY I SMARTFONY)
========================================= */
@media (max-width: 992px) {
  .main-header {
    padding: 15px 20px;
    flex-direction: column;
    gap: 15px;
  }

  .logo-wrapper {
    width: 100%;
    justify-content: center;
  }

  .header-cta {
    width: 100%;
    justify-content: flex-start; /* Trzyma przycisk i ikonę z lewej */
    gap: 15px; 
  }

  .hamburger-menu {
    display: flex;
    margin-left: auto; /* Wypycha hamburger do prawej krawędzi */
  }

  .main-nav {
    display: none;
    width: 100%;
    order: 3;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

/* Drobne poprawki dla bardzo małych ekranów (smartfony) */
@media (max-width: 576px) {
  .header-cta {
    gap: 10px;
  }
  .btn-newsletter {
    padding: 10px 15px;
    font-size: 13px;
  }
  .fb-icon {
    width: 24px;
    height: 24px;
  }
}/* End custom CSS */