/* ====== Body & Základ ====== */
body {
    background-color: #CCC5B9;
    font-family: 'Segoe UI', system-ui;
}

/* ====== Hero Section ====== */
.hero-bg-image {
    background-image: url('../img/bike1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Vrstvy pro hero sekci */
.z-layer-1 {
    z-index: 1;
}

.z-layer-2 {
    z-index: 2;
}

/* Stín pro text  */
.custom-text-shadow {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

/* ====== Barvy a Pozadí ====== */
.bg-custom-light {
    background-color: #fffcf2 !important;
}

.text-orange {
    color: #eb5e28 !important;
}

/* ====== Tlačítka ====== */
.btn-orange {
    background-color: #eb5e28 !important;
    color: white !important;
    border: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.btn-orange:hover {
    background-color: #c94e1f !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(235, 94, 40, 0.3) !important;
}

/* hover */
.nav-link:hover, .nav-link:hover i {
    color: #eb5e28 !important;
}

/* ====== Konfigurátor  ====== */

/* Pozadí */
.config-container {
    background-color: #fffcf2;
}

/* Tmavý nadpis a texty */
.text-dark-custom {
    color: #252422 !important;
}

/* Cena v konfigurátoru */
.price-tag {
    color: #eb5e28 !important;
}

/* ====== Objednávka ====== */
.order-summary-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    top: 20px;
}

.italic {
    font-style: italic;
}


.shadow-custom {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important;
}

/* ====== RESPONZIVITA ====== */
@media (max-width: 768px) {
    .display-3 {
        font-size: 2.2rem !important;
    }
    
    .hero-section {
        height: 70vh !important;
    }

    .navbar-brand img {
        height: 50px;
    }
}