:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --text-color: #333;
    --bg-color: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

/* Hero Section */
.parallax-section {
    min-height: 80vh;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.3)),
                      url('../../assets/images/brand/1000158706-removebg-preview.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

#presentation-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

#presentation-hero .container {
    position: relative;
    z-index: 2;
}

/* Content Sections */
.section-content {
    padding: 80px 0;
    background: var(--white);
}

.section-content:nth-child(even) {
    background: var(--bg-color);
}

.content-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 30px;
}

/* Team Section */
.team-card {
    display: flex;
    gap: 30px;
    align-items: center;
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 30%;
    object-fit: cover;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.cta-button {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button.primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta-button.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.cta-link.primary {
    background-color: var(--primary-color);
    color: white;
}

.cta-link.secondary {
    background-color: #7289DA; /* Discord color */
    color: white;
}

.cta-link:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.cta-link i {
    margin-right: 8px;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-card {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .team-photo {
        width: 150px;
        height: 150px;
    }
    
    .parallax-section {
        min-height: 60vh;
        background-attachment: scroll;
    }
    
    .section-content {
        padding: 40px 0;
    }
    
    .content-card {
        padding: 20px;
        margin-top: 20px;
    }
    
    .team-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .team-photo {
        width: 150px;
        height: 150px;
        margin: 0 auto 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    #philosophie .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .parallax-section {
        min-height: 50vh;
    }
    
    .parallax-section h1 {
        font-size: 1.8rem;
    }
    
    .parallax-section p {
        font-size: 1rem;
    }
    
    .section-content h2 {
        font-size: 1.5rem;
    }
    
    .team-photo {
        width: 120px;
        height: 120px;
    }
    
    #philosophie {
        text-align: center;
    }
}