* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
}

li {
  list-style-type: none;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #1c2734;
  color: white;
}

.logo {
  max-width: 200px;
}

a {
  text-decoration: none;
}

h2 {
  font-size: 3.5rem;
  /* text-transform: uppercase; */
  margin-bottom: 20px;
  font-weight: 700;
  background: linear-gradient(90deg, #f7e78a, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 3.5rem;
  padding-bottom: 20px;
}

/* Header */

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 200;
}

.burger span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: rgba(0, 0, 0, 0.8);
  z-index: 100;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: 400;
  font-size: 1.2rem;
  transition: 300ms ease-in-out;
}

nav ul li a:hover {
  transition: 300ms ease-in-out;
  padding-bottom: 8px;
  border-bottom: 2px solid #d4af37;
  color: #d4af37;
}

/* Hero section */
.hero {
  height: 100vh;
  /* background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(39, 39, 39, 0.6)),
    url("img/mateuszwitczak.jpg") center/cover no-repeat; */
  background: url("img/mateuszwitczak.jpg") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 20px;
  padding-left: 10%;
}

.hero i {
  color: #d4af37;
  font-size: 2.5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50px;
}

.hero h1 {
  font-size: 3.4rem;
  font-weight: 400;
  text-transform: initial;
  line-height: 1;
}

.hero h1 span {
  color: #f7e78a;
  font-size: 7rem;
  font-weight: 600;
  text-transform: uppercase;
  background: linear-gradient(90deg, #f7e78a, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.7rem;
  margin: 30px 0;
}

.hero .buttons {
  margin-top: 40px;
}

.hero .buttons a {
  text-decoration: none;
  background: #d4af37;
  color: #0a0a0a;
  padding: 20px 45px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 1.1rem;
  transition: 300ms ease-in-out;
  /* border: 2px solid #d4af37; */
  background: linear-gradient(90deg, #f7e78a, #d4af37);
}
.hero .buttons a:hover {
  transition: 300ms ease-in-out;
  color: #fff;
}

.hero .buttons a.outline {
  background: transparent;
  color: #d4af37;
  border: 2px solid #d4af37;
  transition: 300ms ease-in-out;
  margin-left: 10px;
}

.hero .buttons a.outline:hover {
  transition: 300ms ease-in-out;
  background-color: #1c2734;
  border: 2px solid #1c2734;
  color: #fff;
}

/* Kim jestem sekcja  */

.about-section {
  background: url(img/bg-logo.jpg) no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1c2734;
  padding: 80px 10%;
}

.about-text {
  flex: 1;
  padding-right: 40px;
}

.about-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.stat-box {
  background-color: #2d3b4a;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 14px;
}

.stat-box span {
  color: #f7e78a;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Dlaczego ja */
.why {
  background: black;
  padding: 80px 20px;
  text-align: center;
}

cite {
  font-size: 1.4rem;
  display: inline-block;
  padding-bottom: 60px;
}

.why p {
  margin-bottom: 40px;
  color: #ccc;
}

.features {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.feature {
  max-width: 300px;
  text-align: center;
  background-color: #1c2734;
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.2s ease;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.feature .icon {
  background: #d4af37;
  color: black;
  font-size: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.feature span {
  color: #f7e78a;
}

.feature h3 {
  margin: 30px 0;
  font-size: 1.3rem;
}

.features a {
  border: 1px solid #d4af37;
  padding: 7px 15px;
  border-radius: 6px;
  color: #d4af37;
  font-weight: 600;
  transition: 300ms ease-in-out;
}
.features a:hover {
  transition: 300ms ease-in-out;
  background-color: #d4af37;
  color: #1c2734;
}

/* Sentence */
.sentence {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url("img/mateusz-witczak-wystapienia-publiczne.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.sentence-two {
  background-image: url("img/mateusz-witczak-mentor-biznesu.jpg");
}

.sentence::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.sentence .content {
  position: relative;
  z-index: 1;
  padding: 1rem;
}

.sentence .tagline {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  color: #d4af37;
}

.sentence span {
  color: #f7e78a;
}

.sentence blockquote {
  margin: 0 auto;
  max-width: 900px;
  font-size: 2rem;
  line-height: 1.2;
  font-style: italic;
}

/* Co mnie wyroznia  */
.services {
  padding: 80px 10%;
  background-color: #1c2734;
  color: #fff;
  text-align: center;
  background: url(img/bg-logo.jpg) no-repeat fixed;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  /* background-color: #d4af37; */
  background: linear-gradient(90deg, #f7e78a, #d4af37);
  /* -webkit-background-clip: text; */
  /* -webkit-text-fill-color: transparent; */
  /* background-clip: text; */
  padding: 2rem;
  border-radius: 12px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #2d3b4a;
}

.service-card span {
  color: #1c2734;
  font-weight: 700;
}

/* CTA */
.cta {
  margin: 50px auto;
  padding: 40px;
  border-radius: 12px;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.cta div {
  flex-basis: 50%;
}

.cta h2 {
  padding-bottom: 20px;
}

.cta a {
  color: #fff;
  transition: 300ms ease-in-out;
  margin-bottom: 10px;
  display: inline-block;
  font-size: 1.2rem;
}
.cta a:hover {
  color: #f7e78a;
  transition: 300ms ease-in-out;
}
.cta i {
  font-size: 1.3rem;
  margin-right: 5px;
  color: #f7e78a;
}

/* Formularz */
form {
  flex-basis: 50%;
  margin: auto;
  background: #2d3b4a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  color: #fff; /* Dodane, aby tekst labeli był widoczny na ciemnym tle */
}

label {
  display: block;
  margin-top: 10px;
}

label a {
  color: #d4af37;
}

/* Dodaliśmy 'textarea' do grupy pól tekstowych */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box; /* Kluczowe: padding nie rozpycha szerokości ponad 100% */
  font-family: inherit;   /* Aby czcionka w textarea była taka sama jak w reszcie strony */
}

/* Specyficzne ustawienia tylko dla textarea */
textarea {
  min-height: 120px;      /* Minimalna wysokość pola wiadomości */
  resize: vertical;       /* Użytkownik może zmieniać wysokość, ale nie szerokość */
}

input[type="checkbox"] {
  margin-top: 15px;
}

button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #d4af37;
  color: #1c2734;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 500;
  transition: 300ms ease-in-out;
  width: 100%; /* Opcjonalnie: przycisk na całą szerokość wygląda często lepiej */
}

button:hover {
  background-color: #f7e78a;
}

.rodo-text {
  font-size: 12px;
  margin-top: 10px;
  line-height: 1.4;
  color: #ccc; /* Nieco jaśniejszy kolor dla tekstu prawniczego */
}

/* Footer */

.footer {
  background-color: #111; /* ciemne tło */
  color: #ddd;
  padding: 60px 20px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  gap: 20px;
 max-width: 1200px;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.footer-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

footer .tagline {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  color: #d4af37;
  text-align: center;
}

.footer span {
  color: #f7e78a;
}

.footer-container a {
  color: #bbb;
  text-decoration: none;
  margin: 5px 0;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #333;
  text-align: center;
  font-size: 14px;
  color: #777;
}
.footer-bottom a{
  color: #777;
}
.footer-bottom a:hover{
  color: #d4af37;
}
