:root {
    --primary-color: #1a1a1a;
    --accent-color: #E2001A;
    --text-muted: #666;
    --bg-white: #ffffff;
    /* Pridáme premennú pre font */
    --font-main: 'Inter', sans-serif;
}

/* Nastavenie pre celý dokument */
body {
    font-family: var(--font-main);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased; 
    background-color: black;/* Pre lepšie vykresľovanie na Macu */
}
#logomobil{
    display: none!important;
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Samostatná vrstva pre obrázok a gradient */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('img/hlavny-banner.jpg');
    background-size: cover; /* Dôležité: musí byť cover, nie 100% */
    background-position: center;
    transform: scale(1.2); 
    will-change: transform, opacity;
    background-size: 100%;
    opacity: 0.8;
    
}

/* Tvoj prechod zostáva na banneri, aby bol navrchu */
.hero-banner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Obsah musí mať z-index, aby nebol pod obrázkom */
.hero-content, .animated-object {
    position: relative;
    z-index: 2;
}

/* Upravený Navbar pre lepšiu stabilitu */
.navbar {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Logo vľavo, menu vpravo */
    align-items: center;
    padding: 30px 0;
    z-index: 10;
}

/* Zabezpečíme, aby zoznam v menu nebol odsadený */
.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px; /* Medzery medzi odkazmi */
    align-items: center;
}

/* Zrušenie predvolených štýlov prehliadača */
.navbar .logo a { display: block; }
.navbar .logo img { display: block; height:70px }

/* Odkazy v menu */
.nav-links li a { 
    color: white !important; 
    font-weight: 700; 
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: 0.3s;
}
.nav-links li a:hover { color: #E2001A !important; }

/* Tlačidlo - opravil som padding, aby bolo vyvážené */
.btn-cta { 
    background: #E2001A; 
    color: white !important; 
    padding: 12px 25px; 
    border-radius: 4px; 
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
}

.centralnapadingova{
    padding: 20px 50px; background: white;
}

/* Hero text centrálne */
.hero-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}
.sub-hero {
    position: relative;
    width: 100%;
    height: 300px; /* Fixná výška podľa požiadavky */
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Pozadie pre sub-hero */
.sub-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Jemný overlay, aby bol text čitateľný */
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Štýl pre nadpis podstránky */
.sub-hero-content {
    position: relative;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    color: white;
    padding-top: 20px; /* Priestor kvôli fixnému menu ak treba */
}

.sub-hero-content h1 {
    font-size: 2.5rem; /* Menšie ako na hlavnej stránke */
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 2px;
    font-weight: 800;
}

/* Spodný tieň pre prechod do obsahu stránky */
.sub-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Zachovanie navbaru (zostáva rovnaký ako v tvojom kóde) */

.hero-content h1 { font-size: 3.8rem; margin-bottom: 50px; }

/* Tlačidlá */
.btn-main { background: #E2001A; color: white; padding: 15px 30px; text-transform: uppercase; font-weight: 800; border-radius: 4px; text-decoration: none; }
.btn-ghost { border: 2px solid white; color: white; padding: 13px 28px; text-transform: uppercase; font-weight: 800; border-radius: 4px; text-decoration: none; margin-left: 20px; }


.nadpis-sekcie {
    text-align: center;
    padding: 0px 20px 60px 20px;
    max-width: 800px; /* Aby sa text nerozťahoval na celú šírku */
    margin: 0 auto;
}

.nadpis-sekcie h2 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
    color: white;
    margin-top: 0;
}

.nadpis-sekcie p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    color: white;
}

/* Kontajner pre 4 stĺpce */
.grid-kolekcie {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0; /* Karty tesne pri sebe */
    max-width: 1400px;
    margin: 0 auto;
}

