/* Neue Anordnung für Slide 1 */
.slide1-new-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.title-logo-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    width: 100%;
}

/* Title Section */
.title-section {
    text-align: left;
    flex: 1;
    position: relative;
}

.slide1-new-layout .hero-title {
    font-size: 101px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    background: var(--gradient-artemed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hero-location {
    font-size: 32px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

/* Powered by section */
.powered-by-section {
    margin-top: 30px;
    font-size: 20px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.powered-text {
    color: var(--text-secondary);
    font-weight: 400;
}

.powered-by-section .company-name {
    font-weight: 600;
    color: var(--text-primary);
}

/* Divider Line */
.divider-line {
    width: 1px;
    height: 150px;
    background: var(--border-color);
    opacity: 0.3;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.artemed-logo-new {
    height: 160px;
    width: auto;
    opacity: 0.9;
}

/* Animation */
.slide1-new-layout .animate-in {
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

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

/* Remove old powered-by positioning */
#slide-1 .powered-by {
    display: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .title-logo-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .title-section {
        text-align: center;
    }
    
    .divider-line {
        width: 100px;
        height: 1px;
    }
    
    .slide1-new-layout .hero-title {
        font-size: 72px;
    }
    
    .hero-location {
        font-size: 24px;
    }
    
    .powered-by-section {
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .slide1-new-layout .hero-title {
        font-size: 56px;
    }
    
    .hero-location {
        font-size: 20px;
    }
    
    .artemed-logo-new {
        height: 100px;
    }
}