/* ==== STYLE DLA MENU I STOPKI ==== */

/* Zmienne CSS */
:root {
  --gold: #C8A85A;
  --navy: #1F2A44;
  --ink: #1E2430;
  --muted: #6B7280;
  --paper: #FAF8F5;
  --white: #FFFF;
  --line: #E6E1D8;
--shadow: 0 6px 18px rgba(0, 0, 0, .06);
  --radius: 12px;

}

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

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Noto Sans", Arial, sans-serif;
  color: var(--ink);
  line-height: 1.6;
}

/* ==== HEADER I MENU ==== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

#header {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

#header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

#menu1 {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Logo */
#logo {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1002;
}

#logo a,
#logo a:link,
#logo a:visited,
#logo a:hover,
#logo a:active {
  text-decoration: none !important;
  color: inherit !important;
  border: 0 !important;
}

#logo h7 {
  margin-top: 5px;
  font-size: 28px;
  font-family: "Great Vibes", cursive;
  line-height: 30px;
  color: #272727;
  font-weight: 400;
  font-style: normal;
  border: 1px solid #272727;
  padding: 6px 36px;
  border-radius: 170px / 45px;
  background: transparent;
  white-space: nowrap;
}

/* Nawigacja */
#nv1 {
  display: flex;
  justify-content: center;
  flex: 1;
  margin-left: 200px;
}

#nv1 ul {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
  margin: 0;
  padding: 0;
  justify-content: center;
}

#nv1 li {
  position: relative;
}

#nv1 li a {
  display: block;
  padding: 16px 18px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
  white-space: nowrap;
  text-shadow: none;
}

/* Specjalny styl dla przycisku "Zarezerwuj termin" */
#nv1 li a[href*="zarezerwuj"],
#nv1 li a[href*="Zarezerwuj"],
#nv1 li a[href*="termin"],
#nv1 li a[href*="kalendarz"] {
  border: 1px solid var(--gold) !important;
  border-radius: 8px;
  font-weight: 500 !important;
  padding: 12px 20px !important;
  background: transparent !important;
  color: var(--gold) !important;
  transition: all 0.3s ease !important;
}

#nv1 li a[href*="zarezerwuj"]:hover,
#nv1 li a[href*="Zarezerwuj"]:hover,
#nv1 li a[href*="termin"]:hover,
#nv1 li a[href*="kalendarz"]:hover {
  background: var(--gold) !important;
  color: #fff !important;
  border-color: var(--gold) !important;
}

#nv1 li a:hover {
  color: var(--gold);
}

/* Aktywny link */
#nv1 li a.active {
  color: var(--gold);
  font-weight: 600;
}

/* Hamburger menu */
.hamburger {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger .line {
  width: 28px;
  height: 3px;
  background: #6e6e6e;
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* ==== STOPKA ==== */
footer {
  background: var(--navy);
  color: #fff;
  margin-top: 40px;
  padding: 32px 0;
  position: static;
}

#footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: static;
}

.footer-content {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  margin-bottom: 16px;
}

.footer-brand h4 {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
}

.footer-brand p {
  opacity: .85;
}

.footer-contact h5 {
  color: var(--gold);
  margin-bottom: 8px;
}

.footer-contact a {
  color: var(--gold);
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  font-size: .95rem;
  opacity: .9;
}

.footer-links {
  margin-top: 8px;
}

.footer-links a {
  color: #fff;
  opacity: .8;
  text-decoration: none;
  margin: 0 10px;
}

.footer-links a:hover {
  opacity: 1;
}

/* ==== RESPONSYWNOŚĆ ==== */

@media (max-width: 1024px) {
  #nv1 {
    margin-left: 0;
  }

  #logo {
    position: relative;
    left: auto;
    transform: none;
    margin-bottom: 10px;
  }

  #menu1 {
    flex-direction: column;
    height: auto;
    padding: 20px 0;
  }
}

@media (max-width: 900px) {
  #nv1 ul {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  #nv1 ul.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  #nv1 li {
    width: 100%;
    text-align: center;
  }

  #nv1 li a {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
  }

  #nv1 li:last-child a {
    border-bottom: none;
  }

  .hamburger {
    display: block;
  }

  .hamburger.active .line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active .line:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  #menu1 {
    height: 80px;
    flex-direction: row;
    justify-content: space-between;
  }

  #logo {
    position: absolute;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 0;
  }

  #nv1 {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  #logo h7 {
    font-size: 24px;
    padding: 4px 24px;
  }

  #menu1 {
    height: 70px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-contact {
    text-align: center;
  }
}

@media (max-width: 480px) {
  #logo h7 {
    font-size: 20px;
    padding: 3px 20px;
  }

  #menu1 {
    height: 60px;
  }
}


/* ==== POPRAWKI DLA HERO TEXT NA MOBILE ==== */

@media (max-width: 768px) {
  
  /* Zmniejszenie wysokości hero image */
  #header-img {
    height: 280px;
margin-top: 50px;
  }
  
  /* Poprawa czytelności tekstu na hero */
  .center-1b.onas {
    top: -105px;
  }
  
  .center-1b.onas h1 {
    font-size: 32px;
    line-height: 1.3;
    /* GŁÓWNA ZMIANA - mocniejszy cień + półprzezroczyste tło */
    text-shadow: 
      2px 2px 4px rgba(0, 0, 0, 0.9),
      4px 4px 8px rgba(0, 0, 0, 0.7),
      0 0 20px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.35);
    padding: 16px 20px;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  
  #header-img {
    height: 250px;
  }
  
  .center-1b.onas {
    top: -125px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 15px;
    width: 95%;
  }
  
  .center-1b.onas h1 {
    font-size: 26px;
    padding: 14px 18px;
    /* Jeszcze mocniejszy cień dla najmniejszych ekranów */
    text-shadow: 
      2px 2px 6px rgba(0, 0, 0, 1),
      4px 4px 10px rgba(0, 0, 0, 0.8),
      0 0 25px rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.4);
  }
}



/* ==== POPRAWKI DLA HERO TEXT NA MOBILE ==== */

@media (max-width: 768px) {
..
..
..
  .center-1b.onas h1 {
    font-size: 32px;
    /* GŁÓWNA ZMIANA - mocniejszy cień + półprzezroczyste tło */
    background: rgba(0, 0, 0, 0.35);
    padding: 16px 20px;
    border-radius: 12px;
}}

.center-1b.onas h1 {
  color: #ECE6CF; /* złoty kolor */
  text-shadow:.
    2px 2px 4px rgba(0, 0, 0, 1),
    4px 4px 8px rgba(0, 0, 0, 0.9),
    0 0 20px rgba(0, 0, 0, 0.7);
}



@media (max-width: 480px) {
..
  #header-img {
    height: 250px;
  }
..
  .center-1b.onas {
    top: -125px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 15px;
    width: 95%;
  }
..
  .center-1b.onas h1 {
    font-size: 26px;
    padding: 14px 18px;
    /* Jeszcze mocniejszy cień dla najmniejszych ekranów */
    text-shadow:.
      2px 2px 6px rgba(0, 0, 0, 1),
      4px 4px 10px rgba(0, 0, 0, 0.8),
      0 0 25px rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.4);
  }
}


