/* Custom styles */
:root {
    --primary-color: #1a237e;    /* Tmavě modrá */
    --secondary-color: #0d47a1;  /* Středně modrá */
    --accent-color: #2962ff;     /* Světle modrá */
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
}

/* Hero section */
.hero-section {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(rgba(26,35,126,0.7), rgba(26,35,126,0.7)),
                url('../images/hero-image.jpg') center/cover no-repeat;
    color: #fff;
    margin-bottom: 2rem;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section img {
    transition: transform 0.3s ease;
}

.hero-section img:hover {
    transform: scale(1.02);
}

/* Cards */
.card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

/* Buttons */
.btn {
    border-radius: 5px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

.btn-outline-primary {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-outline-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-1px);
}

/* Badges */
.badge {
    padding: 0.5em 1em;
    font-weight: 500;
}

.badge.bg-primary {
    background-color: var(--accent-color) !important;
}

/* Footer */
footer {
    margin-top: auto;
    background: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 220px;
        padding: 2rem 0;
    }
    
    .hero-section img {
        margin-top: 2rem;
    }
}

/* Custom animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeIn 0.5s ease-out;
}

.hero-image-banner {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    max-height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #e0e0e0;
}

.hero-banner-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.navbar-custom {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
}

.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
    color: #fff !important;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: #e0e0e0 !important;
}

.card .card-title {
    font-size: 2rem;
    font-weight: bold;
}

.navbar .nav-link,
.navbar .navbar-brand {
    color: #fff !important;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #e0e0e0 !important;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-brand {
    color: #fff !important;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #e0e0e0 !important;
}

.cookie-banner {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    background: #fff;
    color: #222;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.12);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    max-width: 340px;
    font-size: 1rem;
    border: 1px solid #e0e0e0;
}
@media (max-width: 600px) {
    .cookie-banner {
        right: 8px;
        bottom: 8px;
        padding: 12px 10px;
        font-size: 0.95rem;
        max-width: 95vw;
    }
}

.cookie-banner-modern {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 9999;
    background: #fff;
    color: #222;
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.13);
    padding: 24px 28px;
    max-width: 420px;
    min-width: 260px;
    font-size: 1rem;
    border: 1px solid #e0e0e0;
    animation: fadeInUp 0.5s;
}
.cookie-banner-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.cookie-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.cookie-text {
    font-size: 0.98rem;
    margin-bottom: 0.7rem;
    color: #444;
}
.cookie-actions .btn {
    min-width: 90px;
    margin-right: 8px !important;
    margin-bottom: 0 !important;
    white-space: nowrap;
    padding-left: 12px;
    padding-right: 12px;
}
.cookie-actions .btn:last-child {
    margin-right: 0 !important;
}
@media (max-width: 600px) {
    .cookie-banner-modern {
        left: 8px;
        bottom: 8px;
        padding: 10px 4px;
        font-size: 0.95rem;
        max-width: 98vw;
        min-width: 0;
    }
    .cookie-actions .btn {
        min-width: 70px;
        font-size: 0.95rem;
        padding-left: 8px;
        padding-right: 8px;
    }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px);}
    to { opacity: 1; transform: translateY(0);}
}

/* RevBid ad styles */
div[style*="https://revbid.net/rb.png"] {
    background-image: none !important;
} 