/**
 * TEMA CLASSIC - Elegante e Professionale
 * Design classico con bordi definiti, tipografia tradizionale e colori sobri
 * Stile: Business/Corporate professionale
 */

/* ============================================
   NAVBAR
   ============================================ */
.theme-classic .navbar-modern {
    background: white;
    border-bottom: 3px solid var(--tenant-primary);
    box-shadow: none;
    padding: 1rem 0;
}

.theme-classic .nav-link-modern {
    color: #333 !important;
    font-weight: 600;
    border-radius: 0;
    position: relative;
}

.theme-classic .nav-link-modern::before {
    display: none;
}

.theme-classic .nav-link-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--tenant-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.theme-classic .nav-link-modern:hover::after,
.theme-classic .nav-link-modern.active-link::after {
    width: 100%;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.theme-classic .storefront-hero {
    background: var(--tenant-primary);
    padding: 80px 0;
    position: relative;
}

.theme-classic .storefront-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--tenant-accent);
}

.theme-classic .storefront-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Georgia', serif;
    letter-spacing: 0;
}

.theme-classic .storefront-hero p {
    font-size: 1.2rem;
    font-style: italic;
}

.theme-classic .btn-hero {
    background: white;
    color: var(--tenant-primary);
    padding: 15px 40px;
    border-radius: 0;
    border: 3px solid white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.theme-classic .btn-hero:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* ============================================
   CARDS
   ============================================ */
.theme-classic .card-modern,
.theme-classic .feature-card,
.theme-classic .bike-card {
    border-radius: 0;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.theme-classic .card-modern:hover,
.theme-classic .feature-card:hover,
.theme-classic .bike-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--tenant-primary);
}

.theme-classic .feature-icon {
    background: var(--tenant-primary);
    border-radius: 0;
    width: 80px;
    height: 80px;
}

.theme-classic .feature-card h4 {
    font-family: 'Georgia', serif;
    font-weight: 700;
}

.theme-classic .price-tag {
    background: var(--tenant-primary);
    border-radius: 0;
    padding: 8px 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.theme-classic .btn-primary-modern {
    background: var(--tenant-primary);
    border-radius: 0;
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--tenant-primary);
}

.theme-classic .btn-primary-modern:hover {
    background: transparent;
    color: var(--tenant-primary);
}

.theme-classic .btn-outline-modern {
    border-radius: 0;
    border-width: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   FOOTER
   ============================================ */
.theme-classic .storefront-footer {
    background: #1a1a1a;
    border-top: 5px solid var(--tenant-primary);
    padding: 4rem 0 2rem;
}

.theme-classic .storefront-footer h5 {
    font-family: 'Georgia', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    border-bottom: 2px solid var(--tenant-primary);
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.theme-classic .social-link {
    width: 40px;
    height: 40px;
    border-radius: 0;
    border: 2px solid rgba(255,255,255,0.3);
    background: transparent;
}

.theme-classic .social-link:hover {
    background: var(--tenant-primary);
    border-color: var(--tenant-primary);
}

/* ============================================
   SECTIONS
   ============================================ */
.theme-classic .section-title {
    font-family: 'Georgia', serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 1.8rem;
}

.theme-classic .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--tenant-primary);
    margin: 20px auto 0;
}

.theme-classic .section-subtitle {
    font-style: italic;
    color: #666;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.theme-classic .page-header {
    background: var(--tenant-primary);
    border-bottom: 5px solid var(--tenant-accent);
}

.theme-classic .page-header h1 {
    font-family: 'Georgia', serif;
    text-transform: uppercase;
    letter-spacing: 3px;
}
