/* ================================
   CSS VARIABLES
   ================================ */
/* :root {
  --primary-dark: #2C1810;
  --primary-medium: #5D3A2A;
  --primary-light: #8B5A3C;
  --gold: #C9A962;
  --gold-light: #E8D5A3;
  --white: #FFFFFF;
  --off-white: #FAF8F5;
  --cream: #F5F0E8;
  --gray-light: #E8E4E0;
  --gray-medium: #9A9590;
  --gray-dark: #4A4540;
  --red-accent: #B91C1C;
  
  --font-playfair: 'Playfair Display', Georgia, serif;
  --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-cormorant: 'Cormorant Garamond', Georgia, serif;
} */

:root {
  /* --primary-dark: #0B1320;     
  --primary-medium: #162033;  
  --primary-light: #2A3548;    */

  --primary-dark: #0B1320;
  --primary-medium: #162033;
  --primary-light: #2A3548;

  --gold: #C9A962;
  --gold-light: #E8D5A3;
  --gold-dark: #9F7F3D;

  --white: #FFFFFF;
  --color-white: #FFFFFF;

  --color-black: #000;
  --off-white: #F7F5F0;
  /* --cream: #EEF1F5; */

  --cream: #EFECE4;

  --gray-light: #E5EAF0;
  --light-gray: #E5EAF0;
  /* --gray-medium: #6B7280;
  --gray-dark: #374151; */

  --gray-dark: #1E293B;
  --gray-medium: #64748B;

  --gold-dark-rgb: 11, 19, 32;
  /* RGB złotego */
  --cream-rgb: 239, 236, 228;
  /* RGB kremu */

  --red-accent: #B91C1C;
  --font-playfair: 'Playfair Display', Georgia, serif;
  --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-cormorant: 'Cormorant Garamond', Georgia, serif;

}

/* ================================
   BASE STYLES
   ================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-inter);
  font-size: 16px;
  line-height: 1.7;
  color: var(--primary-dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-playfair);
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

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

.simple-text a:hover {
  text-decoration: underline;
  color: var(--gold-dark);
}

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

ol {
  list-style-position: outside;
  padding-left: 2em;
  margin-left: 0;
}

ol li {
  margin: 10px 0;
}

ol li::marker {
  font-weight: bold;
}

.gold-gradient {
  background: linear-gradient(135deg,
      #E8D5A3 0%,
      #C9A962 40%,
      #9F7F3D 100%);
}

.has-cream-background-color {
  background-color: var(--cream);
}

/* ================================
   UTILITY CLASSES
   ================================ */
.site-header .container,
.footer-inner .container,
.footer-bottom .container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 20px 90px;
}

#mainContent .container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 60px 90px;
}

@media (max-width: 1024px) {

  .site-header .container,
  .footer-inner .container,
  .footer-bottom .container {
    padding: 20px 30px;
  }

  #mainContent .container {
    padding: 60px 30px;
  }
}

#mainContent {
  margin-top: 120px;
}

.section-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-playfair);
  font-size: clamp(2rem, 4vw, 3rem);
  /* color: var(--primary-dark); */
  line-height: 1.2;
}

