/**
 * TEMA BOLD - Audace e Dinamico
 * Design audace con colori vivaci, forme geometriche e animazioni energiche
 * Stile: Sport/Adventure/Youth
 */

/* ============================================
   GENERAL
   ============================================ */
.theme-bold {
    font-weight: 500;
}

/* ============================================
   NAVBAR
   ============================================ */
.theme-bold .navbar-modern {
    background: var(--tenant-primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    padding: 0.5rem 0;
}

.theme-bold .brand-logo {
    filter: brightness(0) invert(1);
}

.theme-bold .nav-link-modern {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    padding: 12px 20px !important;
}

.theme-bold .nav-link-modern::before {
    background: white;
    border-radius: 0;
}

.theme-bold .nav-link-modern:hover {
    color: var(--tenant-primary) !important;
}

.theme-bold .nav-link-modern.active-link {
    background: white;
    color: var(--tenant-primary) !important;
}

.theme-bold .custom-toggler span {
    background: white;
}

/* ============================================
   HERO SECTION
   ============================================ */
.theme-bold .storefront-hero {
    background: linear-gradient(160deg, var(--tenant-primary) 0%, var(--tenant-secondary) 50%, var(--tenant-accent) 100%);
    padding: 100px 0;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.theme-bold .storefront-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.03) 45%, rgba(255,255,255,0.03) 55%, transparent 55%),
        linear-gradient(-45deg, transparent 45%, rgba(255,255,255,0.03) 45%, rgba(255,255,255,0.03) 55%, transparent 55%);
    background-size: 30px 30px;
}

.theme-bold .storefront-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-shadow: 3px 3px 0 rgba(0,0,0,0.2);
}

.theme-bold .storefront-hero p {
    font-size: 1.3rem;
    font-weight: 500;
}

.theme-bold .storefront-hero .badge {
    background: var(--tenant-accent) !important;
    color: white !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.theme-bold .btn-hero {
    background: var(--tenant-accent);
    color: white;
    padding: 20px 50px;
    border-radius: 0;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    box-shadow: 5px 5px 0 rgba(0,0,0,0.3);
    transition: all 0.2s ease;
    transform: skewX(-5deg);
}

.theme-bold .btn-hero span {
    display: inline-block;
    transform: skewX(5deg);
}

.theme-bold .btn-hero:hover {
    transform: skewX(-5deg) translateY(-3px);
    box-shadow: 8px 8px 0 rgba(0,0,0,0.3);
}

/* ============================================
   CARDS
   ============================================ */
.theme-bold .card-modern,
.theme-bold .feature-card,
.theme-bold .bike-card {
    border-radius: 0;
    border: none;
    box-shadow: 8px 8px 0 rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    overflow: visible;
}

.theme-bold .card-modern:hover,
.theme-bold .feature-card:hover,
.theme-bold .bike-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 15px 15px 0 var(--tenant-primary);
}

.theme-bold .feature-card {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    overflow: visible;
}

.theme-bold .feature-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 4px;
    border-radius: 50% / 50%;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(to bottom, transparent, var(--tenant-primary, #333) 20%, var(--tenant-primary, #333) 80%, transparent);
    box-shadow: 0 0 4px rgba(0,0,0,0.15);
    opacity: 0.85;
}

.theme-bold .feature-icon {
    background: var(--tenant-accent);
    border-radius: 0;
    width: 80px;
    height: 80px;
    transform: rotate(-5deg);
}

.theme-bold .feature-card h4 {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.theme-bold .price-tag {
    background: var(--tenant-accent);
    border-radius: 0;
    padding: 10px 25px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(-2deg);
    display: inline-block;
}

/* ============================================
   BUTTONS
   ============================================ */
.theme-bold .btn-primary-modern {
    background: var(--tenant-primary);
    border-radius: 0;
    padding: 14px 35px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.2);
}

.theme-bold .btn-primary-modern:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 rgba(0,0,0,0.2);
}

.theme-bold .btn-outline-modern {
    border-radius: 0;
    border-width: 3px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   FOOTER
   ============================================ */
.theme-bold .storefront-footer {
    background: #111;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
    padding: 6rem 0 2rem;
    margin-top: -50px;
}

.theme-bold .storefront-footer h5 {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--tenant-accent);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.theme-bold .social-link {
    width: 50px;
    height: 50px;
    border-radius: 0;
    background: var(--tenant-primary);
    box-shadow: 3px 3px 0 rgba(255,255,255,0.2);
    transition: all 0.2s ease;
}

.theme-bold .social-link:hover {
    background: var(--tenant-accent);
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 rgba(255,255,255,0.2);
}

/* ============================================
   SECTIONS
   ============================================ */
.theme-bold .section-title {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 2.2rem;
}

.theme-bold .section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 6px;
    background: var(--tenant-accent);
    margin: 15px auto 0;
}

.theme-bold .section-subtitle {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    color: var(--tenant-primary);
}

.theme-bold .bg-light {
    background: #f8f8f8 !important;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.theme-bold .page-header {
    background: linear-gradient(160deg, var(--tenant-primary) 0%, var(--tenant-secondary) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    padding: 80px 0 100px;
}

.theme-bold .page-header h1 {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 3px 3px 0 rgba(0,0,0,0.2);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.theme-bold .bike-card,
.theme-bold .feature-card {
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
