/*
Theme Name: Zrozum Faceta
Author: Męska Perspektywa
Version: 1.0
Description: Styl zbudowany na bazie TailwindCSS – minimalistyczny, lekki, nowoczesny.
*/

/* Typografia i ogólne */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background-color: #ffffff;
  color: #1f2937;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  color: #173A8D;
  font-weight: 700;
  margin-bottom: 1rem;
}

a {
  color: #173A8D;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Formularze i inputy */
input, select, textarea {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
}

/* Przycisk */
button,
input[type="submit"] {
  background-color: #173A8D;
  color: white;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button:hover,
input[type="submit"]:hover {
  background-color: #102a6b;
}

/* Kafle (Dashboard) */
.dashboard-tile {
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.5rem;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease;
}
.dashboard-tile:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.dashboard-tile h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  color: #173A8D;
}

/* Footer */
footer {
  background-color: #173A8D;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.875rem;
}

footer p {
  margin: 0.25rem 0;
}

/* Responsywność i ułatwienia */
.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.text-center {
  text-align: center;
}

.text-lg {
  font-size: 1.125rem;
}

.text-sm {
  font-size: 0.875rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.p-4 {
  padding: 1rem;
}

.rounded {
  border-radius: 0.5rem;
}

/* Domyślny kolor hamburgera (ciemnoniebieski) */
.hamburger-line {
  background-color: #173A8D;
}

/* Po otwarciu menu – zmienia się na biały */
#mobile-menu-toggle.open .hamburger-line {
  background-color: #ffffff;
}

/* ========== CUSTOM UTILS ========== */
:root {
  --color-primary: #173A8D;
  --color-accent: #EF4444;
  --color-bg: #ffffff;
  --color-text: #1f2937;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.alert {
  background-color: #FEF2F2;
  color: #B91C1C;
  padding: 1rem;
  border: 1px solid #FCA5A5;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

@import url("product.css");

button, a {
  -webkit-tap-highlight-color: transparent;
}

.fade-in {
  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
