/* SP-Traumschmiede - About Section Hero-Banner Style */

/* ============================================
   ABOUT SECTION - Hero-Banner Inspired Design
   ============================================ */
.about-premium {
    min-height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
    padding: 0;
    background: #000;
}

/* Left side with image */
.about-left {
    flex: 0.8;
    position: absolute;
    left: 0;
    top: 0;
    width: 45%;
    height: 100%;
    overflow: hidden;
}

/* Right side with content - larger for more text */
.about-right {
    flex: 1.2;
    background: linear-gradient(135deg, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 10% 100%);
    z-index: 2;
    padding: 6rem 4rem;
}

/* Floating elements like Hero */
.about-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.about-floating-circle {
    position: absolute;
    border: 1px solid rgba(204, 167, 56, 0.15);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.about-floating-circle:nth-child(1) {
    width: 250px;
    height: 250px;
    top: 15%;
    right: 5%;
    animation-delay: 0s;
}

.about-floating-circle:nth-child(2) {
    width: 180px;
    height: 180px;
    bottom: 25%;
    right: 10%;
    animation-delay: 7s;
}

.about-floating-circle:nth-child(3) {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 50%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -20px) rotate(120deg); }
    66% { transform: translate(-15px, 15px) rotate(240deg); }
}

/* Content styling */
.about-content-wrapper {
    max-width: 700px;
    z-index: 2;
    position: relative;
}

.about-pretitle {
    font-size: 0.875rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #CCA738;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.about-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-family: 'Didot', serif;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #fff;
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.about-title .gold-accent {
    color: #CCA738;
    display: block;
    font-size: 0.9em;
    margin-top: 0.5rem;
}

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

.about-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.4s forwards;
}

/* Statistics in elegant grid */
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

.stat-box {
    background: rgba(42, 42, 42, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(204, 167, 56, 0.15);
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #CCA738, transparent);
    animation: slideAcross 3s infinite;
}

@keyframes slideAcross {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.stat-box:hover {
    background: rgba(204, 167, 56, 0.05);
    border-color: rgba(204, 167, 56, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(204, 167, 56, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #CCA738;
    font-family: 'Didot', serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

/* CTA Button */
.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

/* 3D Image Layer - Similar to Hero */
.about-image-3d {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.about-image-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.about-image-layer-1 {
    transform: translateZ(0);
    background-size: cover;
    background-position: center;
}

.about-image-layer-2 {
    transform: translateZ(50px);
    opacity: 0;
    mix-blend-mode: normal;
    background-size: cover;
    background-position: center;
}

.about-image-layer-3 {
    background: linear-gradient(135deg, #CCA738 0%, #E5C158 100%);
    transform: translateZ(100px);
    opacity: 0;
    mix-blend-mode: normal;
}

/* Parallax on mouse move */
.about-image-3d {
    transition: transform 0.5s ease;
}

/* Golden accent elements */
.about-accent-line {
    position: absolute;
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #CCA738, transparent);
    opacity: 0.5;
}

.about-accent-line-top {
    top: 10%;
    right: 20%;
    animation: pulse 3s infinite;
}

.about-accent-line-bottom {
    bottom: 15%;
    left: 40%;
    animation: pulse 3s infinite 1.5s;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scaleX(1); }
    50% { opacity: 0.7; transform: scaleX(1.5); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-left {
        display: none;
    }
    
    .about-right {
        clip-path: none;
        position: relative;
        width: 100%;
        padding: 4rem 3rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-premium {
        min-height: auto;
    }
    
    .about-left {
        padding: 4rem 2rem;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .about-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .about-left {
        padding: 3rem 1.5rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .stat-box {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}