/* ==========================================================================
   Conducerea Page - Enhanced Styles with Animations
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Poppins:wght@300;400;500;600;700&display=swap');

/* Root variables for this page */
.conducerea-page {
    --accent-gradient: linear-gradient(135deg, #0d3c73 0%, #1e5a96 100%);
    --card-shadow: 0 10px 30px rgba(13, 60, 115, 0.1);
    --card-hover-shadow: 0 20px 40px rgba(13, 60, 115, 0.15);
}

/* Main Container */
.conducerea-page {
    padding: 60px 0;
    background: #ECF6FF;
    min-height: calc(100vh - 200px);
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Enhanced Breadcrumb */
.breadcrumb {
    margin-bottom: 40px;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    animation: fadeInDown 0.6s ease-out;
}

.breadcrumb a {
    color: #0F4B91;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.breadcrumb a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0F4B91;
    transition: width 0.3s ease;
}

.breadcrumb a:hover::after {
    width: 100%;
}

/* Main Content Card */
.conducerea__content {
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    animation: fadeInUp 0.8s ease-out;
    max-width: 1000px;
    margin: 0 auto;
}

/* Enhanced Header */
.conducerea__header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    position: relative;
    animation: fadeIn 1s ease-out;
}

.conducerea__header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.conducerea__title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #0F4B91;
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: slideInFromTop 0.8s ease-out;
}

/* Enhanced Sections */
.conducerea__section {
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

/* Director Card */
.conducerea__director {
    text-align: center;
    margin-bottom: 50px;
    padding: 50px;
    background: linear-gradient(135deg, #0F4B91 0%, #1e5a96 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.8s ease-out 0.3s both;
    box-shadow: 0 15px 40px rgba(13, 60, 115, 0.3);
}

.conducerea__director::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

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

.conducerea__name {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.conducerea__position {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 400;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

/* Description Section */
.conducerea__description {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid transparent;
    background-clip: padding-box;
    position: relative;
    box-shadow: var(--card-shadow);
    margin-top: 40px;
    transition: all 0.3s ease;
    animation: slideInFromLeft 0.8s ease-out 0.9s both;
}

.conducerea__description::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--accent-gradient);
    border-radius: 0 5px 5px 0;
}

.conducerea__description:hover {
    transform: translateX(5px);
    box-shadow: var(--card-hover-shadow);
}

.conducerea__text {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    line-height: 1.9;
    color: #4a5568;
    margin-bottom: 0;
    text-align: justify;
}

/* Decorative Elements */
.conducerea__content::before,
.conducerea__content::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--accent-gradient);
    opacity: 0.05;
    pointer-events: none;
}

.conducerea__content::before {
    top: -50px;
    left: -50px;
    animation: float 6s ease-in-out infinite;
}

.conducerea__content::after {
    bottom: -50px;
    right: -50px;
    animation: float 6s ease-in-out infinite reverse;
}

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

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .conducerea__content {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .conducerea__title {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .conducerea__director {
        padding: 30px 20px;
    }

    .conducerea__name {
        font-size: 26px;
    }

    .conducerea__position {
        font-size: 16px;
    }

    .conducerea__description {
        padding: 25px;
    }

    .conducerea__text {
        font-size: 15px;
        text-align: left;
    }

    .conducerea__content::before,
    .conducerea__content::after {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .conducerea__title {
        font-size: 24px;
    }

    .conducerea__name {
        font-size: 22px;
    }

    .conducerea__position {
        font-size: 14px;
    }

    .conducerea__text {
        font-size: 14px;
    }
}

/* Accessibility - Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print styles */
@media print {
    .conducerea-page {
        background: white;
    }

    .conducerea__content {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .conducerea__director {
        background: #0F4B91;
        box-shadow: none;
        border: 2px solid #0F4B91;
    }

    .conducerea__description {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}