/* Podstawowy reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Tło strony */
body {
  font-family: 'Arial', sans-serif;
  background-color: #2A2E35; /* Szaro-niebieskie tło */
  color: #F5F5F5; /* Białe czcionki */
  line-height: 1.6;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #F5F5F5;
  padding: 0 20px;
}

.hero img.logo {
  max-width: 512px; /* Maksymalna szerokość logo */
  height: auto; /* Zachowanie proporcji */
  margin-bottom: 20px; /* Odstęp od tekstu */
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 300;
}

.cta-button {
  background-color: #00AEEF;
  color: white;
  padding: 15px 30px;
  font-size: 16px;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  margin: 10px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #64D2FF;
  transition: background-color 0.3s ease;
}

/* Sekcja o nas */
.section {
  padding: 60px 20px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Teksty sekcji */
h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
}

p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Ikony i podział sekcji */
.feature-icons {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 40px;
}

.feature-icons div {
  text-align: center;
  margin-bottom: 30px;
}

.feature-icons h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.feature-icons p {
  font-size: 1.125rem;
  color: #b0b0b0;
}

.feature-icons div i {
  font-size: 3rem;
  color: #00AEEF;
  margin-bottom: 10px;
}

/* Blog & Projekty */
#blog ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

#blog ul li {
  margin-bottom: 15px;
  font-size: 1.125rem;
}

#blog ul li a {
  color: #00AEEF;
  text-decoration: none;
}

#blog ul li a:hover {
  text-decoration: underline;
}

/* Sekcja Newsletter */
#newsletter h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

#newsletter h3 {
  text-align: center;
  font-size: 1.125rem;
  margin-bottom: 40px;
}

form {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

form input {
  padding: 15px;
  font-size: 1.125rem;
  border: none;
  border-radius: 5px;
  margin-right: 10px;
  width: 300px;
}

form button {
  background-color: #00AEEF;
  color: white;
  padding: 15px 30px;
  font-size: 1.125rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #64D2FF;
}

/* Social Media Icons */
.social-icons {
  text-align: center;
  margin-bottom: 40px;
}

.social-icons a {
  font-size: 2rem;
  color: #00AEEF;
  margin: 0 20px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #64D2FF;
}

/* Footer */
footer {
  background-color: #1A1D24;
  color: #F5F5F5;
  text-align: center;
  padding: 20px 0;
}

footer a {
  color: #00AEEF;
  text-decoration: none;
  margin: 0 10px;
  font-size: 1rem;
}

footer a:hover {
  color: #64D2FF;
}

/* Responsywność */
@media (max-width: 768px) {
  .hero h1 {
	font-size: 2.5rem;
  }

  .hero h2 {
	font-size: 1.5rem;
  }

  .feature-icons {
	flex-direction: column;
	align-items: center;
  }

  .feature-icons div {
	margin-bottom: 40px;
  }

  form {
	flex-direction: column;
	align-items: center;
  }

  form input {
	width: 80%;
	margin-bottom: 20px;
  }
}

.divisions a {
	color: #2A2E35; /* jasny niebieski lub inny kontrastowy */
	text-decoration: none;
	font-weight: bold;
}

.divisions a:hover {
	color: #ffffff;
	text-decoration: underline;
}

.division-link {
	display: inline-block;
	background-color: #00ccff;
	color: #fff;
	padding: 10px 16px;
	margin-top: 8px;
	border-radius: 8px;
	text-decoration: none;
	transition: background-color 0.3s ease;
}

.division-link:hover {
	background-color: #0099cc;
}

.coming-soon-note {
  text-align: center;
  margin-top: 2rem;
  font-style: italic;
  color: #666;
  font-size: 1rem;
}