/* Karta - nastavíme výšku a flexbox pre obsah */
.karta {
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

/* Fotka */
.karta-img {
    height: 45%; 
    background-size: cover;
    background-position: center;
}

/* Tmavá časť s textom */
.karta-obsah {
    height: 55%;
    background-color: #2D2D2D; /* Presný tmavý odtieň z fotky */
    color: #FFFFFF;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

/* Typografia */
.karta-obsah h3 {
    font-size: 1.4rem;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.karta-obsah p {
    color: #D1D1D1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Zoznam s fajkami */
.karta-obsah ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1; /* Tlačí tlačidlo dole */
}

.karta-obsah ul li {
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.karta-obsah ul li::before {
    content: "✓";
    margin-right: 10px;
    font-weight: bold;
}

.kolekcie-wrapper{
	padding-bottom: 30px;
}

/* Tlačidlo - biele s tenkým rámom */
.btn-kolekcia {
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-kolekcia:hover {
    background: #FFFFFF;
    color: #2D2D2D;
}

.produkty-sekcia {
    padding: 60px 0;
    background-color: #f9f9f9; 
}

.produkty-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.produkt-karta {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.produkt-header {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 30px;
}

.produkt-stisok {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    max-width: 80%;
}

.produkt-tag {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #666;
    text-transform: uppercase;
}

.produkt-stisok h2 {
    font-size: 1.4rem;
    margin-top: 5px;
    color: #1a1a1a;
}

.produkt-body {
    padding: 20px 40px 40px 40px;
}

.mapkafoot {
    width: 90%;
    height: 300px;
    margin: auto;
    border-radius: 30px;
    overflow: hidden;
    margin-top: -50px;
    position: relative;
    top: 120px;
    -webkit-box-shadow: 0px 13px 36px -2px rgba(0, 0, 0, 0.17);
    box-shadow: 0px 13px 36px -2px rgba(0, 0, 0, 0.17);
}

.cena-blok {
    margin-bottom: 25px;
}

.suma {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.jednotka {
    font-size: 1.2rem;
    color: #666;
}

.technicky-link {
    display: block;
    margin-top: 5px;
    color: #999;
    text-decoration: none;
    font-size: 0.85rem;
}

.vyhody-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.vyhody-list li {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.vyhody-list li::before {
    content: "✓";
    margin-right: 12px;
    color: #333;
    font-weight: bold;
}

/* Výber farieb */
.farby-vyber {
    display: flex;
    gap: 10px;
    margin-bottom: 35px;
}

.farba {
    width: 35px;
    height: 35px;
    border-radius: 2px;
    border: 1px solid #eee;
    cursor: pointer;
}

/* Tlačidlá */
.btn-ponuka {
    display: block;
    padding: 18px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-red { background: #E2001A; color: #fff; }
.btn-dark { background: #252525; color: #fff; }

.btn-ponuka:hover { opacity: 0.9; transform: translateY(-2px); }

/* Responzivita */
@media (max-width: 900px) {
    .produkty-container { grid-template-columns: 1fr; }
}

.realne-ukazky {
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.realne-ukazky h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.realne-ukazky h3 span {
    color: #888;
    font-weight: 400;
}

.realne-ukazky p {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Grid pre fotky */
.galeria-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.foto-velka {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 2px;
}

.foto-male-riadok {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.foto-mala {
    height: 120px;
    background-size: cover;
    background-position: center;
    border-radius: 2px;
}

/* Zväčšenie karty, aby sa tam galéria zmestila */
.produkt-karta {
    height: auto; /* Zmeníme z fixnej výšky na automatickú */
}

.o-nas-sekcia {
    background-color: #D6D2C4;
    padding: 150px 0; /* Zväčšený padding pre viac miesta na pohyb */
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden; /* Aby fotka nepretŕčala pri animácii */
}

.o-nas-container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Text zaberá o niečo viac miesta */
    gap: 60px;
    align-items: center;
    padding: 0 40px;
}

.o-nas-fade-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: #ffffff;
    opacity: 0; /* Pôvodne neviditeľná */
    pointer-events: none;
    z-index: 10;
}

.o-nas-text h1 {
    font-size: 3.5rem; /* Výrazný veľký nadpis */
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.o-nas-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
    max-width: 550px;
}

.o-nas-foto {
    overflow: hidden; /* Dôležité pre maskovanie fotky */
    transition: transform 0.3s ease-out;
}

.o-nas-foto img {
    width: 100%;
    display: block;
    transform-origin: center;
}

/* Responzivita pre tablety a mobily */
@media (max-width: 1024px) {
    .o-nas-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .o-nas-text p {
        margin-left: auto;
        margin-right: auto;
    }
    .o-nas-text h1 {
        font-size: 2.5rem;
    }
}

.sluzby-sekcia {
    background-color: #F9F9F9; /* Svetlosivý podklad z prílohy */
    padding: 80px 20px;
    font-family: sans-serif;
}

.sluzby-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sluzby-header {
    margin-bottom: 60px;
}

.sluzby-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    margin-top: 0px;
    color: #1a1a1a;
}

.sluzby-header p {
    font-size: 1.1rem;
    color: #444;
}

/* Mriežka */
.sluzby-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dva stĺpce */
    column-gap: 80px;
    row-gap: 40px;
}

.sluzba-polozka {
    border-top: 1px solid #bcbcbc; /* Čiara nad každou službou */
    padding-top: 25px;
}

.sluzba-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.sluzba-top h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
}

.tag-zdarma {
    color: #FF4500; /* Oranžová farba z predlohy */
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.sluzba-polozka p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

/* Mobilná verzia */
@media (max-width: 768px) {
    .sluzby-grid {
        grid-template-columns: 1fr;
    }
}

.recenzie-sekcia {
    background-color: #D6D2C4; /* Béžové pozadie z prílohy */
    padding: 100px 20px;
    font-family: 'Georgia', serif; /* Elegantný pätkový font ako na obrázku */
}

.recenzie-container {
    max-width: 800px; /* Užší blok textu ako v prílohe */
    margin: 0 auto;
}

.recenzie-container h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 60px;
    font-family: sans-serif;
    text-transform: uppercase;
}

/* Štýl jednej recenzie - kľúčový prvok */
.recenzia-item {
    border-left: 2px solid #8e8a7e; /* Zvislá čiara */
    padding-left: 25px;
    margin-bottom: 50px;
}

.recenzia-item p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin-bottom: 15px;
}

.autor {
    font-weight: 700;
    font-size: 0.9rem;
    color: #555;
    text-transform: uppercase;
    font-family: sans-serif;
    letter-spacing: 1px;
}



footer{
    width: 100%;
    height: auto;
    background-color: black;
    border-top: 50px solid #E2001A;

}
footer #stredfooter{
    width: 89%;
    margin: auto;
    display: flex;
    
    gap: 30px;
    margin-bottom: 60px;
    padding-top: 140px;
}

footer #stredfooter .footpole{
    flex: 25%;
    line-height: 1.7;
    font-size: 15px;

color: white;

}
footer #stredfooter .footpole a{
  font-weight: 600;
  color: white;
  text-decoration: none;
}
footer #stredfooter .footpole h4{
    font-weight: 800;
    color: white;
    font-size: 17px;
    
}
footer .podpeta{
    width: 100%;
    padding: 20px 0px;
    font-size: 12px;
    color: #dadada;
    text-align: center;
}
footer .podpeta a{
    color: #dadada;
}

/* rezervácia čast */


.footer-sekcia {
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-form input, .footer-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #444;
    color: #fff;
    padding: 10px 0;
    margin-bottom: 20px;
}

.btn-odoslat {
    background-color: #ff4500; /* Oranžová z obrázka */
    color: white;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.footer-bottom {
    margin-top: 60px;
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #888;
}

/* Responzivita: na mobile pod seba */
@media (max-width: 768px) {
    .footer-container { grid-template-columns: 1fr; }
}

.animated-object {
    position: absolute; /* Umiestnenie vzhľadom na hero-banner */
    bottom: 5%; /* Príklad: 5% odspodu */
    right: 5%; /* Príklad: 5% sprava */
    transform: scale(0.5) rotate(0deg); /* Začína malé a rovné */
    opacity: 0; /* Začína neviditeľné */
    z-index: 10;
}
.animated-object img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.nav-btn-fixed {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease; /* Pre plynulý prechod */
}