/* ============================================
   ABOUT PAGE & NOTIFICATION PAGE REDESIGN
   Beautiful, Modern UI Interface
   ============================================ */

/* ============================================
   ABOUT PAGE - COMPLETE REDESIGN
   ============================================ */

/* Hero Section */
.about-page-header {
    background: linear-gradient(135deg, #2d9374 0%, #88493d 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.about-hero {
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    font-size: 3.5em;
    color: white;
    margin-bottom: 15px;
    font-family: 'Georgia', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.about-subtitle {
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

/* Leadership Section */
.leadership-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.leadership-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    color: #88493d;
    margin-bottom: 50px;
    font-family: 'Georgia', serif;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #2d9374, #88493d);
    border-radius: 3px;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.leader-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.leader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #2d9374, #88493d);
}

.leader-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.leader-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.leader-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.leader-card:hover .leader-image-wrapper img {
    transform: scale(1.1);
}

.leader-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #2d9374, #88493d);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.leader-info {
    padding: 30px;
    text-align: center;
}

.leader-info h3 {
    font-size: 1.8em;
    color: #88493d;
    margin-bottom: 10px;
    font-family: 'Georgia', serif;
}

.leader-title {
    font-size: 1.2em;
    color: #2d9374;
    font-weight: 600;
    margin-bottom: 15px;
}

.leader-desc {
    color: #666;
    line-height: 1.6;
    font-size: 1em;
}

/* About Content Section */
.about-content-section {
    padding: 60px 20px;
    background: white;
}

.about-content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-main-content {
    margin-bottom: 50px;
}

.content-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 6px solid #2d9374;
}

.about-paragraph {
    font-size: 1.1em;
    line-height: 2;
    color: #444;
    text-align: justify;
    font-family: 'Georgia', serif;
}

.about-paragraph.truncate {
    max-height: 400px;
    overflow: hidden;
    position: relative;
}

.about-paragraph.truncate::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, #f8f9fa);
}

.about-paragraph.expand {
    max-height: none;
}

.about-paragraph.expand::after {
    display: none;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #2d9374, #88493d);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 147, 116, 0.3);
}

.read-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(45, 147, 116, 0.4);
}

.read-more-btn .btn-icon {
    transition: transform 0.3s ease;
}

.read-more-btn.expanded .btn-icon {
    transform: rotate(180deg);
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.highlight-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2d9374, #88493d);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.highlight-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.highlight-card h3 {
    font-size: 1.3em;
    color: #88493d;
    margin-bottom: 15px;
    font-family: 'Georgia', serif;
}

.highlight-value {
    font-size: 2.5em;
    font-weight: 700;
    color: #2d9374;
    margin: 10px 0;
}

.highlight-desc {
    font-size: 0.95em;
    color: #666;
    line-height: 1.5;
}

/* ============================================
   NOTIFICATION PAGE - COMPLETE REDESIGN
   ============================================ */

/* Hero Section */
.notification-page-header {
    background: linear-gradient(135deg, #88493d 0%, #2d9374 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.notification-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M50 10 L90 50 L50 90 L10 50 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.notification-hero {
    position: relative;
    z-index: 1;
}

.hero-icon {
    font-size: 4em;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.notification-hero h1 {
    font-size: 3.5em;
    color: white;
    margin-bottom: 15px;
    font-family: 'Georgia', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.notification-subtitle {
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

/* Notifications List Section */
.notifications-list-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 60vh;
}

.notifications-container {
    max-width: 1200px;
    margin: 0 auto;
}

.notifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.notification-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.notification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2d9374, #88493d);
}

.notification-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.notification-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px 15px;
}

.notification-icon {
    font-size: 2.5em;
    filter: grayscale(0.3);
}

.notification-new-badge {
    background: linear-gradient(135deg, #ff4444, #ff6b6b);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(255, 68, 68, 0.3);
    animation: pulse 2s infinite;
}

.notification-card-body {
    padding: 0 25px 20px;
    flex-grow: 1;
}

.notification-message {
    font-size: 1.15em;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
    font-weight: 500;
}

.notification-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9em;
    color: #888;
    margin-top: 10px;
}

.notification-date svg {
    color: #2d9374;
}

.notification-card-footer {
    padding: 20px 25px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.notification-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: linear-gradient(135deg, #2d9374, #88493d);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(45, 147, 116, 0.3);
}

.notification-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(45, 147, 116, 0.4);
}

/* Empty State */
.empty-state-notification {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.empty-state-notification svg {
    color: #ddd;
    margin-bottom: 25px;
}

.empty-state-notification h3 {
    font-size: 2em;
    color: #88493d;
    margin-bottom: 15px;
    font-family: 'Georgia', serif;
}

.empty-state-notification p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
}

/* ============================================
   MOBILE RESPONSIVE - ABOUT PAGE
   ============================================ */

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.2em;
    }
    
    .about-subtitle {
        font-size: 1em;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .leader-image-wrapper {
        height: 250px;
    }
    
    .leader-info {
        padding: 25px 20px;
    }
    
    .leader-info h3 {
        font-size: 1.5em;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .content-card {
        padding: 25px 20px;
    }
    
    .about-paragraph {
        font-size: 1em;
        line-height: 1.8;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .highlight-card {
        padding: 25px 15px;
    }
    
    .highlight-icon {
        font-size: 2.5em;
    }
    
    .highlight-value {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .about-page-header {
        padding: 50px 15px;
    }
    
    .about-hero h1 {
        font-size: 1.8em;
    }
    
    .leadership-section {
        padding: 40px 15px;
    }
    
    .about-content-section {
        padding: 40px 15px;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   MOBILE RESPONSIVE - NOTIFICATION PAGE
   ============================================ */

@media (max-width: 768px) {
    .notification-page-header {
        padding: 60px 20px;
    }
    
    .notification-hero h1 {
        font-size: 2.2em;
    }
    
    .notification-subtitle {
        font-size: 1em;
    }
    
    .hero-icon {
        font-size: 3em;
    }
    
    .notifications-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .notification-card {
        border-radius: 15px;
    }
    
    .notification-card-header {
        padding: 15px 20px 10px;
    }
    
    .notification-icon {
        font-size: 2em;
    }
    
    .notification-card-body {
        padding: 0 20px 15px;
    }
    
    .notification-message {
        font-size: 1em;
    }
    
    .notification-card-footer {
        padding: 15px 20px;
    }
    
    .empty-state-notification {
        padding: 60px 20px;
    }
    
    .empty-state-notification h3 {
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .notification-page-header {
        padding: 40px 15px;
    }
    
    .notification-hero h1 {
        font-size: 1.8em;
    }
    
    .notifications-list-section {
        padding: 40px 15px;
    }
    
    .notification-card-header,
    .notification-card-body,
    .notification-card-footer {
        padding: 15px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

.leader-card,
.notification-card,
.highlight-card {
    animation: fadeInUp 0.6s ease-out;
}

.leader-card:nth-child(1) { animation-delay: 0.1s; }
.leader-card:nth-child(2) { animation-delay: 0.2s; }

.notification-card:nth-child(1) { animation-delay: 0.1s; }
.notification-card:nth-child(2) { animation-delay: 0.2s; }
.notification-card:nth-child(3) { animation-delay: 0.3s; }
.notification-card:nth-child(4) { animation-delay: 0.4s; }

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .about-page-header,
    .notification-page-header {
        background: white;
        color: black;
        padding: 20px;
    }
    
    .leader-card,
    .notification-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .read-more-btn,
    .notification-link {
        display: none;
    }
}


