/* ===== ROOT COLORS ===== */
:root {
  --pink: #DE5191;
  --purple: #512E7B;
  --bg-dark: #0f0f14;
  --bg-card: #181825;
  --text-light: #f5f5f5;
  --text-muted: #c0c0c0;
}

/* ===== GLOBAL ===== */
body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding-top: 70px; /* dla navbar fixed */
}

/* ===== NAVBAR ===== */
.navbar {
  background-color: rgba(15,15,20,0.9);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-link {
  color: var(--text-muted) !important;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--pink) !important;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--pink);
  left: 0;
  bottom: -6px;
}

/* ===== HERO ===== */
.hero {
  height: 85vh;
  background: linear-gradient(rgba(15,15,20,.85), rgba(15,15,20,.85)),
              url("../img/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero h1 {
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
}

.hero h1 span {
  color: var(--pink);
}

.hero p.lead {
  color: #ffffff;
  font-size: 1.25rem;
  text-shadow: 1px 1px 8px rgba(0,0,0,0.5);
}

/* ===== SECTIONS ===== */
.section-title {
  color: var(--pink);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.about-text {
  color: var(--text-light);
  line-height: 1.8;
}

/* ===== BUTTONS ===== */
.btn-main {
  background-color: var(--pink); /* różowy, mocny */
  color: #fff; /* biały tekst */
  border: 2px solid #fff; /* biała ramka, statyczna */
  padding: 12px 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: none; /* wyłącz animacje */
  box-shadow: none; /* brak cieni */
}

.btn-main:hover {
  background-color: var(--pink); /* pozostaje taki sam */
  border-color: #fff; /* ramka nadal biała */
  transform: none; /* brak przesunięć */
}
/* ===== PARTNERZY ===== */
.partner-logo {
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all .3s ease;
  max-height: 60px;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* ===== SOCIAL ICONS ===== */
.social-icons a {
  color: var(--text-light);
  font-size: 1.6rem;
  margin: 0 12px;
  transition: all .3s ease;
}

.social-icons a:hover {
  color: var(--pink);
  transform: translateY(-4px);
}

/* ===== FOOTER ===== */
footer {
  background-color: #0b0b10;
  color: var(--text-muted);
  padding: 20px 0;
}

/* ===== GRADIENT SECTIONS ===== */
.gradient-section {
  background: linear-gradient(145deg, rgba(81,46,123,0.95), rgba(15,15,20,0.95));
  padding: 60px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .about-text {
    text-align: center;
  }
  .social-icons {
    justify-content: center;
    display: flex;
  }
}
