/* ========================================
   MINISTER'S MESSAGE PAGE - CREATIVE DESIGN
   ======================================== */

/* Hero Section */
.minister-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
}

.minister-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.minister-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 2rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: #4ecdc4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ff6b6b;
}

.minister-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.theme-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
}

.theme-badge i {
    color: #4ecdc4;
    font-size: 1.2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Minister Profile Section */
.minister-profile {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #fff 100%);
}

.profile-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.profile-image-wrapper {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.decorative-element {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    border: 3px solid #4ecdc4;
    border-radius: 20px;
    z-index: -1;
}

.profile-info {
    position: relative;
    z-index: 1;
}

.minister-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.minister-title {
    font-size: 1.2rem;
    color: #4ecdc4;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.profile-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #ff6b6b, #4ecdc4);
    margin: 1.5rem 0;
    border-radius: 2px;
}

.minister-quote {
    position: relative;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
    border-left: 4px solid #4ecdc4;
    border-radius: 10px;
    font-style: italic;
    color: #333;
}

.quote-icon {
    color: #4ecdc4;
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

/* Message Content Section */
.message-content {
    padding: 4rem 0;
    background: #fff;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.message-block {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.message-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #4ecdc4, #ff6b6b);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.message-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.message-block:hover::before {
    opacity: 1;
}

.intro-block {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

.block-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4ecdc4, #45b7aa);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

.block-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.block-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(78, 205, 196, 0.2);
}

.block-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.block-header h3 i {
    color: #4ecdc4;
}

.block-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 1.5rem;
}

.opening-text {
    font-size: 1.2rem !important;
    line-height: 2 !important;
    color: #1a1a2e !important;
}

.theme-highlight {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
    border-radius: 10px;
    border: 2px dashed rgba(78, 205, 196, 0.3);
}

.theme-highlight strong {
    color: #ff6b6b;
    font-size: 1.15rem;
}

.inline-quote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: linear-gradient(to right, rgba(78, 205, 196, 0.1), transparent);
    border-left: 4px solid #4ecdc4;
    border-radius: 0 10px 10px 0;
    font-style: italic;
}

.inline-quote i {
    color: #4ecdc4;
    margin-right: 0.5rem;
}

.closing-text {
    font-size: 1.2rem !important;
    font-weight: 500 !important;
    color: #1a1a2e !important;
    text-align: center;
}

/* Signature */
.message-signature {
    margin-top: 4rem;
    text-align: center;
}

.signature-line {
    width: 200px;
    height: 2px;
    background: linear-gradient(to right, transparent, #4ecdc4, transparent);
    margin: 0 auto 2rem;
}

.signature-content {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.05) 0%, rgba(255, 107, 107, 0.05) 100%);
    border-radius: 15px;
    display: inline-block;
}

.signature-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.signature-title {
    font-size: 1.1rem;
    color: #4ecdc4;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.signature-date {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.cta-buttons .btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.cta-buttons .btn-outline:hover {
    background: #fff;
    color: #1a1a2e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .minister-hero h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .theme-badge {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }

    .profile-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .minister-name {
        font-size: 2rem;
    }

    .message-block {
        padding: 1.5rem;
    }

    .block-header h3 {
        font-size: 1.5rem;
    }

    .block-content p {
        font-size: 1rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}