html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #0d0d0d;
  color: #ccc;
  margin-bottom: 80px;
}

header {
  background: #1a1a1a;
  padding: 7px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  height: 50px;
}

.slogan {
  color: #cfa048;
  font-size: 16px;
  font-weight: 600;
}

.intro {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc; /* lub jaśniejszy odcień złotego dla lepszej integracji z logotypem */
  margin-bottom: 0;
  max-width: 960px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #cfa048;
  margin-bottom: 4px;
  border-radius: 5px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.main-nav {
  display: flex;
  align-items: center;
}

.menu-and-lang {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-menu {
  display: flex;
  list-style: none;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.main-menu li a {
  color: #cfa048;
  text-decoration: none;
  font-weight: 600;
}

.main-menu li a:hover {
  color: #fff;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-switcher a {
  color: #888;
  text-decoration: none;
  font-weight: 600;
}

.language-switcher a:hover {
  color: #fff;
}

section {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 20px;
}

h1, h2 {
  color: #cfa048;
  font-weight: 700;
}

p {
  line-height: 1.8;
  font-size: 16px;
  color: #ccc;
}

.highlight {
  color: #cfa048;
  font-weight: bold;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-box {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(207, 160, 72, 0.3);
}

.quote-box {
  background: #262626;
  padding: 20px;
  font-style: italic;
  border-left: 4px solid #cfa048;
  margin: 40px 0;
}

.reference {
  margin-bottom: 30px;
  background: #1a1a1a;
  padding: 20px;
  border-left: 4px solid #cfa048;
  box-shadow: 0 0 10px rgba(207, 160, 72, 0.2);
}

.reference strong {
  color: #cfa048;
  display: block;
  margin-top: 10px;
}

.vertical-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(-50%);
  z-index: 0;
}

footer {
  text-align: center;
  font-size: 14px;
  color: #777;
  padding: 40px 20px;
}


.about-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}

.about-text {
  flex: 1 1 55%;
  max-width: 55%;
  box-sizing: border-box;
}

.about-photo {
  flex: 1 1 35%;
  max-width: 35%;
  box-sizing: border-box;
  text-align: center;
}

.about-photo img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.about-photo figcaption {
  font-size: 14px;
  color: #aaa;
  margin-top: 8px;
}



@media (max-width: 768px) {
  .about-flex {
    flex-direction: column;
  }

  .about-text,
  .about-photo {
    max-width: 100%;
    flex: 1 1 100%;
  }
}



@media (max-width: 768px) {
  .main-menu {
    display: none;
    flex-direction: column;
    background: #1a1a1a;
    position: absolute;
    top: 80px;
    right: 20px;
    width: 200px;
    padding: 20px;
    border-radius: 10px;


    
  }

  .main-menu.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .menu-and-lang {
    flex-direction: column;
    align-items: flex-end;
  }

  .slogan {
    display: none;
  }

  .language-switcher {
    justify-content: flex-end;
  }

  .vertical-line {
    display: none !important;
  }

  #contact .contact-columns {
    flex-direction: column;
  }

  #contact .contact-columns > div {
    max-width: 100% !important;
  }

  #contact .vertical-line {
    display: none !important;
  }

  #contact input,
  #contact textarea {
    font-size: 16px;
  }

.about-flex {
    display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 0rem 0rem;   /*przesuniecie tesku w wgledem marginsu w wwersji mobilnej */
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  }
  .about-photo {
    margin: 0 auto;
    max-width: 50%;
  }
}


.about-text {
  flex: 1 1 500px;
  max-width: 700px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #cfa048;
}

.about-text p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
  color: #e0e0e0;
}

.highlight {
  color: #cfa048;
  font-

.hex-photo {
  width: 160px;
  aspect-ratio: 1 / 0.866; /* approx hex height ratio */
  position: relative;
}

.hex-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(
    50% 0%, 93% 25%, 93% 75%,
    50% 100%, 7% 75%, 7% 25%
  );
  border: 2px solid #cfa048;
  transition: transform .25s;
}
.hex-photo img:hover {
  transform: scale(1.03);
}

.hex-photo figcaption {
  margin-top: .5rem;
  font-size: .85rem;
  color: #ddd;
}

.about-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}


.about-text {
  flex: 1 1 500px;
  max-width: 700px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #cfa048;
}

.about-text p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
  color: #e0e0e0;
}

.highlight {
  color: #cfa048;
  font-weight: bold;
}


.testimonial-source a {
  color: #cfa048;
  border-bottom: 1px solid #cfa048;
  padding-bottom: 2px;
  text-decoration: none;
  transition: border-color 0.3s ease;
}

.testimonial-source a:hover {
  border-color: #f0d58b;
  color: #f0d58b;
}




