/**
 * TeamShirtsPrint Homepage - Professioneller Textildruck-Service
 * Vollständiges, professionelles Design mit Hero-Slider Integration
 * Version: 3.0 - COMPLETE EDITION
 */

/* ==========================================================================
   CSS VARIABLES
   ========================================================================== */
:root {
    --primary: #1a202c;
    --primary-light: #2d3748;
    --accent: #3182ce;
    --accent-hover: #2c5aa0;
    --blue: #4299e1;
    --success: #38a169;
    --green: #48bb78;
    --warning: #dd6b20;
    --danger: #e53e3e;
    --white: #ffffff;
    --bg: #f7fafc;
    --bg-secondary: #edf2f7;
    --border: #e2e8f0;
    --text: #2d3748;
    --text-light: #718096;
    --text-lighter: #a0aec0;
    --gradient-1: linear-gradient(135deg, #4299e1 0%, #2c5aa0 100%);
    --gradient-2: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    --gradient-blue-green: linear-gradient(135deg, #4299e1 0%, #48bb78 100%);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================================================
   SECTION HEADERS (Global)
   ========================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================================================
   SPORTS SECTION - 9 Sportarten Grid
   ========================================================================== */
.sports-section {
    padding: 7rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.sports-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(72, 187, 120, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.sport-item {
    position: relative;
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.sport-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--blue);
}

.sport-item:hover .sport-icon-large {
    transform: scale(1.2) rotate(10deg);
}

.sport-rank {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 40px;
    height: 40px;
    background: var(--gradient-blue-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.sport-icon-large {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.sport-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.sport-description {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.sport-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.sport-link:hover {
    gap: 0.75rem;
    color: var(--accent-hover);
}

/* ==========================================================================
   PRICING SECTION - Druckpreise Tabelle
   ========================================================================== */
.pricing-section {
    padding: 7rem 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(66, 153, 225, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.pricing-table-wrapper {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    margin-bottom: 3rem;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table thead {
    background: var(--gradient-blue-green);
    color: white;
}

.pricing-table thead th {
    padding: 1.5rem 2rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
}

.pricing-table thead th.highlight-col {
    background: rgba(255, 255, 255, 0.2);
    position: relative;
}

.pricing-table thead th.highlight-col::after {
    content: '⭐ RABATT';
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--warning);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
}

.pricing-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.pricing-table tbody tr:hover {
    background: var(--bg);
}

.pricing-table tbody td {
    padding: 1.5rem 2rem;
    font-size: 1.05rem;
}

.pricing-table tbody td:first-child {
    font-weight: 600;
    color: var(--primary);
}

.pricing-table tbody td.highlight-col {
    background: rgba(72, 187, 120, 0.08);
    font-weight: 700;
    color: var(--green);
    font-size: 1.2rem;
}

.pricing-table tbody td.savings {
    color: var(--green);
    font-weight: 700;
}

.pricing-notes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.pricing-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--blue);
}

.pricing-note svg {
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.pricing-note p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.6;
}

.pricing-cta {
    text-align: center;
}

.btn-pricing {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--gradient-blue-green);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 20px rgba(66, 153, 225, 0.3);
    transition: var(--transition);
}

.btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(66, 153, 225, 0.4);
}

/* ==========================================================================
   PROCESS SECTION - Timeline
   ========================================================================== */
.process-section {
    padding: 7rem 0;
    background: white;
    position: relative;
}

.process-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-item {
    position: relative;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2rem 0;
}

.process-number {
    width: 100px;
    height: 100px;
    background: var(--gradient-blue-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(66, 153, 225, 0.3);
    position: relative;
    z-index: 2;
}

.process-content {
    background: var(--bg);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--blue);
    transition: var(--transition);
}

.process-content:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-xl);
    border-left-color: var(--green);
}

.process-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.process-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.process-connector {
    position: absolute;
    left: 49px;
    top: 100px;
    bottom: -100px;
    width: 3px;
    background: linear-gradient(to bottom, var(--blue), var(--green));
    z-index: 1;
}

.process-item:last-child .process-connector {
    display: none;
}

/* ==========================================================================
   USP SECTION - Warum TeamShirtsPrint?
   ========================================================================== */
.usp-section {
    padding: 7rem 0;
    background: var(--bg);
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.usp-card {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.usp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-blue-green);
    transform: scaleX(0);
    transition: var(--transition);
}

.usp-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--blue);
}

.usp-card:hover::before {
    transform: scaleX(1);
}

.usp-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-blue-green);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.usp-card:hover .usp-icon {
    transform: scale(1.1) rotate(5deg);
}

.usp-icon svg {
    color: white;
}

.usp-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.usp-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ==========================================================================
   FAQ COMPACT SECTION
   ========================================================================== */
.faq-compact-section {
    padding: 7rem 0;
    background: white;
}

.faq-compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.faq-compact-item {
    background: var(--bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--blue);
    transition: var(--transition);
}

.faq-compact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-left-color: var(--green);
}

