/* ===== Złotobrody Barbershop – czarno-złota kolorystyka (jak na logach) ===== */
:root {
  --black: #0d0d0d;
  --black-soft: #1a1a1a;
  --black-card: #141414;
  --gold: #AE8241;
  --gold-light: #c49a50;
  --gold-dark: #8a6634;
  --gold-muted: rgba(174, 130, 65, 0.18);
  --white: #f5f5f5;
  --gray: #8a8a8a;
  --gray-light: #b0b0b0;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--white);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Logo – pełna szerokość u góry, rozciągnięte na cały ekran ===== */
.logo-banner {
  width: 100%;
  background: var(--black);
  border-bottom: 1px solid rgba(174, 130, 65, 0.25);
}

.logo-banner a {
  display: block;
  width: 100%;
  line-height: 0;
}

.logo-full {
  width: 100%;
  height: auto;
  max-height: 50vh;
  object-fit: contain;
  object-position: center top;
  display: block;
  vertical-align: top;
}

/* ===== Header (nawigacja) ===== */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid rgba(174, 130, 65, 0.25);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.5rem;
  position: relative;
}

.header-logo {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  line-height: 0;
  z-index: 1;
}

.header-logo-img {
  height: 2.25rem;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
}

.nav-toggle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  color: var(--gray-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition);
}

.nav a:hover {
  color: var(--gold);
}

.btn-nav {
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.btn-nav:hover {
  background: var(--gold-muted);
  color: var(--gold-light) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin: 0;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 3.5rem;
    left: 0;
    right: 0;
    background: var(--black-soft);
    border-bottom: 1px solid rgba(174, 130, 65, 0.2);
    padding: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .nav a {
    font-size: 1.1rem;
  }
}

/* ===== Hero ===== */
.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 4rem 0;
  background: var(--black);
}

.hero-content {
  position: relative;
  text-align: center;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 1rem;
  color: var(--white);
}

.hero-title span {
  color: var(--gold);
  display: block;
  font-style: italic;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--gray-light);
  max-width: 520px;
  margin: 0 auto 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--black);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold-muted);
  color: var(--gold-light);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* ===== Sections ===== */
.section {
  padding: 4.5rem 0;
}

.section-dark {
  background: var(--black-soft);
}

.section-light {
  background: var(--black);
  color: var(--white);
}

.section-gold {
  background: var(--black-card);
  border-top: 1px solid rgba(174, 130, 65, 0.25);
  border-bottom: 1px solid rgba(174, 130, 65, 0.25);
}

.section-cta {
  background: var(--black);
  text-align: center;
  padding: 5rem 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 2rem;
  text-align: center;
}

.section-logo {
  display: block;
  margin: 0 auto 1rem;
  width: auto;
  height: auto;
  max-width: 160px;
}

.o-nas-logo {
  max-height: 80px;
}

.section-intro {
  text-align: center;
  color: var(--gray-light);
  margin-bottom: 1.5rem;
}

/* ===== O nas ===== */
.about-content {
  max-width: 680px;
  margin: 0 auto;
}

.about-content p {
  margin: 0 0 1rem;
  color: var(--gray-light);
}

.about-content .lead {
  font-size: 1.2rem;
  color: var(--white);
}

.team-box {
  background: var(--black-card);
  border: 1px solid rgba(174, 130, 65, 0.3);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.team-title {
  margin: 0 0 0.75rem !important;
  color: var(--gold) !important;
  font-weight: 600;
}

.team-box ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--gray-light);
}

.about-closing {
  font-style: italic;
  color: var(--gold-light) !important;
  margin-top: 1.5rem !important;
}

/* ===== Standard ===== */
.standard-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 560px;
  margin: 0 auto;
}

.standard-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: var(--gray-light);
}

.standard-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ===== Dla kogo ===== */
.audience-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 480px;
  margin: 0 auto;
}

.audience-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--gray-light);
}

.audience-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ===== Usługi ===== */
.subsection-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold);
  margin: 2.5rem 0 1rem;
}

.subsection-title:first-of-type {
  margin-top: 0;
}

.uslugi-note {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0 0 0.5rem;
}

.uslugi-warning {
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
}

.table-wrap {
  overflow-x: auto;
  margin-bottom: 1rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.price-table th,
.price-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(174, 130, 65, 0.2);
}

.price-table th {
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}

.price-table td {
  color: var(--gray-light);
}

.price-table tbody tr:hover {
  background: var(--gold-muted);
}

.price-table td:last-child {
  text-align: right;
  font-weight: 500;
  color: var(--gold-light);
}

/* ===== Lokalizacje (karta = opis + mapa w jednej ramce) ===== */
.maps-intro {
  text-align: center;
  color: var(--gray);
  font-size: 0.95rem;
  margin: 0 0 2rem;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.location-card {
  background: var(--black-card);
  border: 1px solid rgba(174, 130, 65, 0.25);
  border-radius: 8px;
  padding: 0;
  transition: var(--transition);
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.location-card:hover {
  border-color: rgba(174, 130, 65, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.location-card > .location-logo,
.location-card > h3,
.location-card > .location-address,
.location-card > .location-desc {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.location-logo {
  max-width: 400px;
  width: 100%;
  height: auto;
  margin: 1.5rem auto 1rem;
  display: block;
}

.location-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold);
  margin: 0 0 0.5rem;
}

.location-address {
  color: var(--gold-light);
  font-size: 0.9rem;
  margin: 0 0 1rem;
  font-weight: 500;
}

.location-desc {
  color: var(--gray-light);
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
}

.location-map-wrap {
  position: relative;
  width: 100%;
  margin: 0 0 1rem;
  border-top: 1px solid rgba(174, 130, 65, 0.15);
  border-bottom: 1px solid rgba(174, 130, 65, 0.15);
}

.location-map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  cursor: pointer;
}

.location-map-iframe {
  width: 100%;
  height: 240px;
  border: none;
  display: block;
  vertical-align: top;
}

.location-links {
  padding: 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
}

.location-links .link-gold {
  display: inline-block;
}

.link-gold {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.link-gold:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

/* ===== CTA ===== */
.cta-content {
  max-width: 560px;
}

.cta-lead {
  font-size: 1.1rem;
  color: var(--gray-light);
  margin: 0 0 2rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.cta-hint {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 1rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(174, 130, 65, 0.25);
  padding: 2rem 0;
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.footer-logo {
  max-width: 160px;
  width: 100%;
  height: auto;
  opacity: 0.95;
}

.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
}

.footer-brand .logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--gray);
}

.footer-locations {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0 0 0.25rem;
}

.footer-owner {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0 0 0.5rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--gray);
  margin: 0;
}

/* ===== Cookie banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--black-soft);
  border-top: 1px solid rgba(174, 130, 65, 0.3);
  padding: 1rem 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.cookie-banner-text {
  margin: 0;
  color: var(--gray-light);
  font-size: 0.9rem;
  line-height: 1.5;
  flex: 1;
  min-width: 260px;
}

.cookie-banner-text .link-gold {
  white-space: nowrap;
}

.cookie-banner-btn {
  flex-shrink: 0;
}
