/* =========================
   RESET
========================= */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background: white;
  color: #1e293b;
  overflow-x: hidden;
}

section {
  overflow: hidden;
}


/* =========================
   NAVBAR — desktop
========================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  padding: 22px 52px;
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.navbar.scrolled .nav-links a,
.navbar.scrolled .nav-social a {
  color: #1e293b;
  text-shadow: none;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: lowercase;
  color: rgba(255,255,255,0.90);
  text-decoration: none;
  transition: opacity 0.2s ease;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.nav-links a:hover { opacity: 0.6; }

.nav-social {
  display: flex;
  gap: 18px;
}

.nav-social a {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.90);
  text-decoration: none;
  transition: opacity 0.2s ease;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.nav-social a:hover { opacity: 0.6; }


/* =========================
   MOBILE NAV BAR
========================= */

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 14px 20px;
  align-items: center;
  justify-content: space-between;
  background: transparent;
}

.mobile-nav-social {
  display: flex;
  gap: 16px;
}

.mobile-nav-social a {
  font-size: 1.3rem;
  color: white;
  text-decoration: none;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.mobile-nav-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  padding: 4px;
}


/* =========================
   MOBILE DRAWER
========================= */

.mobile-drawer {
  position: fixed;
  top: 0;
  left: -280px;
  width: 260px;
  height: 100%;
  background: white;
  z-index: 300;
  padding: 60px 36px 40px;
  transition: left 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 4px 0 24px rgba(0,0,0,0.08);
}

.mobile-drawer.open {
  left: 0;
}

.drawer-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #1e293b;
  cursor: pointer;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 20px;
}

.drawer-links a {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: lowercase;
  color: #1e293b;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.drawer-links a:hover { opacity: 0.5; }

.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 250;
}

.drawer-overlay.open {
  display: block;
}


/* =========================
   HERO
========================= */

.hero {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background:
    linear-gradient(rgba(0,0,0,0.20), rgba(0,0,0,0.20)),
    url("../img/tlo.JPG");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
}

.hero-content {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  width: 100%;
}

.hero-logo-image {
  width: 200px;
  max-width: 60vw;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.30));
}

.hero-text {
  margin-top: 16px;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: lowercase;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 3px 12px rgba(0,0,0,0.25);
}

.scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.4rem;
  text-decoration: none;
  animation: bounce 1.8s ease-in-out infinite;
  z-index: 3;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}


/* =========================
   CONTENT
========================= */

.content-section {
  background: white;
}

.about-section {
  border-top: 15px solid white;
}

.content-row {
  display: flex;
  align-items: center;
  min-height: 90vh;
}

.content-row.reverse {
  flex-direction: row-reverse;
}

.content-image {
  width: 50%;
  height: 90vh;
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.content-text {
  width: 50%;
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content-text p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #475569;
  font-weight: 300;
}


/* =========================
   NAGŁÓWKI
========================= */

.section-heading-desktop {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #0f172a;
  font-weight: 300;
  letter-spacing: 1px;
}

.section-heading-mobile {
  display: none;
}

.sub-heading {
  font-size: 1rem;
  font-weight: 400;
  color: #0f172a;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.price {
  font-size: 0.9rem !important;
  font-weight: 400 !important;
  color: #94a3b8 !important;
  letter-spacing: 0.5px;
}


/* =========================
   INSTAGRAM BUTTON
========================= */

.insta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding: 14px 26px;
  border: 1px solid #dbe3ea;
  border-radius: 14px;
  text-decoration: none;
  color: #1e293b;
  background: white;
  font-weight: 400;
  font-size: 0.9rem;
  transition: transform 0.3s ease, background 0.3s ease;
  align-self: flex-start;
}

.insta-btn:hover {
  background: #f8fafc;
}


/* =========================
   SLIDE-IN
========================= */

.slide-in-left,
.slide-in-right {
  opacity: 0;
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
  will-change: transform, opacity;
}

.slide-in-left  { transform: translateX(-80px); }
.slide-in-right { transform: translateX(80px); }

.slide-in-left.visible,
.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}


/* =========================
   FOOTER
========================= */

.footer-section {
  padding: 80px 20px 60px;
  text-align: center;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.footer-logo {
  width: 200px;
  object-fit: contain;
  opacity: 0.80;
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 36px;
}

.footer-icons a {
  font-size: 1.8rem;
  color: #1e293b;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-icons a:hover {
  transform: scale(1.1);
  opacity: 0.5;
}

.footer-phone a {
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: #64748b;
  text-decoration: none;
}

.footer-phone a:hover { opacity: 0.6; }


/* =========================
   BLOG COMING SOON
========================= */

.blog-coming-soon {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px 80px;
  gap: 24px;
  position: relative;
  background: url("../img/blog.jpg") center / cover no-repeat;
}

.blog-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.blog-coming-soon > * {
  position: relative;
  z-index: 1;
}

.blog-logo {
  width: 180px;
  mix-blend-mode: screen;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
}

.blog-coming-soon h1 {
  font-size: 3rem;
  font-weight: 300;
  color: white;
  letter-spacing: 2px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.blog-coming-soon p {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  max-width: 400px;
  line-height: 1.8;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.blog-back {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  white-space: nowrap;
}


/* =========================
   MOBILE  (≤ 900 px)
========================= */

@media (max-width: 900px) {

  .navbar { display: none; }
  .mobile-nav { display: flex; }

  .hero {
    background-position: center 60%;
    height: 100svh;
    height: calc(var(--vh, 1vh) * 100);
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
  }

  .hero-content {
    top: 22% !important;
    transform: translate(-50%, -50%) !important;
  }

  .hero-logo-image {
    width: 180px !important;
    max-width: 50vw !important;
  }

  .hero-text {
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-top: 10px;
  }

  .section-heading-desktop { display: none; }

  .section-heading-mobile {
    display: block;
    font-size: 1.5rem;
    font-weight: 300;
    color: #0f172a;
    letter-spacing: 0.5px;
    padding: 14px 24px 10px;
  }

  .about-section {
    border-top: 5px solid white;
  }

  .slide-in-left  { transform: translateX(-50px); }
  .slide-in-right { transform: translateX(50px); }

  .content-row,
  .content-row.reverse {
    flex-direction: column;
    min-height: auto;
  }

  .content-image,
  .content-text { width: 100%; }

  .content-image {
    height: 320px;
    order: 1;
  }

  .content-text {
    order: 2;
    padding: 28px 24px 44px;
    gap: 12px;
  }

  .content-text p {
    font-size: 0.95rem;
    line-height: 1.85;
  }

  .footer-section { padding: 60px 20px 40px; gap: 22px; }
  .footer-logo { width: 150px; }
  .footer-icons { gap: 24px; }
  .footer-icons a { font-size: 1.5rem; }

  .blog-coming-soon { padding-top: 100px; }
  .blog-coming-soon h1 { font-size: 2rem; }

}