/*------------------ cookies

/* 1. TŁO PRZYCIEMNIAJĄCE */
.cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999998;
  transition:
    opacity 0.8s ease,
    visibility 0.8s;
  opacity: 0;
  visibility: hidden;
  background: rgba(
    0,
    0,
    0,
    0.4
  ); /* Delikatne przyciemnienie na obu urządzeniach */
  /* backdrop-filter: blur(3px); */
}

/* 2. BANER - Domyślnie DESKTOP (Szeroki pasek na dole) */
.cookie-container {
  position: fixed;
  bottom: -150px; /* Startuje schowany */
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1100px;
  background: #f1eceabe;
  color: #333;
  padding: 20px 40px;

  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
  z-index: 999999;
  opacity: 0;
  transition:
    bottom 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.8s ease;
}

/* Układ treści na Desktopie */
.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cookie-content h2 {
  margin: 0;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #333;
  font-weight: bold;
}

.cookie-content p {
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
  color: #666;
  flex: 2;
}

/* Przyciski w Twoim nowym stylu */
.cookie-actions {
  display: flex;
  gap: 12px;
  flex: 1;
  justify-content: flex-end;
}

#cookie-btn {
  background: #333; /* Ciemny przycisk z obrazka */
  color: #fff;
  border: none;
  padding: 12px 25px;
  cursor: pointer;

  text-transform: uppercase;
  font-size: 12px;
  transition: 0.3s;
  letter-spacing: 0.2em;
  white-space: nowrap;
}

#cookie-btn:hover {
  background: #000000; /* Lekkie rozjaśnienie czerni */
  letter-spacing: 4px; /* Powiększenie odstępów przy najechaniu - bardzo modne */
}

.cookie-link-btn:hover {
  letter-spacing: 4px;
  background: rgba(230, 217, 209, 0.69);;
}

.cookie-link-btn {
  text-decoration: none;
  color: #333;
  border: 1px solid #333;
  padding: 12px 25px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  letter-spacing: 0.2em;
  white-space: nowrap;
}

/* Stan aktywny */
.cookie-overlay.active {
  opacity: 1;
  visibility: visible;
}
.cookie-overlay.active .cookie-container {
  bottom: 20px;
  opacity: 1;
}

/* 3. ADAPTACJA NA MOBILE (Telefon na dole) */
@media (max-width: 991px) {
  .cookie-container {
    width: 90%;
    padding: 25px;
    bottom: -300px; /* Startuje niżej na mobile */
  }

  .cookie-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .cookie-content h2 {
    font-size: 18px;
    display: block;
  }
  .cookie-content p {
    text-align: center;
    font-size: 14px;
  }

  .cookie-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  #cookie-btn,
  .cookie-link-btn {
    width: 100%;
    padding: 15px;
  }
}

/*---koniec cookies------------------------------*/

.banner {
	background-image: linear-gradient(
			0deg,
			rgb(29 29 27 / 81%) 0%,
			rgb(26 19 16 / 54%) 78%
		),
		url("../photos/strefa-fryzur/top-strefa-fryzur.jpg");
}

a.nav-link,
a.dropdown-item {
	color: #e6d9d1;
}

.nav-link.disabled {
	color: #e6d9d13f;
}

h1.header-text {
	color: #e6d9d1;
}

p.header-text-p {
	color: #e6d9d1a0;
}

a.nav-link:hover {
	color: #755b4f;
	/* border: 1px solid #755b4f; */
	background: #00000034;
}

a.white {
	border: 1px solid #e6d9d1;
	color: #e6d9d1;
}
a.white:hover {
	background: #e6d9d1;
	color: black;
}

/* a.white:visited {
	color: black;
} */

a.white-frame {
	border: 1px solid #e6d9d1;
	color: #e6d9d1;
}

a.white-frame:hover {
	background: #e6d9d1;
	color: black;
}

a.white-solid {
	border: 1px solid #e6d9d1;
	background: #e6d9d1;
	color: black;
}
a.white-solid:hover {
	background: none;
	color: #e6d9d1;
}

#section-reserve {
	background-image: url(../photos/strefa-fryzur/photo-bg-reserve.jpg);
}

#section-5-footer {
	background-color: #1c1917;
}
.navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgb(192 173 161)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar-toggler {
	border-color: rgb(192 173 161);
}


.photo-ola{
	border-top-left-radius: 400px;
	border-top-right-radius: 400px;
	aspect-ratio:3/4;
}


.text-ola{
	height: auto;
	flex-flow: column wrap;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 8%;
}


@media (max-width: 992.98px) {
	a.white-frame {
		border: none;
	}

	.banner {
		background-image: url("../photos/strefa-fryzur/top-mobile.jpg");
	}

	.photo-ola{
		margin-top: -90px;
	}

	.text-ola{
		padding: 0;
	}
