:root {
  --bg: #faf7fb;
  --primary: #6f4c7f;
  --secondary: #c7a0c7;
  --accent: #eee3f1;
  --text: #3a2f3f;
}

/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  margin-top: 90px;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 60px;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 60px;
}

.brand-name {
  font-size: 20px;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
}

/* HAMBURGER */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--text);
}

/* HERO */
.hero {
  min-height: 65vh;
  padding: 120px 20px 80px;
  background:
    linear-gradient(160deg, #d6a0e5, #f4eaf8, var(--bg));
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-inner {
  max-width: 800px;
}

.hero-label {
  letter-spacing: 0.2em;
  font-size: 12px;
  text-transform: uppercase;
  color: #7d6a86;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  margin: 30px 0;
}

.hero-title span {
  color: BLACK;
}

.hero-description {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-dynamic {
  font-size: 22px;
  color: var(--primary);
}

.hero-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}

.hero-divider span {
  width: 70px;
  height: 1px;
  background: #cbb7d1;
}

.hero-divider i {
  color: var(--secondary);
}

/* SECTIONS */
.section {
  padding: 120px 60px;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  margin-bottom: 30px;
  position: relative;
}

/* ozdobna kreska */
.section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--secondary);
  margin-top: 12px;
}

/* wyjątek: aktualności */
.social h2::after {
  display: none;
}

.section-intro {
  max-width: 600px;
  margin-bottom: 40px;
}

/* ABOUT */
.about {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text {
  text-align: left;
}

.about-image {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 3;
  background: var(--accent);
  border-radius: 20px;
  margin: 0 auto;
}

/* REALIZACJE */
.realizacje-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.realizacja {
  height: 260px;
  background: var(--accent);
  border-radius: 22px;
}

/* SOCIAL */
.social {
  text-align: center;
}

.social-icons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.social-icons a {
  text-decoration: none;
  color: var(--primary);
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-icons i {
  font-size: 28px;
}

/* FOOTER */
.footer {
  background: var(--accent);
  padding: 60px 20px 30px;
  text-align: center;
  font-size: 14px;
  color: #6d5c73;
}

.footer-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-contact h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 15px;
}

.footer-contact p {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.footer-bottom {
  font-size: 14px;
  color: #6d5c73;
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .nav {
    padding: 18px 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 14px;
    margin-top: 12px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .about {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .realizacje-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .section {
    padding: 100px 30px;
  }

  .hero-title {
    font-size: 42px;
  }
}
/* --- HERO dekoracyjne kwiatki --- */
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.hero-divider span {
  width: 80px;
  height: 1px;
  background: #cbb7d1;
}

.hero-divider i {
  color: var(--secondary);
  font-size: 20px;
}

/* dodanie kwiatków na banerze */
.hero #flower1,
.hero i.bi-flower2,
.hero i.bi-flower3 {
  position: absolute;
  font-size: 48px;
  color: var(--secondary);
  opacity: 0.2;
  z-index: 0;
}

.hero #flower1 {
  top: 5%;
  left: 5%;
}

.hero i.bi-flower2 {
  top: 20%;
  right: 1%;
}

.hero i.bi-flower3 {
  bottom: 10%;
  left: 25%;
}

/* HERO inner nad kwiatkami */
.hero-inner {
  position: relative;
  z-index: 1;
}

/* --- REALIZACJE hover --- */
.realizacja {
  height: 260px;
  background: var(--accent);
  border-radius: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.realizacja:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 15px 25px rgba(111, 76, 127, 0.25);
}
