@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

:root{
  --font-sans: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --bg:#f7f8f9;
  --bg-alt:#eef1f3;
  --card:#ffffff;
  --text:#1a1f24;
  --muted:#5f6b76;
  --green:#00ae42;
  --green-600:#008435;
  --border:#e3e7eb;
  --shadow:0 10px 30px rgba(15,25,35,.08);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0; font-family: var(--font-sans); }
html { scroll-behavior: smooth; }
body{
  font-family:var(--font-sans);
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}
p { font-size: 1.1rem; }

/* --- GÓRNY PASEK USŁUG (TOP BAR) --- */
.top-bar-switcher { font-size: 0.9rem; border-bottom: 1px solid #333; }
.service-link { color: #ccc; text-decoration: none; font-weight: 600; padding: 0.2rem 0.5rem; margin: 0 0.2rem; transition: all 0.3s ease; display: inline-block; }
.service-link:hover { color: #fff; transform: translateY(-2px); }
.service-link.active { color: #fff; background-color: rgba(255, 255, 255, 0.15); border-radius: 4px; }
a[href="/"].service-link:hover { color: #0d6efd; } /* Niebieski dla drona */
a[href="/och-print3d"].service-link:hover { color: rgb(0, 174, 66); }
a[href="/och-party"].service-link:hover { color: #ff5a2f; }

/* Przyciski */
.btn-primary {
  color: #fff !important;
  background-color: var(--green) !important;
  border-color: var(--green) !important;
  transition: all 0.2s ease-in-out;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: var(--green-600) !important;
  border-color: var(--green-600) !important;
  color: #fff !important;
}
.btn-primary:active, .btn-primary:focus-visible {
  background-color: #00732e !important;
  border-color: #00732e !important;
}

/* Layout helpers */
.container{max-width:1100px;margin:0 auto;padding:0 20px}
.section{padding:72px 0}
.section-alt{background:linear-gradient(90deg, rgba(38, 167, 255, 0.15), rgba(57, 187, 15, 0.15));}
.section-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--green);
  margin: 12px auto 0;
  border-radius: 2px;
}
.muted{color:#000;text-align:center;}
.small{font-size:.9rem}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,.03);
}
.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
}
.navbar-brand img {
  height: 100px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
}
.navbar-nav .nav-link {
  font-size: 1.1rem;
  color: var(--text);
  padding: 8px 15px;
  border-radius: 8px;
  font-weight: 600;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  background: var(--bg-alt);
  color: var(--green);
}

/* Hero */
.hero {
  padding: 100px 0;
  background: linear-gradient(90deg, rgba(38, 167, 255, 0.5), rgba(57, 187, 15, 0.5));
  border-bottom: 1px solid #bbbbbb;
}
.hero-grid{display:grid;grid-template-columns:1.2fr 0.8fr;gap:32px;align-items:center}
.hero-text, .hero-media { min-width: 0; }
.hero h1 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 16px; font-weight: 800; }
.hero p { margin-bottom: 16px; font-size: 1.15rem; }
.bullets{margin:16px 0 0;padding:0 0 0 18px; font-size: 1.1rem;}
.hero-cta{display:flex;gap:12px;margin:24px 0 0}
.btn{display:inline-block;padding:12px 30px;text-decoration:none;font-weight:600; border-radius: 6px;}
.btn-ghost{background:#fff;color:var(--green);border:2px solid var(--green);}
.btn-ghost:hover{background:#f5fffa; color:var(--green-600);}

.media-placeholder {
  border-radius:16px;
  overflow:hidden;
  height:400px;
  display:block;
  background:none;
  border:none;
}
.media-placeholder img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Two-column (O nas) */
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:32px;align-items:center}
.feature-card{
  background:linear-gradient(225deg, rgba(38, 167, 255, 0.1), rgba(57, 187, 15, 0.1));
  border:1px solid var(--border);
  border-radius:16px;
  padding:40px;
  box-shadow:var(--shadow)
}
.feature-card h3{margin-top:0; font-size: 1.5rem; font-weight: 700; color: var(--green);}

/* Cards (Oferta & Cennik) */
.card {
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:24px 16px;
  box-shadow:var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.card-title { min-height: 2.5em; font-weight: 700; }
.card-text { font-size: 0.95rem; color: var(--muted); }
.card img { width: 80px; height: auto; margin-bottom: 1rem; }
.card .price { font-size: 1.4rem; font-weight: 800; color: var(--green); margin-bottom: 1rem; }

/* Partnerzy */
.partners {
  justify-content: center;
  text-align: center;
}
.partner-logo {
  max-height: 80px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
  margin: 0 auto;
}
.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.bcg-color-black {
  background-color: #000;
  color: #fff;
}

/* Footer */
.site-footer{border-top:1px solid var(--border);background:#fff}
.footer-grid{display:flex;justify-content:space-between;align-items:center;gap:12px;padding:24px 20px; max-width: 1100px; margin: 0 auto;}
.footer-links{display:flex;gap:16px; flex-wrap: wrap; justify-content: center;}
.footer-links a{text-decoration:none;color:var(--muted); font-weight: 500;}
.footer-links a:hover{color:var(--green)}

/* Responsive */
@media (max-width: 960px){
  .hero-grid{grid-template-columns:1fr; text-align: center;}
  .hero-cta { justify-content: center; }
  .bullets { text-align: left; display: inline-block; }
  .two-col{grid-template-columns:1fr}
}

@media (max-width: 768px){
  .navbar-brand img { height: 60px; }
  .hero { padding: 60px 0; }
  .hero h1 { font-size: 2rem; }
  .footer-grid { flex-direction: column; text-align: center; gap: 20px;}
}