/* Zmienne kolorów */
:root {
  --primary-color: #ff6600;
  --secondary-color: #00cc66;
  --tertiary-color: #0099ff;
  --dark-color: #333333;
  --light-color: #ffffff;
}

/* Reset stylów */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

/* Styl czcionki */
body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

/* Styl linków */
nav a {
  text-decoration: none;
  color: var(--primary-color);
}

/* Styl list */
ul {
  list-style: none;
}

/* Styl kontenera */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Styl menu nawigacyjnego */

/* Styl nagłówka */
#home {
  background-image: url("../assets/baner2.avif");
  background-size: cover;
  background-position: right;
  height: 100vh;
  transition: background-image 0.4s ease;
}

@keyframes backgroundAnimation {
  0% {
    background-position: right;
  }
  100% {
    background-position: left;
  }
}

#home .showcase-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light-color);
}

#home h1 {
  font-size: 4rem;
}

#home span {
  font-size: 1.5rem;
}

#home .btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--light-color);
  padding: 0.75rem 1.5rem;
  margin-top: 1rem;
}

#home .btn:hover {
  background-color: var(--secondary-color);
}

#map {
  width: 100%;
  height: 400px;
  border: 0;
  margin: 20px 0;
}

/* Styl sekcji */
section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

section h2 {
  text-align: center;
}

section p,
section ul,
section form {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
section ul {
  margin: 0.8rem 0;
}
section ul.services li {
  margin-bottom: 0.3rem;
}
section ul.services li::before {
  content: "\2713";
  color: green;
  margin-right: 0.25rem;
}
section .gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
section .gallery-item {
  width: 30%;
  margin-bottom: 1rem;
}
section .gallery-item img {
  border-radius: 10px;
}
section .gallery-item p {
  text-align: center;
}
section form .form-group {
  margin-bottom: 1rem;
}
section form label {
  display: block;
}
section form input,
section form textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--dark-color);
  border-radius: 5px;
}
section form input[type="submit"] {
  background-color: var(--primary-color);
  color: var(--light-color);
  cursor: pointer;
}
section form input[type="submit"]:hover {
  background-color: var(--secondary-color);
}

#o-firmie img,
#oferta img {
  border-radius: 7px;
}
