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

body {
  font-family: "Roboto", sans-serif;
  background-color: #ffffff;
  color: #fff;
}
section {
  padding: 60px 40px;
  /* zastanowic sie czy do lewego */
  text-align: start;
}
/* to do zmiany na features-title */
.header {
  font-size: 20px;
  color: #0a0a0a;
  display: flex;
  justify-content: flex-start;
  padding-left: 16px;

}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* MENU */
.menu {
  position: fixed;
  top: 0;
  width: 100%;
  background: #FFFFFF;
  backdrop-filter: blur(5px);
  z-index: 100;
}

.menu-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo img {
  display: block;
  height: clamp(50px, 6vw, 68px);
  width: auto;
}

.nav a {
  color: black;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
}

.nav a:hover {
  color: #9B7D61;
}

/* BURGER  */

.btn-menu {
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 min-height: 28px;
	 padding-left: 0;
	 padding-right: 0;
	 border: none;
	 background-color: transparent;
	 color: inherit;
	 cursor: pointer;
	 transition: 0.3s ease;
}
 .btn-menu:focus {
	 outline: none;
}
 .btn-menu__text {
	 margin-left: 10px;
	 font-size: 1.125rem;
	 font-weight: 700;
	 line-height: 1;
}
 .btn-menu__bars {
	 display: block;
	 position: relative;
	 width: 30px;
	 height: 4px;
	 background-color: red;
	 transition: 0.3s;
}
 .btn-menu__bars:before, .btn-menu__bars:after {
	 content: "";
	 display: block;
	 position: absolute;
	 left: 0;
	 width: 100%;
	 height: 100%;
	 background-color: red;
	 transition: 0.3s;
}
 .btn-menu__bars:before {
	 transform: translate(0, -12px);
}
 .btn-menu__bars:after {
	 transform: translate(0, 12px);
}
 .menu-open .btn-menu .btn-menu__bars {
	 background-color: transparent;
}
 .menu-open .btn-menu .btn-menu__bars:before {
	 transform: rotate(45deg);
}
 .menu-open .btn-menu .btn-menu__bars:after {
	 transform: rotate(-45deg);
}
 

/* BANNER */

.banner {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: clip;
}

.banner::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url('images/sliwka2.JPG') center/cover no-repeat;
  z-index: -2;
  will-change: transform;
}

.banner::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(5px) saturate(120%);
  z-index: -1;
}

/* Nie potrzebujemy już dodatkowej overlay w HTML */
.banner .overlay {
  display: none;
}




/* to zmienic */
.btn {
  background: #6cc26f;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
}

.btn:hover {
  background: #4da954;
}

/* STATS */
.stats {
  /* padding: 80px 0; */
  background: #E9D7C0;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.stat {
  text-align: center;
}

.stat span {
  font-size: 2rem;
  color: #9B7D61;
  display: block;
}

.stat p {
  color: #9B7D61;
}

/* categories */
/* .categories {
  background-color: #ffffff;
  text-align: center;
} */

/* .categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.feature {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 250px;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15)),
    url('images/sliwka.jpg') center/cover no-repeat;
  transition: transform 0.8s ease;
  filter: brightness(0.8);
  z-index: 0;
}

.feature:hover .feature-bg {
  transform: scale(1.10);
}

.feature-content {
  position: relative;
  z-index: 1;

  border-radius: 10px;
}

#okolicznosciowe {
  background: url('images/sliwka.jpg') center/cover no-repeat;
}

.feature h3 {
  font-size: 2rem;
  color: #6cc26f;
}

.feature h4 {
  margin: 10px 0;
  font-size: 1.2rem;
}

.feature p {
  color: black;
} */

/* CONTACT */
.contact {
  /* background-color: #b4957c; */
  background: url('images/heroImage-obrazki-szerszy.png') center center / cover no-repeat;
  backdrop-filter: blur(5px) saturate(120%);

  
  /* background-size: 100%;
  background-position: top top;
  background-repeat: no-repeat; */
  /* padding: 80px 0; */
  /* text-align: center; */
}

.contact .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(1px) saturate(120%);
}
.contact-image {

}

