

/*FOOTER*/
/*FOOTER*/
/*FOOTER*/



.site-footer {
  background: linear-gradient(to bottom, #2d2621, #a58b74);
  color: #f9f7ef;
  padding: 40px 40px 30px 40px;
  font-family: 'Mona Sans', sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-column p,
.footer-column a,
.footer-column label {
  color: #f9f7ef;
  text-decoration: none;
  margin: 8px 0;
  display: block;
  font-size: 0.95rem;
}

.footer-logo {
  height: 70px; /* nebo třeba 40px, podle potřeby */
  display: block;
}

.footer-column:first-child {
  display: flex;
  flex-direction: column;       /* <-- důležité! */
  align-items: center;          /* vertikální centrování obsahu */
  justify-content: center;
  height: 100%;
  text-align: center;
}

/* === INPUTY A TEXTAREA === */
/* VÝCHOZÍ STAV */
#footer-form input,
#footer-form textarea {
  width: 100%;
  padding: 10px 14px;
  margin-top: 5px;
  margin-bottom: 10px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-family: 'Mona Sans', sans-serif;
  border: 2px solid transparent;
  background-color: white;
  color: #2d2621;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none; /* zruší defaultní modrý okraj */
}

/* FOCUS = když user klikne do pole */
#footer-form input:focus,
#footer-form textarea:focus {
  border-color: #fad1d4;
  box-shadow: 0 0 0 2px #fad1d4;
}


/* CHYBOVÝ STAV – ručně přidáno JS */
#footer-form input.invalid,
#footer-form textarea.invalid {
  border-color: #ff0068;
  box-shadow: 0 0 0 2px #ff0068;
}

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fad1d4 inset !important;
  box-shadow: 0 0 0px 1000px #fad1d4 inset !important;
  -webkit-text-fill-color: #2d2621 !important;
  transition: background-color 9999s ease-out 0s; /* potlačení žluté */
}


/* === TLAČÍTKO === */
#footer-form button {
  background-color: #ff0068;
  color: #f9f7ef;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#footer-form button:disabled {
  background-color: #ccc;
  cursor: default;
}

#footer-form button:hover:not(:disabled) {
  background-color: #d80056;
}

/* === CHYBOVÁ / POTVRZOVACÍ HLÁŠKA === */
.form-feedback {
  font-size: 0.85rem;
  margin-top: 10px;
  color: #f9f7ef;
}


.footer-socials {
  margin-top: 20px;
  display: flex;
  gap: 16px;
  justify-content: center;
}

.footer-socials img {
  height: 35px; /* nebo jiná velikost dle vkusu */
  transition: transform 0.3s ease;
}

.footer-socials a:hover img {
  transform: rotate(-15deg);
}


/*COPYRIGHT*/

.footer-copyright {
  background-color: #2d2621;
  padding: 0.5rem 1rem;
  text-align: center;
  border-radius: 20px; /* ← přidáno zaoblení rohů */
  margin: 1vw 0 -1vw 0;
  
}

.footer-copyright p {
  margin: 0;
  font-size: 0.7rem;
  color: #f9f7ef;
  font-family: 'Mona Sans', sans-serif;
}

.footer-copyright a {
  color: #ff0068;
  text-decoration: none;
}

.footer-copyright a:hover {
  text-decoration: underline;
}

/* ── Footer AH Studio sloupec ─────────────────────────────── */

.footer-column--studio {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-studio-logo {
  width: 100px;
  margin-bottom: 0.25rem;
}

.footer-studio-label {
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(249,247,239,0.45) !important;
  margin: 0 !important;
}

.footer-studio-tagline {
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  color: #f9f7ef !important;
  line-height: 1.55;
  margin: 0.25rem 0 0.5rem !important;
}

.footer-studio-btns {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.footer-studio-btn {
  display: inline-block;
  padding: 7px 18px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.footer-studio-btn--outline {
  background: transparent;
  color: #f9f7ef;
  border: 1.5px solid rgba(249,247,239,0.4);
}

.footer-studio-btn--outline:hover {
  border-color: #f9f7ef;
  color: #f9f7ef;
}

.footer-studio-btn--fill {
  background: #ff0068;
  color: #fff;
  border: 1.5px solid #ff0068;
}

.footer-studio-btn--fill:hover {
  background: #d4005a;
  border-color: #d4005a;
}
