
:root {
  --gold: #c5a46d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: #0a0a0a;
  color: #eee;
}

/* NAV */
nav {
  position: fixed;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

nav h2 {
  color: var(--gold);
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
}

/* HERO */
.hero {
  height: 100vh;
  background: url('22lr.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  font-size: 3.5em;
  background: rgba(0,0,0,0.6);
  padding: 30px;
  border: 1px solid var(--gold);
}

/* SECTIONS */
section {
  padding: 100px 20px;
  max-width: 1100px;
  margin: auto;
}

h2 {
  margin-bottom: 20px;
  color: var(--gold);
}

/* CARDS */
.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 250px;
  background: #111;
  padding: 30px;
  border: 1px solid #222;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
}
.card2 {
  
   flex: 1;
  background: #111;
  padding: 5px;
  border: 1px solid #222;
  

  
}


/* GALLERY */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.gallery img {
  width: 100%;
  max-width: 250px;
  /*filter: grayscale(100%);*/
  border-radius: 10px;
  transition: 0.3s;
}

.gallery img:hover {
  /*filter: grayscale(0%);*/
  transform: scale(1.1);
}

/* CONTACT */
.contact-box {
  background: #111;
  padding: 40px;
  border: 1px solid #222;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px;
  background: #000;
}

/* ANIMATION */
.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: 1s;
}

.fade.visible {
  opacity: 1;
  transform: translateY(0);
}
p {text-align: justify;}

/* GLOBALNE LINKI */
a {
  position: relative;
  color: #bfbfbf; /* delikatna szarość zamiast czystej bieli */
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: bold;
}

/* linia pod linkiem */
a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

/* hover */
a:hover {
  color: var(--gold);
}

a:hover::after {
  width: 100%;
}

/* kliknięty / aktywny */
a:active {
  color: #fff;
}
.socials {
  display: flex;
  gap: 40px; /* odstęp między boxami */
  justify-content: center; /* wyśrodkowanie */
  flex-wrap: wrap; /* żeby na mobile się nie rozjechało */
}

.socials div {
  background: #111;
  padding: 20px;
  border: 1px solid #222;
  text-align: center;
}