.contact .container {
  background: #2e170a4d;
  border-radius: 20px;
  padding: 40px 60px;
  width: 50%;
  margin: auto;
  backdrop-filter: blur(5px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: inset 0px 0px 11px -1px #ffffff54;
  color: #fff;
}
/* tutaj szerokosc maila ustawic  */
@media (min-width: 30em) and (max-width: 50em) {
  
}

/* tutaj blur na zdj  */
/* .contact::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url('images/heroImage-obrazki-szerszy.png') center center / cover no-repeat;
  z-index: 0;
  will-change: transform;
}

.contact::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(5px) saturate(120%);
  z-index: 0;
} */
.contact-inner h2 {
  margin-bottom: 9px;
}

.contact-inner h2,
.contact-inner p {
  color: #ffffff;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 30px auto 0;
}

.contact button {
  /* zostaje zolciuuutkiiiiiiii <3 */
  background: #f0a522;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  margin: auto;
  font-size: 16px;
  padding: 20px 30px;
  text-transform: uppercase;
}

.contact button:hover {
  background: #4da954;
}

.inline-inputs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.form-field {
  flex: 1;
  padding: 0.9rem 1.2rem;
  border: none;
  border-radius: 10px;
  background-color: #e2ebede0;
  font-size: 1rem;
  font-family: inherit;
  color: #4d2d0e;
  outline: none;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.form-field:focus-visible {
  outline: none;
  border-color: #5c2012;
  box-shadow: 0 0 0 3px #ffffff;
}

/* ponizej na chwile testuje sobie:  */
.features-section {
  background-color: #fdf6f0;
}

.features-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #4b2e2e;
  font-family: "Poppins", sans-serif;
  letter-spacing: 1px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px 0;
  background: #fdf6f0;
}

.feature-card {
  position: relative;
  background-color: #f8f0e6;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 300px;
  
}


.card-content {
  padding: 20px;
  z-index: 2;
  position: relative;
  background: #f8f0e6;
  clip-path: ellipse(150% 100% at 50% 0%);
  text-align: center;
}

.icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.card-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #4b2e2e;
}

.card-content p {
  font-size: 0.9rem;
  color: #5c4a3d;
}

.card-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  height: 100px;
  inset: 0;
  transition: transform 0.6s ease;
  filter: brightness(0.85);

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

.image-1 { background-image: url('images/kwiaty2.jpg'); }
.image-2 { background-image: url('images/kwiaty2.jpg'); }
.image-3 { background-image: url('images/kwiaty2.jpg'); }
.image-4 { background-image: url('images/kwiaty2.JPG'); }


/* FOOTER */
/* footer {
  background: #0a0a0a;
  text-align: center;
  padding: 20px;
  color: #aaa;
  font-size: 0.9rem;
} */


/* FOOTER */

.logo-footer {
  height: 100px;
}

.site-footer{
  background: #0a0a0a;              /* tło footera */
  color: #ffffff;                    /* kolor bazowy tekstu */
  padding: clamp(28px, 4vw, 48px) clamp(16px, 4vw, 32px) 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.footer-inner{
  margin-inline: auto;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1.1fr 1.2fr; /* lewa/prawa */
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

/* LEWA CZĘŚĆ */
.footer-brand .footer-logo{
  display: inline-flex;
  align-items: baseline;
  gap: .5rem;
  text-decoration: none;
  color: #ffffff;
  margin-bottom: .5rem;
}
.logo-mark{
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border: 2px solid #9B7D61;
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: .5px;
}
.logo-text{
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 22px);
  opacity: .95;
}

.footer-desc{
  color: #cfcfcf;                    /* tekst muted */
  margin: .5rem 0 1rem;
  line-height: 1.5;
  max-width: 40ch;
}

.footer-socials{
  display: flex;
  gap: 12px;
  margin-top: .25rem;
}
.social-link{
  inline-size: 40px;
  block-size: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: #111111;
  border: 1px solid #222222;         /* border */
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  outline: none;
}
.social-link svg{
  width: 20px; height: 20px;
  fill: #e9e9e9;                     /* link */
}
.social-link:hover{
  transform: translateY(-2px);
  border-color: #9B7D61;             /* akcent przy hover */
}
.social-link:hover svg{
  fill: #ffffff;
}
.social-link:focus-visible{
  box-shadow: 0 0 0 3px rgba(212, 179, 139, 0.6); /* focus ring (#d4b38b) */
}

/* PRAWA CZĘŚĆ — DWIE KOLUMNY */
.footer-links{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}
.link-column{
  display: grid;
  align-content: start;
  gap: .5rem;
}
.link-title{
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: .25rem;
}
.footer-link{
  color: #e9e9e9;
  text-decoration: none;
  font-size: .95rem;
  line-height: 1.7;
  border-radius: 8px;
  padding: 2px 0;
  outline: none;
  transition: color .18s ease, transform .18s ease, background-color .18s ease;
}
.footer-link:hover{
  color: #ffffff;
  transform: translateX(2px);
}
.footer-link:focus-visible{
  background: #121212;
  box-shadow: 0 0 0 3px rgba(212, 179, 139, 0.6); /* focus ring */
}

/* STYLOWY PASEK — gradient bez color-mix */
.footer-stripe{
  margin-top: clamp(20px, 3vw, 36px);
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0) 0%,
    #c9ae8e 18%,     /* jaśniejszy odcień akcentu */
    #b99774 38%,     /* średni odcień akcentu */
    #c9ae8e 58%,
    rgba(0,0,0,0) 100%
  );
  opacity: .9;
}

