/* PROFESSIONAL THEME – suplementydiety.store */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Manrope:wght@700;800&display=swap');

:root {
  /* Kolory */
  --bg-body: #f7f9fc;
  --bg-surface: #ffffff;
  --text-main: #1f2937;
  --text-muted: #6b7280;
  --accent: #0ea5e9;
  --accent-hover: #0284c7;
  --radius: 6px;
  --shadow: 0 4px 12px rgba(0,0,0,.05);
  --max-width: 1200px;
}

/* Reset & helpers */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
body{font-family:'Inter',sans-serif;background:var(--bg-body);color:var(--text-main);line-height:1.6;-webkit-font-smoothing:antialiased}
h1,h2,h3{font-family:'Manrope',sans-serif;font-weight:800;color:var(--text-main)}
h1{font-size:clamp(2rem,4vw,3.2rem)}
h2{font-size:clamp(1.5rem,3vw,2.2rem)}
h3{font-size:clamp(1.1rem,2vw,1.5rem)}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

/* Layout containers */
.wrapper{max-width:var(--max-width);margin:0 auto;padding:0 1rem}

/* Header – Split-Nav Pill */
.site-header{background:var(--bg-surface);box-shadow:var(--shadow);position:sticky;top:0;z-index:100}
.header-split{display:flex;align-items:center;justify-content:space-between;padding:.75rem 0}
.logo{font-family:'Manrope',sans-serif;font-weight:800;font-size:1.25rem;color:var(--accent)}
.main-nav ul{display:flex;gap:1.75rem;list-style:none}
.main-nav a{font-weight:500;color:var(--text-muted);transition:color .2s}
.main-nav a:hover{color:var(--accent)}

/* Mobile menu – checkbox hack */
#menu-toggle{display:none}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer}
.hamburger span{width:24px;height:3px;background:var(--text-main);border-radius:2px;transition:.3s}
@media (max-width:768px){
  .hamburger{display:flex}
  .main-nav{position:fixed;top:0;right:0;height:100vh;width:70%;background:var(--bg-surface);box-shadow:var(--shadow);transform:translateX(100%);transition:transform .3s}
  .main-nav ul{flex-direction:column;padding:4rem 2rem}
  #menu-toggle:checked ~ .main-nav{transform:translateX(0)}
}

/* Buttons */
.btn{display:inline-block;padding:.75rem 1.5rem;background:var(--accent);color:#fff;border-radius:var(--radius);font-weight:600;transition:background .2s}
.btn:hover{background:var(--accent-hover)}

/* Hero / sections */
section{padding:3rem 0}
.bg-surface{background:var(--bg-surface)}

/* Hex-Card Carousel – porady */
.hex-carousel{display:flex;gap:1.5rem;overflow-x:auto;padding-bottom:1rem;scroll-snap-type:x mandatory}
.hex-card{flex:0 0 260px;background:var(--bg-surface);border-radius:var(--radius);box-shadow:var(--shadow);padding:1.5rem;scroll-snap-align:start;clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%)}
.hex-card h3{margin-bottom:.5rem;font-size:1.1rem}
.hex-card p{font-size:.95rem;color:var(--text-muted)}

/* Offers grid – 3 columns desktop */
.offers-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.job-card{background:var(--bg-surface);border-radius:var(--radius);box-shadow:var(--shadow);padding:1.5rem;display:flex;flex-direction:column;gap:.5rem}
.job-card h3{font-size:1.2rem}
.job-card .meta{display:flex;gap:1rem;font-size:.85rem;color:var(--text-muted)}
@media (max-width:768px){.offers-grid{grid-template-columns:1fr}}

/* Partners */
.partners-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.partner-link{background:var(--bg-surface);border-radius:var(--radius);box-shadow:var(--shadow);padding:1.25rem;text-align:center;font-weight:600;color:var(--text-muted);transition:color .2s,box-shadow .2s}
.partner-link:hover{color:var(--accent);box-shadow:0 6px 18px rgba(0,0,0,.08)}
@media (max-width:768px){.partners-grid{grid-template-columns:1fr}}

/* Show-more partners – checkbox hack */
.partners-wrapper .show-more-checkbox{display:none}
.partners-wrapper .partners-hidden{display:none}
.partners-wrapper .show-more-checkbox:checked ~ .partners-hidden{display:grid}
.partners-wrapper .show-more-checkbox:checked ~ .show-more-container{display:none}
.show-more-container{text-align:center;margin-top:1.5rem}

/* FAQ akordeon */
details{background:var(--bg-surface);border-radius:var(--radius);box-shadow:var(--shadow);padding:1rem;margin-bottom:1rem}
summary{font-weight:600;cursor:pointer;list-style:none;display:flex;justify-content:space-between;align-items:center}
summary::after{content:"+";font-size:1.2rem;color:var(--accent);transition:.2s}
details[open] summary::after{transform:rotate(45deg)}
details p{margin-top:.75rem;color:var(--text-muted)}

/* Footer */
.site-footer{background:#111827;color:#e5e7eb;padding:2.5rem 0 2rem;font-size:.9rem}
.footer-content{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.footer-section h4{font-family:'Manrope',sans-serif;font-size:1rem;margin-bottom:.75rem;color:#fff}
.footer-section ul{list-style:none;line-height:1.8}
.footer-section a:hover{color:var(--accent)}
@media (max-width:768px){.footer-content{grid-template-columns:1fr}}