/* Reset + podstawy */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  z-index: 1000;
  padding: 18px 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  text-decoration: none;
  color: white;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 35px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 10px;
  transition: all 0.3s;
}

.nav-links a:hover {
  color: #00ccff;
  text-shadow: 0 0 10px rgba(0, 204, 255, 0.5);
}

/* Hero - dokładnie jak na screenshocie */
.hero {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1446776811953-b23d57bd21aa?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.45));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 12px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-content p {
  font-size: 15px;
  margin-bottom: 40px;
  opacity: 0.95;
}

.cta {
  padding: 16px 48px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 2px;
  border-radius: 4px;
  transition: all 0.4s;
}

.cta:hover {
  background: #fff;
  color: #000;
}

/* Sekcje */
.section {
  padding: 140px 40px;
  text-align: center;
  background: #0a0a0a;
}

.section h2 {
  font-size: 35px;
  margin-bottom: 24px;
}
/* Dropdowns */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  list-style: none;
  padding: 12px 0;
  margin: 8px 0 0 0;
  border-radius: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  z-index: 1001;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 24px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  transition: all 0.2s;
}

.dropdown-menu li a:hover {
  background: rgba(0, 170, 255, 0.2);
  color: #00ccff;
  padding-left: 28px;
}

/* Pokazuj dropdown po najechaniu */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Responsywność dropdownów */
@media (max-width: 1100px) {
  .nav-links {
    gap: 20px;
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(20, 20, 20, 0.95);
    box-shadow: none;
  }
}
.logo {
  position: absolute;
  top: 15px;
  left: 40px;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 60px;
  width: auto;
  transition: 0.3s;
}

.logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px #00aaff);
}
nav {
  display: flex;
  align-items: center;
  justify-content: center; /* to ustawia menu na środku */
  position: relative;
  height: 80px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

/* Logo po lewej */
.logo {
  position: absolute;
  left: 40px;
  top: 10px;
}

.logo img {
  height: 60px;
  width: auto;
}

/* Menu na środku */
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #00aaff;
  text-shadow: 0 0 10px #00aaff;
}
body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  background: #000;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
}

.hero {
  text-align: center;
  padding: 120px 20px 60px;
}

.hero h1 {
  font-size: 45px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 15px;
  opacity: 0.8;
}

.image-section img {
  width: 100%;
  max-width: 1200px;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
}
.rocket-list {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.rocket-card {
  margin-bottom: 60px;
  text-align: center;
}

.rocket-card img {
  width: 100%;
  max-width: 900px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.rocket-card h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.rocket-card p {
  font-size: 12px;
  opacity: 0.8;
}
.navbar {
  display: flex;
  justify-content: center;   /* centers the menu */
  align-items: center;
  padding: 20px 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;                 /* spacing between menu items */
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 12px;
}

.rockets-hero {
  background: none;
  padding: 120px 20px 60px;
  text-align: center;
}
.main-hero {
  background-image: url("earth.jpg");
  background-size: cover;
  background-position: center;
}
.logo a {
  color: white;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
}
.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* wideo za całą stroną */
}
