/* ================================
   Homepage Specific Styles
   ================================ */

/* Hero Buttons - Golden Theme */
.hero-buttons .btn-primary {
    background: #d7a74f !important;
    color: white !important;
    border: 2px solid #d7a74f !important;
}

.hero-buttons .btn-primary:hover {
    background: #be8f38 !important;
    border-color: #be8f38 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(215, 167, 79, 0.3);
}

.hero-buttons .btn-secondary {
    background: transparent !important;
    color: white !important;
    border: 2px solid white !important;
}

.hero-buttons .btn-secondary:hover {
    background: white !important;
    color: #d7a74f !important;
    border-color: white !important;
    transform: translateY(-2px);
}

/* Hero Image */
.hero-image img {
    width: 100%;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Shop Cards Section */
.shop-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.shop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.shop-card .badge-featured {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ffc107;
    color: #000;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.shop-card .shop-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-card .shop-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.shop-card .logo-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: bold;
}

.shop-card h3 {
    text-align: center;
    margin: 0.5rem 0;
    font-size: 1.25rem;
}

.shop-card .rating {
    text-align: center;
    margin: 0.5rem 0;
}

.shop-card .rating .star {
    color: #ffc107;
    font-size: 0.9rem;
}

.shop-card .rating-value {
    margin-left: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.shop-card .shop-description {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin: 1rem 0;
    min-height: 3rem;
}

.shop-card .shop-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.shop-card .shop-actions .btn {
    flex: 1;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* Process Section */
.process-step {
    text-align: center;
}

.process-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color, #005a73);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.process-step:hover .process-number {
    transform: scale(1.1);
}

.process-step h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color, #005a73);
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section Bottom - Eigene Styles für die zwei Buttons */
.cta-btn-compare,
.cta-btn-glossar {
    display: inline-block;
    padding: 0.75rem 2rem;
    margin: 0 0.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn-compare {
    background: white;
    color: #005a73;
}

.cta-btn-compare:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.cta-btn-glossar {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-btn-glossar:hover {
    background: white;
    color: #005a73;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color, #005a73);
    color: white;
    padding: 4rem 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

/* Alte Button-Styles entfernt - wir nutzen jetzt cta-btn-compare und cta-btn-glossar */

/* Responsive */
@media (max-width: 768px) {
    .process-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn-compare,
    .cta-btn-glossar {
        display: block;
        width: 100%;
        max-width: 300px;
        text-align: center;
        margin: 0.5rem auto;
    }
}