/* ======================================================= */
/* ================    ZÁKLADNÉ NASTAVENIA   ============= */
/* ======================================================= */

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', Arial, sans-serif;
    background: #ffffff;
    color: #222222;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.bebas-font {
    font-family: 'Bebas Neue', sans-serif;
}

/* ======================================================= */
/* ==============       HEADER & NAV       =============== */
/* ======================================================= */

.site-header {
    background: #ffffff;
    border-bottom: 2px solid #f0f0f0;
    padding: 15px 0;
}

.site-logo a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #222222 !important;
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-link {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: #222222 !important;
    transition: 0.3s;
}

.nav-link:hover {
    color: #ff6b6b !important;
}

/* ======================================================= */
/* ================  PRODUKTOVÉ KARTY    ================= */
/* ======================================================= */

/* Zabezpečí, že všetky karty v jednom riadku budú rovnako vysoké */
.product-card {
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%; 
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* JEDNOTNÝ ROZMER PRE OBRÁZKY */
.product-card img {
    width: 100%;
    height: 350px; /* Pevná výška pre všetky obrázky produktov */
    object-fit: contain; /* Obrázok sa nedeformuje */
    background-color: #f9f9f9;
    margin-bottom: 15px;
    padding: 10px;
}

.product-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
    min-height: 2.8rem; /* Rezervuje miesto pre 2 riadky textu */
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-price {
    color: #ff6b6b;
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

/* Tlačidlo Buy Now vždy na spodku karty */
.product-card .btn-dark, .product-card .secondary-btn {
    margin-top: auto;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    padding: 10px;
    border-radius: 0;
    background-color: #222222;
    color: #ffffff;
    border: none;
    width: 100%;
    text-decoration: none;
    display: inline-block;
}

.product-card .btn-dark:hover, .product-card .secondary-btn:hover {
    background-color: #ff6b6b;
    color: #ffffff;
}

/* ======================================================= */
/* ================   PÄTIČKA (FOOTER)   ================= */
/* ======================================================= */

.site-footer {
    background-color: #1a1a1a !important; /* Tmavá antracitová farba */
    color: #ffffff !important;
    padding: 60px 0 30px;
    margin-top: auto;
}

/* Nadpisy v pätičke */
.site-footer h4 {
    color: #ff6b6b !important; 
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 25px;
    text-transform: uppercase;
}

/* Viditeľnosť všetkých textov a odkazov */
.site-footer p, 
.site-footer span, 
.site-footer li, 
.site-footer a {
    color: #ffffff !important; /* Čisto biely text pre maximálnu viditeľnosť */
    opacity: 1 !important;
    text-decoration: none;
    font-size: 0.95rem;
}

.site-footer a:hover {
    color: #ff6b6b !important;
}

.site-footer ul {
    list-style: none;
    padding: 0;
}

/* Copyright sekcia na úplnom spodku */
.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #ffffff !important; /* FARBA COPYRIGHTU - teraz je biela, aby vynikla */
    font-weight: bold;
    font-size: 0.9rem;
}

/* Ikonky sociálnych sietí */
.site-footer i {
    font-size: 1.5rem;
    color: #ffffff !important;
    margin: 0 10px;
    transition: 0.3s;
}

.site-footer i:hover {
    color: #ff6b6b !important;
}

/* ======================================================= */
/* ================      ANIMÁCIE        ================= */
/* ======================================================= */

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-15px);}
    60% {transform: translateY(-8px);}
}

.fa-bounce {
    animation: bounce 2s infinite;
}