/* ===============================
   THEME: PIVNÍ SPECIÁLY
================================ */

/* Hlavní barvy pivního tématu */
.theme-pivni-specialy {
  --accent-main: #d49a6a;      /* tmavě jantarová */
  --accent-secondary: #f1c27d; /* světlá zlatá */
  --text-light: #fff;
  --text-dark: #2b1b0e;
}

/* ===============================
   PROFIL KONTEJNER
================================ */
.theme-pivni-specialy .profile__content {
  background: linear-gradient(135deg, var(--accent-main), var(--accent-secondary));
  color: var(--text-dark);
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  border-radius: 12px;
  animation: subtle-fade 1.5s ease-in-out;
}

h1,h2,h3 {
  color: var(--text-dark);
}

/* ===============================
   BOXY
================================ */
.theme-pivni-specialy .box-dark {
  background: rgba(43, 27, 14, 0.8); /* tmavý pivní odstín */
  color: var(--text-light);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.theme-pivni-specialy .box-dark p {
  color: var(--text-light);
}

.theme-pivni-specialy .box-dark:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  transform: translateY(-3px);
}

.theme-pivni-specialy .box-light {
  background: rgba(241, 194, 125, 0.9); /* světlý pivní odstín */
  color: var(--text-dark);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.theme-pivni-specialy .box-light:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

/* ===============================
   TLAČÍTKA
================================ */
.theme-pivni-specialy .btn {
  background: linear-gradient(135deg, var(--accent-main), var(--accent-secondary));
  color: var(--text-light);
  border: none;
  border-radius: 8px;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.theme-pivni-specialy .btn:hover {
  background: linear-gradient(160deg, #f1c27d, #d49a6a);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  color: var(--text-dark) !important;
}

/* ===============================
   ANIMACE
================================ */
@keyframes subtle-fade {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Jemný hover efekt pro všechny boxy */
.theme-pivni-specialy .box-dark,
.theme-pivni-specialy .box-light {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}