html { box-sizing: border-box; }
*, ::before, ::after { box-sizing: inherit; }
 
body {
    margin: 0;
    font-family: 'Lora', serif;
    font-size: 18px;
    line-height: 1.5;
    color: #faf1e8;
    background-image: url(barva.png);
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
 
header,
main {
    padding-left: 40px;
    padding-right: 20px;
}
main {
    flex: 1;
}

.obsah-sekce {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
}
 
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    line-height: 1.45;
    color: #faf1e8;
    margin-top: 0;
}
 
h1 { font-size: 50px; color: #faf1e8; width: 500px;}
h2 { font-size: 36px; }
h3 { font-size: 18px; }
 
.hlavicka {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
    max-width: 80%;
    font-size: 26px; 
    list-style: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}
 
.nav-links a {
    text-decoration: none;
    color: #faf1e8;
    position: relative;
    padding-bottom: 4px;
}
 
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: #c2a24a; 
    border-radius: 10px;
    transition: width 0.3s ease;
}
 
.nav-links a:hover::after {
    width: 100%;
}
 
.logo {
    width: 140px;
    padding-top: 10px;
    margin: auto;
}
 
.menu ul {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}
 
.menu a {
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 20px;
    color: #faf1e8;
}
 
.menu a:hover {
    background-color: #94736d;
    color: #faf1e8;
}
 
.hero {
    background-image: url(kureci\ prso\ pozadi.png);
    background-size: cover;
    background-position: center;
    height: 950px;
    color: #faf1e8;
}
 
.hero .obsah-sekce {
    padding: 120px 20px;
    max-width: 1100px;
}
 
.hero-text {
    font-size: 22px;
    max-width: 60%;
    padding-bottom: 100px;
    line-height: 25px;
}
.hero h1 {
    color: #faf1e8;
    max-width: 50%;
    padding-top: 70px;
    padding-right: 1px;
}
 
.dva-sloupce {
    display: flex;
    gap: 30px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 10px;
    padding-bottom: 10px;
    align-items: flex-start;
}
 
.sloupec {
    flex: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 20px;
}

.sloupec-1, .sloupec-2 {
    flex: 1;
    width: 100%;
}

.doprava-text {
    font-size: 22px;
}
 
.foto {
    width: 100%;
    border-radius: 5px;
}
 
.tlacitko {
    display: inline-block;
    background-color: #94736d;
    color: #faf1e8;
    padding: 10px 15px;
    border-radius: 30px;
    text-decoration: none;
}
 
.tlacitko:hover {
    background-color: #94736d;
}
 
.sekce-seda {
    background-image: url(barva.png);
}
 
.paticka {
    background-color: #222428;
    color: #faf1e8;
    text-align: center;
    width: 100%;
    margin: 0;
    padding-bottom: 0;
    box-sizing: border-box;
}
 
.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}
 
.show {
    opacity: 1;
    transform: translateY(0);
}

.kontakty {
    display: flex;
    gap: 40px;
    text-align: center;
    justify-content: center;
    align-items: center;
    height: 150px;
    flex: 1;
    margin: 0 auto;
}
 
.billing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 20px;
}
 
.billing-card {
  background: #f5f2f2;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 25px;
  border-top: 4px solid var(--border);
  transition: 0.3s;
}
 
.billing-card:hover {
  border-top-color: var(--green);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
 
.billing-header {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #4d433b;
}
 
.billing-header h3 {
  font-size: 1.45rem;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1px;
}
 
.billing-item p {
  margin: 0;
  color: #a0a0a0;
  font-size: 1.10rem;
}
 
.billing-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--dark);
}
 
.billing-item span {
  font-size: 0.7rem;
  color: #888;
  text-transform: uppercase;
  font-weight: 700;
}
 
.billing-card {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
 
:root {
  --green: #c2a24a ;
  --light-green: #C9A84C;
  --dark: #1a1a1a;
  --border: #15171b;
  --radius: 20px;
}
 
html {
  scroll-behavior: smooth;
}
 
.section {
  margin-bottom: 80px;
}
 
.section-title {
  font-size: 1.8rem;
  margin-bottom: 30px;
  border-left: 6px solid var(--green);
  padding-left: 15px;
  text-transform: uppercase;
  font-weight: 800;
}
 
.mapa-full {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 0;
    margin: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 500px;
    z-index: 0;
    margin-top: 30px !important;
}
 
.container {
    padding-bottom: 0;
}
 
.section:last-child {
    margin-bottom: 0;
}
 
.mapa-full iframe {
    margin: 0 !important;
}
 
/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}
 
