/* --- FONTY --- */
@font-face {
    font-family: 'Dancing Script';
    src: url('../fonts/DancingScript-Regular.woff2') format('woff2'),
         url('../fonts/DancingScript-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url('../fonts/Raleway-Regular.woff2') format('woff2'),
         url('../fonts/Raleway-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* --- OBECNÉ --- */
* {
    box-sizing: border-box;
}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
    margin: 0;
    background: #fff;
    font-family: 'Raleway', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
main {
  flex: 1;
}
h2 {
    font-size: 1.1em;
}
ul {
  list-style-type: none;
  padding-left: 0;
  margin-left: 0;
}
li.price-highlight span {
  color: red !important;
  font-weight: bold !important;
}
/* --- ZAROVNÁNÍ NA STŘED --- */
.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    width: 95%;
    flex: 1 0 auto;
}

/* --- HLAVIČKA --- */
header {
    width: 100%;
    background-color: #333333; /* tmavě šedá */
    color: white;
    padding: 0.5em 0;
    position: relative;
    z-index: 100;
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1em; /* mezery po stranách */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
/* --- MENU NAHOŘE (bez třídy, přesné cílení) --- */
header nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5em;
    font-weight: 600;
    font-size: 1rem;
}

header nav a {
    color: white;
    text-decoration: none;
    font-family: 'Raleway', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    padding: 0.5em 0;
}

header nav a:hover,
header nav a:focus {
    color: #f7b500; /* například teplá žlutá pro efekt */
    outline: none;
}

/* --- TLAČÍTKO MENU PRO MOBIL --- */
.menu-toggle {
    display: none;
    background-color: #333333;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    font-family: 'Raleway', Arial, sans-serif;
    padding: 0.5em 1em;
    text-transform: uppercase;
    border-radius: 5px;
    max-width: 200px;
    margin: 0.5em auto 0;
}
.logo-citat {
    background-color: white !important;
    box-shadow: none !important;
    border: none !important;
    margin: 0;
    padding: 0; /* pokud chceš odsazení */
    text-align: center;
}
/* --- PATIČKA --- */
footer {
    background: linear-gradient(to bottom, #ffffff, #fff3e7);
    color: black;
    text-align: center;
    padding-bottom: 2em;
    flex-shrink: 0;
    font-family: 'Raleway', Arial, sans-serif;
}
footer .footer-info {
  padding-top: 2em;
}
footer nav.footer-menu {
    display: flex;
    justify-content: center;
    gap: 1.5em;
    background-color: #000000; /* černé menu */
    padding: 0.7em 0;
    font-size: 0.9rem;
    font-weight: 600;
}

footer nav.footer-menu a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

footer nav.footer-menu a:hover,
footer nav.footer-menu a:focus {
    color: #f7b500;
    outline: none;
}
.footer-menu img {
  width: 28px;
  height: 28px;
  vertical-align: middle;
  filter: invert(1);
}

/* --- HORIZONTÁLNÍ MENU BEZ ODRÁŽEK --- */
nav.main-menu ul {
    list-style: none;       /* Zruší tečky */
    margin: 0;
    padding: 0;
    display: flex;          /* Horizontálně */
    justify-content: center;
    gap: 2.5em; /* ← TADY zvýšíš rozestup mezi položkami */
}

nav.main-menu li {
    display: inline-block;
}

nav.main-menu a {
    color: white;
    text-decoration: none;
    font-family: 'Raleway', Arial, sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    padding: 0.5em 0;
}

nav.main-menu a:hover {
    color: #f7b500;
}

@media (min-width: 769px) {
    nav {
        display: flex !important;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 1.5em;
    }
}


/* --- MEDIA QUERY PRO MENU --- */
@media (max-width: 768px) {
 
    /* Skryjeme nahoře nav (menu) */
    header nav {
        display: none;
        flex-direction: column;
        background-color: #333333;
        position: absolute;
        top: 3.1rem; /* uprav dle potřeby */
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        border-radius: 5px;
        z-index: 1000;
    }

    /* Pokud má menu třídu show, zobrazíme ho */
    header nav.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
        margin: 0 auto;
    }
.main-menu {
        display: none; /* výchozí stav – skryté */
        flex-direction: column;
        background-color: #333333; /* barva bubliny*/
        padding: 1em;
        position: absolute;
        top: 3.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        border: 1px solid #ccc;
        border-radius: 6px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .main-menu.show {
        display: flex;
    }

    .main-menu ul {
        flex-direction: column;  /* položky pod sebou */
        gap: 1em;
        align-items: center;
    }

    .main-menu ul li a {
        color: #fff;            /* Barva textu odkazů v menu */
    }

    .menu-toggle {
        display: block;
        background: #333;
        color: white;
        font-size: 1rem;
        border: none;
        padding: 0.5em 1em;
        margin: 0em auto;
        cursor: pointer;
        text-transform: uppercase;
        border-radius: 5px;
        font-weight: 600;
    }
    nav.main-menu ul {
    gap: 1em; /* ← TADY zvýšíš rozestup mezi položkami */
}
}


.logo-citat img {
    max-width: 400px;
    height: auto;
    cursor: pointer;
    margin-top: 1em;
}

.citat {
    font-family: 'Dancing Script', cursive;
    font-size: 1.7rem;
    margin-top: 0.3em;
    color: #555;
}

/* Responsivní text */
@media (max-width: 768px) {
      p.citat {
    font-size: 1.4em;
  }
}

/* --- BLOKY S TEXTEM POD BANNEREM --- */
.text-blocks {
    max-width: 990px;
    margin: 2em auto;
    display: flex;
    gap: 2em;
    justify-content: center;
    flex-wrap: wrap;
}

.text-block {
    padding: 2em;
    border-radius: 14px;
    background: linear-gradient(to bottom, #ffffff, #fff3e7);
    border-bottom: 4px solid;
    border-image: linear-gradient(to right, #fbc2eb, #ffe8db) 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    flex: 1 1 45%;
    min-width: 280px;
    color: #444;
    font-size: 1rem;
    text-align: center;
    margin: 0 1em;
    transition: box-shadow 0.3s ease;
}

.text-block:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.text-block h2 {
    margin-top: 0;
    font-size: 1.6rem;
    color: #4a2d5d;
    font-weight: 600;
    margin-bottom: 0.5em;
}

.text-block p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.text-block.single {
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
}


/* --- PAGINACE --- */
.pagination {
    margin-top: 1.5em;
    text-align: center;
}

.pagination a {
    margin: 0 5px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 0.4em 0.8em;
    border-radius: 5px;
    border: 1px solid transparent;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.pagination a.active,
.pagination a:hover {
    background-color: #333;
    color: white;
    border-color: #333;
}

/* --- FORMULÁŘ --- */
form {
    max-width: 600px;
    margin: 2em auto;
    text-align: left;
}

form label {
    display: block;
    margin-bottom: 0.3em;
    font-weight: 600;
    color: #333;
}

form input,
form textarea,
form select {
    width: 100%;
    padding: 0.6em;
    margin-bottom: 1em;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Raleway', Arial, sans-serif;
    box-sizing: border-box;
}

form button {
    background-color: #333;
    color: white;
    border: none;
    padding: 0.7em 1.5em;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #555;
}

/* --- DROBNE ÚPRAVY --- */
a {
    cursor: pointer;
}


.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1em;
}
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  margin-top: 1em;
}

.contact-text,
.contact-map {
  flex: 1 1 45%;
}

.contact-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* Mobilní zobrazení pod 768px: bloky pod sebou */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }
}
.btn-contact {
  display: inline-block;
  background-color: #222;       /* tmavé pozadí */
  color: #fff;                  /* bílý text */
  font-weight: bold;
  padding: 7px 12px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
  text-decoration: none;        /* pokud to bude odkaz */
}

.btn-contact:hover {
  background-color: #555;       /* světlejší při najetí */
}
/* --- KONEC --- */
