/* ========================================
   HERO — PERFECT CENTER
======================================== */

.hero {
  position: relative;
  height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.hero-content {
  position: relative;
  top: -40px; /* kompensacja navbaru */

  max-width: 900px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 60px;
  letter-spacing: 4px;
  margin-bottom: 25px;
}

.hero-content p {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 40px;
  opacity: 0.85;
}

.hero-content .main-btn {
  margin-top: 10px;
}
/* ========================================
   FEATURE SECTIONS
======================================== */

.feature-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 60px;
}

.feature-container {
  width: 100%;
  max-width: 1300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.feature-section.reverse .feature-container {
  flex-direction: row-reverse;
}

/* IMAGE */

.feature-image img {
  width: 500px;
  max-width: 100%;
  border-radius: 20px;
}

/* GLASS TEXT PANEL */

.glass {
  padding: 60px;
  border-radius: 28px;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.15),
    rgba(255,255,255,0.05)
  );

  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);

  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
}

.feature-text {
  max-width: 500px;
}

.feature-text h2 {
  font-size: 42px;
  letter-spacing: 4px;
  margin-bottom: 25px;
}

.feature-text p {
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 1px;
  opacity: 0.85;
}
/* ========================================
   FOOTER
======================================== */

.footer {
  padding: 60px 20px;
  text-align: center;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border-top: 1px solid rgba(255,255,255,0.15);
}

.footer p {
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.7;
}