.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #faf1e8;
    border-radius: 3px;
    transition: all 0.3s ease;
}
 
.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.tabulka-sortiment {
    background: var(--paper, #FBF6EC);
    border: 1px solid var(--line, #D8C7A8);
    border-radius: 4px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 480px;
}

.tabulka-sortiment h3 {
    font-family: 'Fraunces', serif;
    font-size: 27px;
    color: #161616;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--gold, #C89B3C);
    padding-bottom: 10px;
}

.tabulka-sortiment .podnadpis-masa {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 18px;
    letter-spacing: 0.1em;
    color: #646464;
    margin-top: 25px;
    margin-bottom: 10px;
}

.tabulka-sortiment table {
    width: 100%;
    border-collapse: collapse;
}

.tabulka-sortiment td {
    padding: 12px 0;
    border-bottom: 1px solid var(--line, #D8C7A8);
    font-size: 17px;
    color: #2A211C;
}

/* Poslední řádek nebude mít čáru dole */
.tabulka-sortiment tr:last-child td {
    border-bottom: none;
}
 
#doprava .obsah-sekce,
#doprava .dva-sloupce {
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
}

#doprava .sloupec {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#doprava .foto {
    width: 100%;
    height: auto;
    max-height: 80vh; /* Zabrání tomu, aby byl obrázek na obřím monitoru až moc vysoký */
    object-fit: cover;
}


/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
 
    body {
        padding-left: 0;
        padding-right: 0;
        overflow-x: hidden;
    }
 
    header,
    main {
        padding-left: 0;
        padding-right: 0;
    }
 
    .side-border-left {
        display: none;
    }
 
    .hlavicka {
        padding: 12px 16px;
        position: relative;
        z-index: 1002;
    }
 
    .logo {
        width: 100px;
    }
 
    .hamburger {
        display: flex;
    }
 
    .nav-links {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background-color: #15171b;
        z-index: 1000;
        padding: 0; 
        margin: 0;
    }
 
    .nav-links.open {
        display: flex;
    }
 
    .nav-links li {
        width: 100%;
        text-align: center;
    }
 
    .nav-links a {
        display: block;
        padding: 22px 20px;
        font-size: 26px;
        border-bottom: 1px solid #222428;
        color: #faf1e8;
    }
 
    .nav-links a:hover {
        color: #c2a24a;
    }
 
    .nav-links a::after {
        display: none;
    }
 
    .hamburger {
        z-index: 1002;
    }
 
    .hero {
        height: auto;
        min-height: 350px;
        background-position: 65% center;
        background-size: cover;
        max-width: 768px;
        padding-right: 0;
    }
 
    .hero .obsah-sekce {
        padding: 60px 20px 40px;
    }
 
    .hero h1 {
        font-size: 29px;
        width: 100%;
        max-width: 100%;
        padding-right: 3px;
    }
 
    .hero-text {
        font-size: 18px;
        max-width: 330px;
        padding-bottom: 90px;
        padding-right: 80px;
    }
 
    .obsah-sekce {
        padding: 40px 20px;
        min-height: 480px;
    }
 
    h1 { font-size: 10px; padding-top: 90px; padding-right: 90px;}
    h2 { font-size: 26px; }
 
    .dva-sloupce {
        flex-direction: column;
    }
 
    .foto {
        width: 100%;
        margin-bottom: 20px;
        padding-top: 10px;
        margin: 0;
    }
 
    .billing-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
 
    .billing-card {
        width: 100%;
        max-width: 360px;
        height: auto;
        margin: 0 auto;
    }
 
    .sloupec {
        flex: 1;
        max-width: 700px;
        margin: 0 auto;
        padding: 10px 10px;
        padding-top: 10px;
    }
 
    .kontakty {
        flex-direction: column;
        height: auto;
        padding: 30px 20px;
        gap: 10px;
    }
 
    .mapa-full,
    .map-full iframe {
        height: 300px;
    }
 
    .section-title {
        font-size: 1.4rem;
    }
 
    .container {
        padding: 0 16px;
    }
 
    .section {
        margin-bottom: 40px;
    }
}
 
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}