.section-title span {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(201, 169, 98, 0.2);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* .btn-primary:hover {
  background-color: var(--primary-medium);
  transform: scale(1.02);
} */

.btn-primary:hover {
  background: linear-gradient(135deg,
      #162033,
      #0B1320);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  color: var(--primary-dark);
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--primary-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* Link underline effect */
.link-underline {
  position: relative;
}

.link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease;
}

.link-underline:hover::after {
  width: 100%;
}


/*




.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu nav a {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-dark);
}

.mobile-menu nav a:hover {
  color: var(--gold);
}

.mobile-menu .menu-cta {
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid var(--gray-light);
}

.mobile-menu .menu-cta a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-dark);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

*/

/* ================================
   FOOTER
   ================================ */
.site-footer {
  background-color: var(--primary-dark);
  color: var(--white);
}

.footer-border {
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-inner {
  padding: 64px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
  }
}

.rekomendacja {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-column.rekomendacja .title {
  margin-bottom: 0;
}

.rekomendacja a {
  width: 50%;
}

.rekomendacja img {
  transition: all .3s ease-in-out;
}

.rekomendacja img:hover {
  transform: scale(1.1);
}

/* Footer Brand */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-brand svg {
  width: 56px;
  height: 40px;
}

.footer-brand-text {
  font-family: var(--font-playfair);
  font-size: 20px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Footer Links */
.footer-column .title {
  font-family: var(--font-playfair);
  font-size: 18px;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

/* Footer Contact */
.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Footer Bottom */
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

/* ================================
   ANIMATIONS
   ================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.7s ease forwards;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 767px) {
  .container {
    padding: 0 16px;
  }

  .hero-badge {
    left: 0;
    bottom: -16px;
    padding: 16px;
  }

  .about-image-decoration-1,
  .about-image-decoration-2 {
    display: none;
  }

  /* .contact-form-wrapper {
    padding: 24px;
  } */

  .mobile-top-0 {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}


#scrollTopBtn {
  position: fixed;
  bottom: 70px;
  right: 30px;
  padding: 12px 16px;
  font-size: 22px;
  border: none;
  border-radius: 30px;
  background: #000;
  border: 1px solid #fff;
  color: #fff;
  cursor: pointer;

  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;

  transition: opacity 0.3s, transform 0.3s;
  z-index: 9999;
}

/* aktywny stan */
#scrollTopBtn.show {
  opacity: 0.8;
  transform: translateY(0);
  pointer-events: auto;
  animation: bounce 1.5s infinite;
}

/* hover */
#scrollTopBtn:hover {
  opacity: 1;
  transform: scale(1.1);
}

body.error404 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  margin: 0;
}

.error_page {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  padding: 150px 0;
}

.error_page h2 {
  align-self: center;
}

.error_page .btn {
  align-self: center;
  width: 300px;
  padding: 10px 50px;
  background-color: #000;
  border-radius: 20px;
  color: #fff;
}



/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: var(--white);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.lightbox-nav:hover {
  color: var(--white);
}

.lightbox-nav.prev {
  transform: rotate(90deg);
  left: 24px;
}

.lightbox-nav.next {
  transform: rotate(-90deg);
  right: 24px;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}


.paddingLeft60 {
  padding-left: 60px;
}

#cmplz-document,
.editor-styles-wrapper .cmplz-unlinked-mode {
  margin: 0 auto;
}

.grecaptcha-badge {
  visibility: hidden;
}

.margin-bottom-0 {
  margin-bottom: -8px !important;
}

.gradient-background-bottom-100 {
  background: linear-gradient(to top,
      rgba(229, 234, 240, 1) 0%,
      rgba(229, 234, 240, 0.7) 20%,
      rgba(229, 234, 240, 0.3) 40%,
      rgba(229, 234, 240, 0) 100%);
}

.gradient-background-bottom-70 {
  background: linear-gradient(to top,
      rgba(229, 234, 240, 0.7) 0%,
      rgba(229, 234, 240, 0.3) 40%,
      rgba(229, 234, 240, 0) 100%);
}

.gradient-background-top-100 {
  background: linear-gradient(to bottom,
      rgba(229, 234, 240, 1) 0%,
      rgba(229, 234, 240, 0.7) 20%,
      rgba(229, 234, 240, 0.3) 40%,
      rgba(229, 234, 240, 0) 100%);
}

.gradient-background-top-70 {
  background: linear-gradient(to bottom,
      rgba(229, 234, 240, 0.7) 0%,
      rgba(229, 234, 240, 0.3) 40%,
      rgba(229, 234, 240, 0) 100%);
}


.site-logo-mobile {
  display: inline-block;
  position: absolute;
  top: 30px;

  margin-bottom: 20px;
}

.mobile-menu {
  padding-top: 100px !important;
}