
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Arial, sans-serif;
}

/* ===== PALETA KOLORÓW ===== */
:root {
  --gold: linear-gradient(135deg, #d4af37, #f5e28b);
  --gold-solid: #d4af37;
  --silver: linear-gradient(135deg, #cfd2d6, #f5f5f5);
  --dark: #0f0f12;
  --dark-soft: #1b1b20;
  --light: #f8f8f8;
  --text-muted: #777;
  --header-height: 90px;
}

body {
  background: var(--light);
  color: #222;
}

/* ===== HEADER ===== */
header {
  background: var(--dark);
  padding: 25px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(212,175,55,0.3);
}

header h1 {
  font-size: 1.8rem;
  background: var(--gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav a {
  color: #eee;
  margin-left: 25px;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-solid);
  transition: .3s;
}

nav a:hover::after {
  width: 100%;
}

/* ===== SEKCJE ===== */
section {
  padding: 80px 10%;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  position: relative;
}

h2::after {
  content: '';
  width: 80px;
  height: 3px;
  background: var(--gold);
  display: block;
  margin-top: 10px;
}

p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== HERO ===== */
.hero {
  background:
    linear-gradient(rgba(15,15,18,0.85), rgba(15,15,18,0.85)),
    url('img/hero.jpg') center/cover;
  color: white;
  text-align: center;
  padding: 140px 10%;
}

.hero h2 {
  font-size: 3rem;
}

.hero p {
  max-width: 700px;
  margin: 20px auto 0;
  color: #ddd;
}
/* ===== HERO – TŁA ===== */
.hero-one {
  background:
    linear-gradient(rgba(15,15,18,0.85), rgba(15,15,18,0.85)),
    url('img/3547.jpg') center/cover;
    color: white;
}

.hero-two {
  background:
    linear-gradient(rgba(15,15,18,0.85), rgba(15,15,18,0.85)),
    url('img/3550.jpg') center/cover;
    color: white;
}
.hero-three {
  min-height: calc(100vh - var(--header-height));
  padding-right: 30px;
  margin: 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end; 
  text-align: right;

  background:
    linear-gradient(rgba(15,15,18,0.85), rgba(15,15,18,0.85)),
    url('img/3550.jpg') center / cover no-repeat;

  color: white;
}




/* ===== PRZYCISKI ===== */
.btn-gold {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 36px;
  background: var(--gold);
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: transform .3s, box-shadow .3s;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212,175,55,.4);
}

/* ===== PRODUKTY ===== */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.product {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
  transition: transform .4s;
}

.product:hover {
  transform: translateY(-8px);
}

.product img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.product div {
  padding: 25px;
}

.product h3 {
  margin-bottom: 10px;
}

/* ===== GALERIA ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.gallery img {
  width: 100%;
  border-radius: 15px;
  cursor: pointer;
  transition: transform .4s, box-shadow .4s;
}

.gallery img:hover {
  transform: scale(1.07);
  box-shadow: 0 20px 50px rgba(0,0,0,.2);
}

/* ===== KONTAKT ===== */
.contact-box {
  background: var(--silver);
  padding: 40px;
  border-radius: 25px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: #aaa;
  text-align: center;
  padding: 40px 10%;
  border-top: 1px solid rgba(212,175,55,0.3);
}

footer span {
  color: var(--gold-solid);
}
