/* ===================================
   Gift Process Section
   So funktioniert der Gutschein-Prozess
   =================================== */

.gift-process {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.gift-process::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(97, 0, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.gift-process::after {
    content: '';
    position: absolute;
    top: 30%;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

/* Section Header */
.gift-process .section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.gift-process .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #2a0000;
    margin-bottom: 16px;
}

.gift-process .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Process Timeline - Neues sauberes Layout */
.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
}

/* Timeline Line */
.timeline-line {
    position: absolute;
    left: 80px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: linear-gradient(180deg, 
        #e0e0e0 0%, 
        #e0e0e0 100%
    );
}

/* Process Steps - Sauberes Grid Layout */
.gift-process .process-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 60px;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.gift-process .process-step:nth-child(2) {
    animation-delay: 0.2s;
}

.gift-process .process-step:nth-child(3) {
    animation-delay: 0.4s;
}

.gift-process .process-step:nth-child(4) {
    animation-delay: 0.6s;
}

.gift-process .process-step:nth-child(5) {
    animation-delay: 0.8s;
}

.gift-process .process-step:last-child {
    margin-bottom: 0;
}

/* Step Marker - Links außerhalb des Contents */
.step-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #610000 0%, #8b0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(97, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.gift-process .process-step:hover .step-marker {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(97, 0, 0, 0.3);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.step-number {
    font-size: 24px;
    font-weight: 900;
    color: white;
    transition: color 0.3s ease;
}

.gift-process .process-step:hover .step-number {
    color: #610000;
}

/* Step Content - Rechts neben der Nummer */
.step-content {
    padding: 25px 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.gift-process .process-step:hover .step-content {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-left-color: #610000;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2a0000;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .process-timeline {
        padding: 0 30px;
    }
    
    .timeline-line {
        left: 70px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .gift-process {
        padding: 60px 0;
    }
    
    .gift-process .section-header {
        margin-bottom: 60px;
    }
    
    .process-timeline {
        padding: 0 20px;
    }
    
    .timeline-line {
        left: 50px;
    }
    
    .gift-process .process-step {
        grid-template-columns: 50px 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .step-marker {
        width: 50px;
        height: 50px;
    }
    
    .step-number {
        font-size: 20px;
    }
    
    .step-content {
        padding: 20px;
    }
    
    .gift-process .process-step:hover .step-content {
        transform: translateX(5px);
    }
    
    .step-content h3 {
        font-size: 18px;
    }
    
    .step-content p {
        font-size: 14px;
    }
}
