/* --- 1. ZÁKLADNÍ NASTAVENÍ --- */
body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* --- 2. HERO SEKCE (HLAVIČKA) --- */
.hero {
    height: 60vh;
    background: url('https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?q=80&w=2070') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    text-align: center;
    width: 100%;
}

.hero h1 {
    margin: 0;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- 3. ROZCESTNÍK E-SHOPŮ (GRID) --- */
.eshopy {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 1rem;
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    text-decoration: none;
    color: #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #eee;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    border-color: #5c0a1a;
}

.card img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    margin-bottom: 2rem;
}

.card span {
    font-weight: bold;
    color: #5c0a1a;
    border: 2px solid #5c0a1a;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s;
}

.card:hover span {
    background: #5c0a1a;
    color: white;
}

/* --- 4. SEKCE O NÁS --- */
.about {
    padding: 5rem 1rem;
    background: #fff;
    text-align: center;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.about h2 {
    color: #5c0a1a;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

/* --- 5. PATIČKA (KONTAKT) --- */
footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 4rem 1rem 1.5rem;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.contact-info h3 {
    color: #fff;
    text-transform: uppercase;
    border-bottom: 2px solid #5c0a1a;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 1.5rem;
}

.contact-info a {
    color: #ff9da1; /* Světlejší červená pro lepší čitelnost na tmavém */
    text-decoration: none;
}

.copyright {
    font-size: 0.85rem;
    border-top: 1px solid #444;
    padding-top: 1.5rem;
    color: #888;
}

/* --- 6. COOKIE LIŠTA --- */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.95);
    color: white;
    padding: 1.2rem;
    text-align: center;
    font-size: 0.9rem;
    z-index: 9999;
}

.cookie-bar button {
    background: #5c0a1a;
    color: white;
    border: none;
    padding: 8px 20px;
    margin-left: 15px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
}