@font-face {
    font-family: 'ArialNova';
    src: url('fonts/ArialNova.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Cardo-Regular';
    src: url('fonts/Cardo-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}



/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/*index.html*/

body {
    line-height: 1.6;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    padding: 0 100px;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
    background-color: #3b3b3b;
    font-family: 'ArialNova', sans-serif;
}

header .logo img {
    height: 80px;
    position: relative;
    margin-left: 200px;

}



header nav ul {
    list-style: none;
    display: flex;
    gap: 50px;
    margin-left: 140px;
}

header nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: lighter;
    transition: color 0.3s ease;
    display: inline-block;
}

header.scrolled nav ul li a {
    color: black;
}

header nav ul li a:hover {
    color: #900000;
}

header nav  p {
    color: #900000;
}

/* Separator (linia) */
.nav-separator {
  height: 2px;
  background-color: white;
  width: 100%;
  max-width: 1150px; /* dopasuj do dystansu między nav a kontaktem */
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right;
  align-self: center;
  animation: drawFullLine 1s ease forwards;
  animation-delay: 0.4s;
  margin-left: 55px;
}



/* Animacja: od prawej do lewej */
@keyframes drawFullLine {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

.nav-contact {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-left: 930px;
  margin-top: 5px;
  list-style: none;
}

.nav-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 600;
  font-size: 12px;
  transition: color 0.3s ease;
  font-weight: lighter;
  
}

.nav-contact li img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: filter 0.3s ease;
  filter: brightness(0) invert(1); /* biały */
}



/* BODY */

.desc {
    max-width: 800px;
    margin: 150px auto;
    padding: 20px;
}
.desc .logo {
    text-align: center;
    margin-bottom: 40px;
}

.desc .logo img {
    width: 250px;
    height: auto;
}

.desc .title {
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Cardo-Regular', sans-serif;
}

.desc .title h1 {
    font-size: 25px;
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'ArialNova', sans-serif;
}

.desc .text h3 {
    font-size: 16px;
    font-weight: bold;
    margin-top: 25px;
    font-family: 'ArialNova', sans-serif;
}

.desc .text p {
    font-size: 14px;
    margin-top: 10px;
    font-family: 'ArialNova', sans-serif;
}

/* BODY */

/* Footer Section */

.footer {
  background-color: #2c2c2c;
  color: #fff;
  padding: 30px 60px;
  font-family: 'ArialNova', sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-logo img {
  max-width: 120px;
  margin-left: 320px;
}

.footer-contact,
.footer-links {
  max-width: 300px;
}

.footer-contact{
  margin-left: 0;
}

.footer-contact h3,
.footer-links h3 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

.footer-contact p,
.footer-links ul {
  margin: 5px 0;
  font-size: 14px;
}

.footer-contact img {
  width: 20px;
  height: auto;
  margin-bottom: -6px;
}

.footer-links{
  margin-right: 300px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-line {
  border: none;
  border-top: 1px solid #555;
  margin: 15px 0;
  width: 80%;
  margin-left: 200px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer-bottom .copyright{
  margin-left: 320px;
}

.footer-bottom .copyright span {
  font-weight: bold;
}

.footer-policy{
  margin-right: 200px;
}

.footer-policy a {
  color: #fff; /* złotawy jak na screenie */
  text-decoration: none;
  margin: 0 3px;
}

.footer-policy a:hover {
  text-decoration: underline;
}



