@charset "UTF-8";
/* CSS Document */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #001D2A;
  color: white;
  line-height: 1.6;
}

h1, h2, nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; 
}

nav {
  background-color: white;
  padding: 10px 0;
  text-align: center;
}

nav ol {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 100px;
}

nav ol li a {
  font-size: 25px;
  text-decoration: none;
  color: #001D2A;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  transition: color 0.6s ease;
}

nav ol li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 3px;
  bottom: -5px;
  left: 0;
  background-color: #FFD900;
  transition: width 0.6s ease;
}

nav ol li a:hover {
  color: #FFD900;
}

nav ol li a:hover::after {
  width: 100%;
}

.zawartosc {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

#rekiny h1 {
  color: #FFD900;
  font-size: 50px;
  margin-top: 20px;
  text-transform: uppercase;
  font-weight: 900;
}

#rekiny img {
  width: 300px;
  margin: 20px auto;
}

.rekin-sekcja {
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.rekin-sekcja .tekst {
  flex: 1 1 400px;
  text-align: left;
  padding-left: 180px;
  padding-right: 80px;
}

.rekin-obraz {
  max-width: 900px;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.rekin-obraz:hover {
  transform: scale(1.05) rotate(-1deg);
}

.sekcja-naglowek {
  color: #FFD900;
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.karta-gatunki {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .karta-gatunki {
    grid-template-columns: 1fr;
  }
}

.karta {
  background-color: #003347;
  border: 3px solid #FFD900;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.karta:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.karta img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.karta h3 {
  font-size: 20px;
  color: #FFD900;
  margin-bottom: 10px;
}

.karta p {
  font-size: 14px;
  color: #e0e0e0;
  line-height: 1.5;
}

/* Kropki */
.kropka {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  bottom: 15px;
  right: 15px;
}

.czerwona {
  background-color: #FF0004;
}

.zielona {
  background-color: #36FF00;
}

.rozowa {
  background-color: #FF69B4;
}

.zolta {
  background-color: #FFD900;
}

/* Mapka */
#mapa {
  background-color: #ffffff;
  padding: 60px 20px;
}

.mapa-naglowek {
  color: #001D2A;
  font-size: 50px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 40px;
  text-shadow: 2px 2px 0 #ccc;
}

.mapa-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mapa-obraz {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

/* FAQ / pytania */
#pytania {
  background-color: #002C3E;
  padding: 60px 20px;
}

.faq-naglowek {
  text-align: center;
  font-size: 50px;
  font-weight: 900;
  color: white;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.faq-blok {
  margin-bottom: 40px;
  text-align: center;
}

.faq-blok h3 {
  color: #FFD900;
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 10px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.faq-blok h3:hover {
  color: #00B0FF;
  transform: scale(1.05);
  cursor: default;
}

.faq-blok p {
  color: white;
  font-size: 30px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Newsletter */
#newsletter {
  background-color: #000000;
  padding: 60px 20px 30px;
  text-align: center;
}

#newsletter h2 {
  color: #FFD900;
  font-size: 50px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 30px;
}

#newsletter h2 strong {
  color: white;
  font-size: 50px;
}

.newsletter-form {
  margin-bottom: 30px;
}

.newsletter-form input[type="email"] {
  padding: 12px 20px;
  width: 300px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  margin-bottom: 20px;
  transition: box-shadow 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  box-shadow: 0 0 10px #FFD900;
}

.newsletter-form button {
  background-color: #FFD900;
  border: none;
  padding: 12px 25px;
  border-radius: 10px;
  color: black;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.newsletter-form button:hover {
  background-color: #e6c200;
  transform: scale(1.05);
}

#newsletter .copyright {
  color: #ccc;
  font-size: 14px;
  margin-top: 20px;
}

/* Teksty pomocnicze */
.zolty {
  color: #FFD900;
  font-weight: bold;
}

.pogrubiony {
  font-weight: bold;
}

.podkreslenie {
  color: #00B0FF;
  font-weight: bold;
}

nav {
  background-color: white;
  position: relative;
  z-index: 10;
  border-bottom: 2px solid #ccc;
}

.nav-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: 900;
  color: #001D2A;
  font-family: 'Montserrat', sans-serif;
}

.burger {
  font-size: 32px;
  color: #001D2A;
  cursor: pointer;
  display: none;
}

/* Styl linków nawigacji */
.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 20px 0;
}

.nav-links li a {
  font-size: 24px;
  text-decoration: none;
  color: #001D2A;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 3px;
  bottom: -5px;
  left: 0;
  background-color: #FFD900;
  transition: width 0.3s ease;
}

.nav-links li a:hover {
  color: #FFD900;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* RESPONSYWNE MENU */
@media (max-width: 768px) {
  .burger {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    background-color: white;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
    padding: 20px 0;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li a {
    font-size: 20px;
    color: #001D2A;
    padding: 10px;
  }
}
