/* Proměnné */
:root {
  --gold: #e6c068;         /* hlavní žlutá – sjednocená */
  --gold-dark: #e6c068;    /* sjednoceno na hlavní žlutou */
  --beige-light: #fff9ef;
  --beige: #f7ecd7;
  --brown-light: #e0cba7;
  --text-main: #473b25;
  --text-accent: #e6c068;  /* sjednoceno na hlavní žlutou */
  --white: var(--beige);   /* bílou nahrazujeme béžovou */
}

/* Tělo stránky */
body {
  font-family: 'Poppins', Arial, sans-serif;
  background: linear-gradient(135deg, var(--beige-light) 90%, var(--beige) 100%);
  color: var(--text-main);
  font-size: 1.00rem;   /* větší základní velikost písma */
  line-height: 1.8;   /* větší řádkování pro lepší čitelnost */
}

/* Nadpisy a zvýraznění */
h1, h2, h5, .footer-heading {
  font-family: 'Lora', serif;
  letter-spacing: 0.5px;
}

h2 {
  color: var(--gold);
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  text-align: center;
}

.gold-title {
  color: var(--gold);
  margin-top: 2.5rem;
  margin-bottom: 0.4rem;
}

/* Navigace */
nav {
  background: rgba(247,236,215,0.97); /* béžová s průhledností */
  box-shadow: 0 2px 8px rgba(230,192,104,0.08);
  border-bottom: 1px solid var(--gold);
}

.navbar-brand {
  color: var(--gold) !important;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.nav-link {
  color: var(--text-main) !important;
  font-weight: 600;
  margin-left: 1rem;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--gold) !important;
  text-decoration: underline;
}

/* Header */
header {
  background: linear-gradient(120deg, var(--beige) 0%, var(--beige-light) 100%);
  color: var(--text-main);
  padding: 5rem 0 3rem 0;
  text-align: center;
  box-shadow: 0 4px 16px rgba(230,192,104,0.10);
}

header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  text-shadow: 0 2px 12px var(--beige-light);
}

header p {
  font-size: 1.2rem;
  color: #7c6b44;
  opacity: 0.85;
}

/* Profilová fotka */
.profile-circle {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid var(--gold);
  box-shadow: 0 4px 24px rgba(230,192,104,0.15);
  margin-right: 2.5rem;
  background: var(--beige);
}

/* Sekce */
section {
  padding: 5rem 0 4rem 0;
}

.bg-soft {
  background: linear-gradient(120deg, var(--beige) 0%, var(--beige-light) 100%);
  border-radius: 1.5rem;
  margin-bottom: 2rem;
}

.img-fluid {
  max-width: 200px;
  box-shadow: none;
  margin-top: 1rem;
  border-radius: 1rem;
  background: none;
  border: none;
}

ul li strong {
  color: var(--gold);
}

/* Footer */
footer {
  background: var(--beige);
  color: var(--text-main);
  padding-top: 2.5rem;
  border-top: 2px solid var(--gold);
}

footer a {
  color: var(--text-main);
  text-decoration: underline;
}

.footer-heading {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.footer-form {
  max-width: 420px;
  margin: 0 auto 2.5rem auto;
  background: var(--beige);
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(230,192,104,0.11);
  padding: 1.5rem 2rem;
  border: 1px solid var(--gold);
}

.footer-form input,
.footer-form textarea {
  border: 1px solid var(--gold);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  background: var(--beige-light);
  color: var(--text-main);
}

.footer-form button {
  background: var(--gold);
  color: var(--beige);
  border: none;
  border-radius: 0.5rem;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: background 0.2s;
}

.footer-form button:hover {
  background: var(--gold-dark);
}

.copyright {
  background: var(--gold);
  color: var(--beige);
  padding: 1rem 0;
  margin-top: 2.5rem;
  margin-bottom: 0;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  border-radius: 0;
  font-size: 12px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-item {
  margin-bottom: 0.7rem;
}

.footer-contact-info a {
  color: #c0392b !important; /* sytě červená */
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-info a:hover {
  color: #a93226 !important; /* tmavší červená při najetí */
  text-decoration: none;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: left; /* zarovnání doleva */
  
}

/* Vystředění hlavního obsahu */
.container {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Texty uvnitř sekcí zarovnat doleva */
section, .container {
  text-align: left;
}

/* Nadpisy zůstanou na střed */
h2, .footer-heading {
  text-align: center;
}

/* Header flex úprava pro lepší responsivitu */
.header-flex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6.5rem;
}

/* Na menších obrazovkách zarovnat header pod sebe */
@media (max-width: 768px) {
  .header-flex {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
  }
}