.faq-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.faq-compact-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.faq-compact-answer {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
    padding: 3rem;
    background: var(--bg);
    border-radius: var(--radius-lg);
}

.faq-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.faq-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.faq-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-faq,
.btn-faq-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.btn-faq {
    background: var(--gradient-blue-green);
    color: white;
    box-shadow: 0 8px 20px rgba(66, 153, 225, 0.3);
}

.btn-faq:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(66, 153, 225, 0.4);
}

.btn-faq-secondary {
    background: white;
    color: var(--blue);
    border: 2px solid var(--blue);
}

.btn-faq-secondary:hover {
    background: var(--blue);
    color: white;
    transform: translateY(-3px);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    padding: 7rem 0;
    background: var(--bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--blue);
}

.testimonial-rating {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border);
}

.testimonial-author strong {
    font-size: 1.1rem;
    color: var(--primary);
}

.testimonial-author span {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(66, 153, 225, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition);
}

.btn-cta-primary {
    background: var(--gradient-blue-green);
    color: white;
    box-shadow: 0 10px 30px rgba(66, 153, 225, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(66, 153, 225, 0.4);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    opacity: 0.8;
}

.trust-icon {
    font-size: 1.5rem;
}

.cta-trust p {
    font-size: 0.95rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 1200px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .sports-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.25rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .process-item {
        grid-template-columns: 80px 1fr;
        gap: 2rem;
    }
    
    .process-number {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .process-connector {
        left: 39px;
    }
    
    .usp-grid,
    .testimonials-grid,
    .faq-compact-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-table thead th,
    .pricing-table tbody td {
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .sports-section,
    .pricing-section,
    .process-section,
    .usp-section,
    .faq-compact-section,
    .testimonials-section,
    .cta-section {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .sports-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .sport-item {
        padding: 2rem 1.5rem;
    }
    
    .sport-icon-large {
        font-size: 4rem;
    }
    
    .pricing-table-wrapper {
        overflow-x: auto;
    }
    
    .pricing-table {
        min-width: 600px;
    }
    
    .process-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-number {
        margin: 0 auto;
    }
    
    .process-connector {
        display: none;
    }
    
    .process-content {
        padding: 2rem;
    }
    
    .usp-card {
        padding: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .sport-name {
        font-size: 1.25rem;
    }
    
    .process-title {
        font-size: 1.5rem;
    }
    
    .usp-title {
        font-size: 1.25rem;
    }
    
    .faq-compact-question {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-down {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-left {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-in-right {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll Reveal Animation Support */
.fade-in-up {
    animation: fade-in-up 0.8s ease-out;
}

.fade-in-down {
    animation: fade-in-down 0.8s ease-out;
}

.fade-in-left {
    animation: fade-in-left 0.8s ease-out;
}

.fade-in-right {
    animation: fade-in-right 0.8s ease-out;
}

.scale-in {
    animation: scale-in 0.8s ease-out;
}
