/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
/* BODY */
body {
  font-family: 'Inter', sans-serif;
  background: #fafafa;
  color: #111;
  line-height: 1.7;
}

.container {
  width: 88%;
  max-width: 1300px;
  margin: auto;
}
/* SOCIAL BAR */
.social-bar {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 6px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  z-index: 1000;
}

.social-bar a img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s, opacity 0.3s;
}

.social-bar a:hover img {
  transform: scale(1.2);
  opacity: 0.9;
}

/* Mobilne - ukryj pasek */
@media(max-width: 768px){
  .social-bar {
    display: none;
  }
}
/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  padding: 20px 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img {
  height: 60px;
  display: block;
}

/* HERO */
.hero {
  margin-top: 80px;
  height: 90vh;
  background: url('../img/hero/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-content {
  position: relative;
  color: white;
  max-width: 700px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.btn {
  background-color: transparent;
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: white;
  color: black;
}

/* INTRO */
.intro {
  padding: 8rem 0 4rem 0;
  max-width: 800px;
}

.intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.intro p {
  font-size: 1.1rem;
  color: #555;
}

/* PROJECT */
.project {
  margin: 8rem 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.project.reverse {
  grid-template-columns: 1fr 1.2fr;
}

.project-image img {
  width: 100%;
  border-radius: 14px;
  transition: 0.4s ease;
}

.project-image img:hover {
  transform: scale(1.02);
}

.project-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.project-text p {
  color: #555;
}

/* SLIDER */
.slider {
  position: relative;
  overflow: hidden;
}

.slide {
  width: 100%;
  display: none;
  border-radius: 14px;
}

.slide.active {
  display: block;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.dots span {
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dots span.active {
  background: #111;
}
/* BLACK */
.black {
	width: 100%; /* cała szerokość */
	background: #292D2E;
	color: white;
	padding: 4rem 0;
	margin-top: 6rem;}
.black p {
	color: white !important;
	opacity: 0.8;}
	/* SEKCJA KONTAKT */
.contact-section {
  padding: 100px 20px;
  background: #f7f7f7;
  text-align: center;
}

.contact-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.contact-subtitle {
  color: #666;
  margin-bottom: 40px;
}

/* SEKCJA KONTAKT */

.contact-section {
  background: #111;
  color: white;
  padding: 8rem 0;
  text-align: center;
  margin-top: 6rem;
}

.contact-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.contact-section .btn {
	font-size: 12pt}
	
.contact-subtitle {
  opacity: 0.8;
  margin-bottom: 3rem;
}

/* FORMULARZ */

.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* INPUTY */

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: white;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: 0.25s;
}

/* placeholder */

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.6);
}

/* focus */

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: white;
  background: rgba(255,255,255,0.08);
}

/* textarea */

.contact-form textarea {
  resize: vertical;
}
.honeypot{
position:absolute;
left:-9999px;
opacity:0;
pointer-events:none;
}
/* FADE-IN */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);}
/* CTA */
.cta {
  background: #111;
  color: white;
  padding: 6rem 0;
  text-align: center;
  margin-top: 6rem;
}

.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta p {
  opacity: 0.8;
  margin-bottom: 2rem;
}
/* SEO-TEXT */
.seo-text H2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	margin-bottom: 1.5rem;}	

/* FOOTER */
.site-footer {
  background: #111;
  color: white;
  padding: 3rem 0;
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 88%;
  max-width: 1300px;
  margin: auto;
}

.footer-left p {
  margin: 0;
  opacity: 0.8;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-right span {
  margin-right: 8px;
  font-weight: 500;
  opacity: 0.8;
}

.footer-right a img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s, opacity 0.3s;
}

.footer-right a:hover img {
  transform: scale(1.2);
  opacity: 0.9;
}

/* Mobilne */
@media(max-width: 600px){
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
}

/* RESPONSIVE */
@media(max-width: 1000px) {
  .project {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media(max-width: 600px) {
  .hero {
    height: 75vh;
  }
}