/* =============================================== */
/* STYLE.CSS — globalna typografia i kolory tekstu */
/* =============================================== */

/* NAPRAWIONO: @import przeniesiony na samą górę pliku */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&display=swap');


/* === HEADER === */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #FDFDFD;
  backdrop-filter: saturate(1.1) blur(4px);
  padding: 20px 0;
  z-index: 1000;
 
  transition: transform 0.3s ease-in-out;
}

/* gdy ma klasę .hide — chowaj do góry */
.top-bar.hide {
  transform: translateY(-100%);
}

.top-bar .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.brand-name-gold a {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 24px;
  background: #000000;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.header-menu {
  display: flex;
  gap: 30px;
  margin-left: auto;
}

.header-menu a {
  font-family: "Raleway", sans-serif; /* taka sama jak reszta strony */
  font-weight: 400;                 /* delikatnie pogrubione, jak tekst „Menu” */
  color: #000000;
  text-decoration: none;
  letter-spacing: 0.3px;            /* minimalnie ciaśniej, wygląda lepiej przy Inter */
  font-size: 16px;
  transition: opacity 0.25s ease, color 0.25s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* NAPRAWIONO: Dodano 'color' aby nadpisać globalne 'a:hover' */
.header-menu a:hover {
  opacity: 0.6;
  
}

/* === FOOTER === */
.site-footer {
  position: relative;
  background-color: #111111;
  
  z-index: 0;
}

.site-footer .copy::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.35); /* zwykła linia */
}




.footer-inner {
 
  max-width: 1600px;      /* ściska treść do środka */
  margin: 0 auto;         /* centrowanie całego footera */
  padding: 80px 60px 20px;/* góra | lewo/prawo | dół */
}



.copy {
  text-align: center;
  color: #ffffff;
  opacity: 0.8;
  font-size: 15px;
  position: relative;
  bottom: 0;
  margin-top: 60px;
}

html {
  scroll-behavior: smooth;
}

/* ===== FOOTER LAYOUT JAK NA SCREENIE ===== */

.footer-content{
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  align-items: start;
}

/* LEWA KOLUMNA */
.footer-newsletter{
  color: #fff;
  max-width: 420px;
}

.footer-title{
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.footer-subtitle{
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 18px;
  line-height: 1.4;
}

/* FORM */
.footer-form{
  width: 100%;
}

.footer-form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 10px;
}

.footer-form-row--email{
  grid-template-columns: 1fr auto;
  align-items: end;
}

.footer-label{
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  text-transform: uppercase;
  opacity: 0.7;
  letter-spacing: 0.08em;
}

.footer-label input{
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding: 8px 0;
  color: #fff;
  font-size: 14px;
  outline: none;
}

.footer-label input::placeholder{
  color: rgba(255,255,255,0.4);
}

/* PRZYCISK W STOPCE – używa Twojego btn-black */
.footer-btn{
  height: 36px;
  padding: 0 18px;
  font-size: 11px;
  letter-spacing: 0.12em;
}

/* PRAWA STRONA (kolumny linków) */
.footer-links{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col-title{
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
  opacity: 0.9;
}

.footer-col a{
  display: block;
  color: #fff;
  opacity: 0.75;
  font-size: 13px;
  margin-bottom: 8px;
  transition: opacity 0.2s ease;
}

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

/* RESPONSYWNOŚĆ */
@media (max-width: 1024px){
  .footer-content{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-links{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .footer-form-row{
    grid-template-columns: 1fr;
  }
  .footer-form-row--email{
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .footer-links{
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

:root {
  --gold: #d4af37;
  --gold-strong: #f5d87a;
  --light: #ffffff;
  --text: #ffffff;
  --bg: #ffffff;
  /* NAPRAWIONO: Dodano brakujące definicje kolorów */
  --text-dark: #222222;
  --text-gray: #555555;
  --accent: #0a4f46;
}

/* --- Reset marginesów i podstawowa typografia --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}




/* === UKŁAD HEADERA: logo na środku, menu po lewej, linki po prawej === */
.header-flex {
  display: flex;
  align-items: left;
  justify-content: space-between;
  position: relative;
}






/* Prostokątny czarny przycisk */
a.btn-black,
button.btn-black {
  display: inline-block;
  padding: 10px 26px;

  background-color: #000000;
  color: #ffffff;

  border: none;
  border-radius: 0;          /* brak zaokrągleń */

  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;

  cursor: pointer;
  transition: opacity 0.2s ease;
}

/* Hover: tylko lekkie przygaszenie */
a.btn-black:hover,
button.btn-black:hover {
  opacity: 0.8;
}

