/* About Page Styles */

/* Hero Section */
.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding-top: 120px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.animated-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #00a6fb, #0582ca);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    top: 60%;
    right: 20%;
    animation-delay: 7s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    bottom: 20%;
    left: 60%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
    }
    33% {
        transform: translateY(-30px) translateX(20px) scale(1.1);
    }
    66% {
        transform: translateY(20px) translateX(-15px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-description {
    max-width: 800px;
    margin: 0 auto;
}

.hero-description .lead {
    font-size: 1.4rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.highlight-team-member {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3rem 2rem;
    height: 100%;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.highlight-blue::before {
    background: linear-gradient(135deg, rgba(0, 166, 251, 0.15), rgba(0, 166, 251, 0.05));
}

.highlight-pink::before {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 107, 107, 0.05));
}

.highlight-teal::before {
    background: linear-gradient(135deg, rgba(76, 205, 196, 0.15), rgba(76, 205, 196, 0.05));
}

.highlight-item:hover {
    transform: translateY(-10px) scale(1.02);
}

.highlight-blue:hover {
    box-shadow: 0 20px 60px rgba(0, 166, 251, 0.3);
}

.highlight-pink:hover {
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.3);
}

.highlight-teal:hover {
    box-shadow: 0 20px 60px rgba(76, 205, 196, 0.3);
}

.highlight-item:hover::before {
    opacity: 1;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.highlight-blue .highlight-icon {
    background: linear-gradient(135deg, #00a6fb, #0582ca);
}

.highlight-pink .highlight-icon {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.highlight-teal .highlight-icon {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.15) rotate(10deg);
}

.highlight-blue:hover .highlight-icon {
    box-shadow: 0 15px 40px rgba(0, 166, 251, 0.5);
}

.highlight-pink:hover .highlight-icon {
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5);
}

.highlight-teal:hover .highlight-icon {
    box-shadow: 0 15px 40px rgba(76, 205, 196, 0.5);
}

.highlight-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icons i {
    position: absolute;
    font-size: 2rem;
    color: rgba(0, 166, 251, 0.3);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Team Section */
.team-section {
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.team-member {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3rem 2rem;
    height: 100%;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(0, 166, 251, 0.05) 0%,
        transparent 50%,
        rgba(0, 166, 251, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 166, 251, 0.2);
}

.team-member:hover::before {
    opacity: 1;
}

.member-image-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
}

.member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.member-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(15px);
}

.team-member:hover .member-glow {
    opacity: 0.6;
    animation: pulse 2s infinite;
}

.team-member:hover .member-image {
    transform: scale(1.05);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.member-content {
    text-align: center;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.member-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-role {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.member-position {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.member-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill-tag {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.skill-tag:hover {
    transform: scale(1.1);
}

/* Values Section */
.values-section {
    background: #000000;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(0, 166, 251, 0.1) 0%,
        transparent 50%,
        rgba(0, 166, 251, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 166, 251, 0.2);
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

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

.value-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.value-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-section,
    .values-section {
        padding: 6rem 0;
    }
}

@media (max-width: 1200px) {
    .hero-highlights {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .highlight-item {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-highlights {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .highlight-item {
        padding: 1.2rem !important;
        text-align: center;
    }
    
    .highlight-item p {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
        margin: 0;
    }
    
    .highlight-item:nth-child(1) p::after {
        content: "Klein oder groß - wir packen's an.";
        display: block;
    }
    
    .highlight-item:nth-child(1) p {
        font-size: 0 !important;
    }
    
    .highlight-item:nth-child(2) p::after {
        content: "Mit Humor und Style.";
        display: block;
    }
    
    .highlight-item:nth-child(2) p {
        font-size: 0 !important;
    }
    
    .highlight-item:nth-child(3) p::after {
        content: "Wir schlagen Wellen.";
        display: block;
    }
    
    .highlight-item:nth-child(3) p {
        font-size: 0 !important;
    }
    
    .highlight-item p::after {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
    }
    
    .highlight-icon {
        margin-bottom: 0.8rem;
    }
    
    .hero-features .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .member-image-container {
        width: 150px;
        height: 150px;
    }
    
    .member-name {
        font-size: 1.5rem;
    }
    
    .member-description {
        font-size: 1rem;
    }
    
    .value-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .team-member,
    .value-card {
        padding: 1.5rem;
    }
    
    .member-image-container {
        width: 120px;
        height: 120px;
    }
}
