/* Home Screen CSS - Spezifische Styles für den Home-Screen */

/* Landing Page Container */
.home-landingpage-container {
    width: 100%;
}

/* Hero Section */
.home-hero-section {
    width: 100%;
    padding: 10px 1rem;
    text-align: center;
    background-color: var(--color-background);
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0, 0 0;
    position: relative;
    overflow: visible;
    isolation: isolate;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    margin: 1rem 0;
    box-shadow: 
        0 4px 16px rgba(0, 102, 255, 0.1),
        0 2px 8px rgba(139, 0, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}


.home-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    overflow: visible;
}

.home-hero-badge {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0.5rem;
    position: relative;
}

.home-hero-title {
    margin-top: 0;
}

.home-hero-badge-text {
    font-size: 1.75rem;
    background: linear-gradient(135deg, var(--color-headline-gradient-start) 0%, var(--color-headline-gradient-middle) 50%, var(--color-headline-gradient-end) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: var(--font-weight-bold);
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    line-height: 1.4;
    text-shadow: 0 2px 8px rgba(0, 102, 255, 0.3);
}

#home-hero-title.home-hero-title,
h1#home-hero-title.home-hero-title,
.home-hero-title,
h1.home-hero-title {
    font-size: 8rem !important;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    height: auto;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.home-hero-title-gradient {
    background: linear-gradient(135deg, var(--color-headline-gradient-start) 0%, var(--color-headline-gradient-middle) 50%, var(--color-headline-gradient-end) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Allgemeine Gradient-Klasse für alle Headlines */
.headline-gradient {
    background: linear-gradient(135deg, var(--color-headline-gradient-start) 0%, var(--color-headline-gradient-middle) 50%, var(--color-headline-gradient-end) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.home-hero-description {
    font-size: var(--font-size-large);
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    line-height: var(--line-height-base);
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.home-hero-subheading {
    margin-top: 0;
    margin-bottom: 0.25rem;
}

.home-hero-subheading-text,
h2.home-hero-subheading-text {
    font-size: 6rem !important;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
}

.home-hero-cta {
    margin-top: 1rem;
    margin-bottom: 0;
}

.home-cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.home-cta-button-secondary {
    background: linear-gradient(135deg, var(--color-button-gradient-start) 0%, var(--color-button-gradient-middle) 50%, var(--color-button-gradient-end) 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.home-cta-button-secondary:hover {
    background: linear-gradient(135deg, var(--color-button-gradient-hover-start) 0%, var(--color-button-gradient-hover-middle) 50%, var(--color-button-gradient-hover-end) 100%);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
    transform: translateY(-2px);
}

.home-cta-button-text {
    display: block;
}

/* Expertise Section */
.home-expertise-section {
    width: 100%;
    padding: 1.5rem 1rem;
    background-color: var(--color-background-secondary);
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0, 0 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    margin: 1rem 0;
    box-shadow: 
        0 4px 16px rgba(0, 102, 255, 0.1),
        0 2px 8px rgba(139, 0, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}


.home-expertise-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.home-expertise-title,
h2.home-expertise-title {
    font-size: 1.75rem !important;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, var(--color-headline-gradient-start) 0%, var(--color-headline-gradient-middle) 50%, var(--color-headline-gradient-end) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: var(--font-weight-bold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Customers Section */
.home-customers-section {
    width: 100%;
    padding: 1.5rem 1rem;
    background-color: var(--color-background-secondary);
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0, 0 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    margin: 1rem 0;
    box-shadow: 
        0 4px 16px rgba(0, 102, 255, 0.1),
        0 2px 8px rgba(139, 0, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.home-customers-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.home-customers-title,
h2.home-customers-title {
    font-size: 1.75rem !important;
    text-align: center;
    margin-top: 0;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--color-headline-gradient-start) 0%, var(--color-headline-gradient-middle) 50%, var(--color-headline-gradient-end) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: var(--font-weight-bold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.home-customers-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.home-customer-item {
    padding: 1.5rem;
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.home-customer-name,
h3.home-customer-name {
    font-size: 1.25rem !important;
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-weight: var(--font-weight-bold);
}

.home-customer-description {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    line-height: var(--line-height-base);
    margin: 0;
}

/* Network Section */
.home-network-section {
    width: 100%;
    padding: 1.5rem 1rem;
    background-color: var(--color-background-secondary);
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0, 0 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    margin: 1rem 0;
    box-shadow: 
        0 4px 16px rgba(0, 102, 255, 0.1),
        0 2px 8px rgba(139, 0, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.home-network-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.home-network-title,
h2.home-network-title {
    font-size: 1.75rem !important;
    text-align: center;
    margin-top: 0;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--color-headline-gradient-start) 0%, var(--color-headline-gradient-middle) 50%, var(--color-headline-gradient-end) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: var(--font-weight-bold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.home-network-description {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    line-height: var(--line-height-base);
    text-align: left;
    margin: 0;
}

.home-network-link {
    color: var(--color-primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.home-network-link:hover {
    color: var(--color-primary-hover, var(--color-primary));
    text-decoration: underline;
}

.home-network-link-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.home-network-linkedin-icon {
    width: 1rem;
    height: 1rem;
    display: inline-block;
    vertical-align: middle;
}

/* KI Section */
.home-ki-section {
    width: 100%;
    padding: 1.5rem 1rem;
    background-color: var(--color-background-secondary);
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0, 0 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    margin: 1rem 0;
    box-shadow: 
        0 4px 16px rgba(0, 102, 255, 0.1),
        0 2px 8px rgba(139, 0, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.home-ki-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.home-ki-title,
h2.home-ki-title {
    font-size: 1.75rem !important;
    text-align: center;
    margin-top: 0;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--color-headline-gradient-start) 0%, var(--color-headline-gradient-middle) 50%, var(--color-headline-gradient-end) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: var(--font-weight-bold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.home-ki-description {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    line-height: var(--line-height-base);
    text-align: left;
    margin: 0;
}

/* Person Section */
.home-person-section {
    width: 100%;
    padding: 2rem 1rem;
    background-color: var(--color-background);
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0, 0 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    margin: 1rem 0;
    box-shadow: 
        0 4px 16px rgba(0, 102, 255, 0.1),
        0 2px 8px rgba(139, 0, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}


.home-person-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.home-person-image-container {
    flex: 1;
    min-width: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-person-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.home-person-image-linkedin-link {
    display: inline-block;
    margin-top: 1rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.home-person-image-linkedin-link:hover {
    opacity: 0.8;
}

.home-person-image-linkedin-icon {
    width: 2rem;
    height: 2rem;
    display: inline-block;
}

.home-person-text-container {
    flex: 1;
    min-width: 300px;
}

.home-person-title,
h2.home-person-title {
    font-size: 1.75rem !important;
    margin-top: 0;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, var(--color-headline-gradient-start) 0%, var(--color-headline-gradient-middle) 50%, var(--color-headline-gradient-end) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: var(--font-weight-bold);
    letter-spacing: 3px;
}

.home-person-title-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.home-person-title-link:hover {
    text-decoration: none;
}

.home-person-linkedin-icon {
    width: 1.25rem;
    height: 1.25rem;
    display: inline-block;
    vertical-align: middle;
}
    text-transform: uppercase;
}

.home-person-description {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    line-height: var(--line-height-base);
}

/* Contact Section */
.home-contact-section {
    width: 100%;
    padding: 2rem 1rem;
    background-color: var(--color-background-secondary);
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0, 0 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    margin: 1rem 0;
    box-shadow: 
        0 4px 16px rgba(0, 102, 255, 0.1),
        0 2px 8px rgba(139, 0, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}


.home-contact-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.home-contact-title,
h2.home-contact-title {
    font-size: 1.75rem !important;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, var(--color-headline-gradient-start) 0%, var(--color-headline-gradient-middle) 50%, var(--color-headline-gradient-end) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: var(--font-weight-bold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

    .home-contact-info {
        text-align: left;
        font-size: var(--font-size-base);
        color: var(--color-text-secondary);
        margin-bottom: 0.5rem;
    }

.home-contact-form {
    width: 100%;
}

.home-contact-messages {
    margin-bottom: 0.75rem;
}

.home-contact-fields {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.home-contact-left-column {
    flex: 1;
    min-width: 300px;
}

.home-contact-right-column {
    flex: 1;
    min-width: 300px;
}

.home-contact-form-group {
    margin-bottom: 0.75rem;
}

.home-contact-form-control {
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: var(--font-size-base);
    font-family: var(--font-family-primary);
    color: var(--color-text-primary);
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.home-contact-form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.home-contact-form-control::placeholder {
    color: var(--color-text-tertiary);
}

.home-contact-form-control-border {
    display: none;
}

.home-contact-help-block {
    margin-top: 0.25rem;
    font-size: var(--font-size-small);
    color: var(--color-error);
    min-height: 1rem;
}

.home-contact-form-submit-container {
    text-align: center;
    margin-top: 1rem;
}

.home-contact-form-submit {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-button-gradient-start) 0%, var(--color-button-gradient-middle) 50%, var(--color-button-gradient-end) 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    border: none;
    transition: all 0.3s ease;
}

.home-contact-form-submit:hover {
    background: linear-gradient(135deg, var(--color-button-gradient-hover-start) 0%, var(--color-button-gradient-hover-middle) 50%, var(--color-button-gradient-hover-end) 100%);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
    transform: translateY(-2px);
}

.home-contact-form-submit:active {
    transform: translateY(0);
}

/* Responsive Design - Mobile First */
@media (max-width: 576px) {
    .home-hero-section {
        padding: 2rem 1rem;
        overflow: visible;
    }
    
    .home-hero-content {
        overflow: visible;
    }
    
    #home-hero-title.home-hero-title,
    h1#home-hero-title.home-hero-title,
    .home-hero-title,
    h1.home-hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2;
        word-break: break-word;
    }
    
    .home-hero-badge-text {
        font-size: 1.25rem;
        text-align: left;
    }
    
    .home-hero-badge {
        text-align: left;
    }
    
    .home-hero-subheading-text,
    h2.home-hero-subheading-text {
        font-size: 2rem !important;
        line-height: 1.2;
        word-break: break-word;
    }
    
    .home-hero-description-wrapper {
        text-align: left !important;
    }
    
    .home-hero-description {
        text-align: left !important;
    }
    
    .home-cta-button,
    .home-cta-button-secondary {
        width: 100%;
        min-height: 44px;
        min-width: 44px;
        padding: 1rem 1.5rem;
        touch-action: manipulation;
        display: block;
        text-align: center;
    }
    
    .home-expertise-title,
    h2.home-expertise-title {
        font-size: 1.25rem !important;
    }
    
    .home-customers-title,
    h2.home-customers-title {
        font-size: 1.25rem !important;
    }
    
    .home-network-title,
    h2.home-network-title {
        font-size: 1.25rem !important;
        text-align: left !important;
    }
    
    .home-network-description {
        text-align: left !important;
    }
    
    .home-ki-title,
    h2.home-ki-title {
        font-size: 1.25rem !important;
        text-align: left !important;
    }
    
    .home-ki-description {
        text-align: left !important;
    }
    
    .home-person-title,
    h2.home-person-title {
        font-size: 1.25rem !important;
    }
    
    .home-contact-title,
    h2.home-contact-title {
        font-size: 1.25rem !important;
        text-align: left !important;
    }
    
    .home-expertise-section,
    .home-customers-section,
    .home-network-section,
    .home-ki-section,
    .home-person-section,
    .home-contact-section {
        padding: 1.5rem 1rem;
        overflow: visible;
    }
    
    .home-customer-item {
        padding: 1rem;
    }
    
    .home-person-content {
        flex-direction: column;
    }
    
    .home-person-image-container,
    .home-person-text-container {
        min-width: 100%;
        width: 100%;
    }
    
    .home-contact-fields {
        flex-direction: column;
    }
    
    .home-contact-left-column,
    .home-contact-right-column {
        min-width: 100%;
        width: 100%;
    }
    
    .home-contact-form-control {
        font-size: 16px;
    }
    
    .home-contact-form-submit {
        width: 100%;
        padding: 1rem;
        min-height: 44px;
        font-size: var(--font-size-base);
    }
}

@media (min-width: 600px) {
    .home-hero-section {
        padding: 3rem 2rem;
    }
    
    #home-hero-title.home-hero-title,
    h1#home-hero-title.home-hero-title,
    .home-hero-title,
    h1.home-hero-title {
        font-size: 5.5rem !important;
    }
    
    .home-hero-badge-text {
        font-size: 1.5rem;
    }
    
    .home-hero-subheading-text,
    h2.home-hero-subheading-text {
        font-size: 4.5rem !important;
    }
    
    .home-expertise-title,
    h2.home-expertise-title {
        font-size: 1.5rem !important;
    }
    
    .home-customers-title,
    h2.home-customers-title {
        font-size: 1.5rem !important;
    }
    
    .home-network-title,
    h2.home-network-title {
        font-size: 1.5rem !important;
    }
    
    .home-ki-title,
    h2.home-ki-title {
        font-size: 1.5rem !important;
    }
    
    .home-person-title,
    h2.home-person-title {
        font-size: 1.5rem !important;
    }
    
    .home-contact-title,
    h2.home-contact-title {
        font-size: 1.5rem !important;
    }
    
    .home-expertise-section,
    .home-customers-section,
    .home-network-section,
    .home-ki-section,
    .home-person-section,
    .home-contact-section {
        padding: 3rem 2rem;
    }
}

@media (min-width: 1024px) {
    .home-hero-section {
        padding: 2rem 1.5rem;
    }
    
    #home-hero-title.home-hero-title,
    h1#home-hero-title.home-hero-title,
    .home-hero-title,
    h1.home-hero-title {
        font-size: 9rem !important;
    }
    
    .home-hero-badge-text {
        font-size: 2rem;
    }
    
    .home-hero-subheading-text,
    h2.home-hero-subheading-text {
        font-size: 6rem !important;
    }
    
    .home-expertise-title,
    h2.home-expertise-title {
        font-size: 2rem !important;
    }
    
    .home-customers-title,
    h2.home-customers-title {
        font-size: 2rem !important;
    }
    
    .home-network-title,
    h2.home-network-title {
        font-size: 2rem !important;
    }
    
    .home-ki-title,
    h2.home-ki-title {
        font-size: 2rem !important;
    }
    
    .home-person-title,
    h2.home-person-title {
        font-size: 2rem !important;
    }
    
    .home-contact-title,
    h2.home-contact-title {
        font-size: 2rem !important;
    }
    
    .home-expertise-section,
    .home-customers-section,
    .home-network-section,
    .home-ki-section,
    .home-person-section,
    .home-contact-section {
        padding: 2rem 1.5rem;
    }
}

@media (min-width: 1440px) {
    .home-hero-section {
        padding: 5rem 4rem;
    }
    
    .home-expertise-section,
    .home-customers-section,
    .home-network-section,
    .home-ki-section,
    .home-person-section,
    .home-contact-section {
        padding: 5rem 4rem;
    }
}