/* DÓŁ */
.footer-bottom{
  margin: 10px auto 0;
  max-width: 1200px;
  padding: 12px 0 28px;
  color: #cfcfcf;
  border-top: 1px solid #222222;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-bottom small{
  font-size: .85rem;
  letter-spacing: .02em;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 820px){
  .footer-inner{
    grid-template-columns: 1fr;
  }
  .footer-links{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px){
  .footer-links{
    grid-template-columns: 1fr;
  }
  .footer-bottom{
    text-align: center;
    padding-inline: 12px;
  }
}

/* REDUKCJA ANIMACJI */
@media (prefers-reduced-motion: reduce){
  .social-link,
  .footer-link{
    transition: none;
  }
}


/* ___________________________________________________ */

/* mobile responsive*/

@media (max-width: 768px) {

  /* 1) Full width layout + odstęp pod fixed menu */
  body {
    padding-top: 72px;
  }

  .container {
    width: 100%;
    max-width: none;
    padding: 0 16px;
  }

  /* banner: kompaktowe proporcje i typografia */
  .banner {
    height: 80vh;
  }

  .banner-content {
    margin: 0 0 24px 0;
    max-width: 100%;
  }

  .banner h1 {
    font-size: 2rem;
  }

  .banner p {
    font-size: 1rem;
  }

  /* 2) STATS: siatka kwadratów (tiles) */
  .stats {
    padding: 48px 0;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    align-items: stretch;
  }

  .stat {
    /* background: rgba(255,255,255,0.6); */
    /* border-radius: 14px; */
    color: #2b1a0b;
    display: grid;
    place-items: center;
    padding: 8px;
    aspect-ratio: 1 / 1;
    /* robi kwadrat */
  }

  .stat span {
    font-size: 1.6rem;
    color: #6cc26f;
  }

  .stat p {
    margin-top: 4px;
    color: #7b6049;
  }



  /* 4) CONTACT: pełna szerokość, stacked inputs, większe tap-targety */
  .contact {
    padding: 40px 0;
    background-position: center;
  }

  .contact .container {
    width: calc(100% - 32px);
    padding: 20px;
    border-radius: 16px;
    backdrop-filter: blur(3px) saturate(115%);
    background: rgba(46, 23, 10, 0.55);
    /* ciut ciemniej dla czytelności */
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 8px -2px rgba(255, 255, 255, 0.35);
  }

  .contact-inner h2 {
    font-size: 1.4rem;
  }

  .contact-inner p {
    font-size: 0.95rem;
  }

  .contact form {
    gap: 12px;
    margin-top: 20px;
  }
/* to chyba zbedne bo nei robie jednak inputek obok siebie */
  /* .inline-inputs { */
    /* flex-direction: column; */
    /* email & telefon pod sobą */
    /* gap: 12px; */
  /* } */

  .form-field {
    width: 100%;
    padding: 14px 14px;
    font-size: 16px;
    /* minimum dla iOS, by nie zoomował klawiatury */
  }

  .form-field:focus-visible {
    box-shadow: 0 0 0 3px rgba(108, 194, 111, 0.9);
    border-color: transparent;
  }

  .contact button {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    margin-top: 4px;
  }

  /* menu na mobile: ciaśniejsze pady */
  .menu-inner {
    padding: 14px 10px;
  }

  .nav a {
    margin: 0 10px;
  }
}

/* ===== BARDZO MAŁE EKRANY (≤480px) – kosmetyka ===== */
@media (max-width: 480px) {
  .feature {
    min-width: 92%;
  }

  .stat span {
    font-size: 1.4rem;
  }

  .banner h1 {
    font-size: 1.7rem;
  }
}