/* ====================================
   Alumni Page Specific Styles
   All classes prefixed with 'alumni-' to avoid conflicts
   ==================================== */

:root {
  --alumni-brown: #2C1810;
  --alumni-brown-light: #5C4033;
  --alumni-gold: #D4AF37;
  --alumni-gold-dark: #B8941F;
  --alumni-soft: #FAF8F5;
  --alumni-card-bg: #FFFFFF;
  --alumni-muted: #6D6057;
  --alumni-shadow: rgba(44, 24, 16, 0.08);
  --alumni-shadow-lg: rgba(44, 24, 16, 0.15);
}

/* ====================================
   Alumni Hero Section
   ==================================== */
.alumni-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
  text-align: center;
  color: #fff;
  margin-top: 0 !important;
}

.alumni-hero-background {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, #1a0e0a 0%, var(--alumni-brown) 50%, #3d2416 100%);
}

/* Particles Animation */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 2;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(212, 175, 55, 0.6);
  border-radius: 50%;
  animation: particleFloat 20s infinite;
  opacity: 0;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; }
.particle:nth-child(5) { left: 60%; animation-delay: 3s; }
.particle:nth-child(6) { left: 70%; animation-delay: 5s; }
.particle:nth-child(7) { left: 80%; animation-delay: 2.5s; }
.particle:nth-child(8) { left: 90%; animation-delay: 4.5s; }

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) scale(1);
    opacity: 0;
  }
}

/* Ambient Layers */
.ambient-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.3;
}

.ambient-1 {
  background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.ambient-2 {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent);
  background-size: 200% 200%;
  animation: ambientShift 15s ease-in-out infinite alternate;
}

@keyframes ambientShift {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}

/* Hero Inner Content */
.alumni-hero-inner {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  width: 100%;
}

/* Hero Badge */
.alumni-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  margin-bottom: 32px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--alumni-gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

/* Hero Title */
.alumni-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.2;
  margin: 0 0 24px 0;
  font-weight: 700;
  letter-spacing: -0.5px;
  opacity: 0;
  transform: translateY(20px);
}

.title-highlight {
  background: linear-gradient(135deg, var(--alumni-gold) 0%, #F4D03F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Hero Subtitle */
.alumni-hero-sub {
  margin: 0 auto 40px auto;
  max-width: 680px;
  opacity: 0;
  transform: translateY(20px);
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  font-weight: 400;
}

/* Hero Actions */
.alumni-hero-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.alumni-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.primary-cta {
  background: linear-gradient(135deg, var(--alumni-gold) 0%, var(--alumni-gold-dark) 100%);
  color: var(--alumni-brown);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.primary-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--alumni-gold-dark) 0%, var(--alumni-gold) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
}

.primary-cta:hover::before {
  opacity: 1;
}

.primary-cta .btn-text,
.primary-cta .cta-icon {
  position: relative;
  z-index: 1;
}

.cta-icon {
  display: flex;
  transition: transform 0.3s ease;
}

.primary-cta:hover .cta-icon {
  transform: translateX(4px);
}

/* Alumni Stats */
.alumni-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, var(--alumni-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* ====================================
   Main Content
   ==================================== */
.alumni-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
}

.alumni-section {
  margin-bottom: 100px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
  color: var(--alumni-gold-dark);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--alumni-brown);
  margin-bottom: 16px;
  font-weight: 700;
}

.section-desc {
  max-width: 700px;
  margin: 0 auto;
  color: var(--alumni-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ====================================
   Achievement Cards
   ==================================== */
.alumni-achievements {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.card {
  background: var(--alumni-card-bg);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--alumni-shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--alumni-gold) 0%, var(--alumni-gold-dark) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px var(--alumni-shadow-lg);
}

.card-media {
  height: 240px;
  background: linear-gradient(135deg, #e8e3dc 0%, #f5f2ed 100%);
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  transition: background 0.3s ease;
}

.card:hover .card-media::after {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}

.achievement-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  background: rgba(212, 175, 55, 0.95);
  color: var(--alumni-brown);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
  backdrop-filter: blur(10px);
}

.card-body {
  padding: 24px;
}

.card-body h4 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  color: var(--alumni-brown);
  font-weight: 600;
  line-height: 1.3;
}

.card-body .meta {
  color: var(--alumni-gold-dark);
  font-size: 0.9rem;
  margin-bottom: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-icon {
  width: 16px;
  height: 16px;
}

.card-body p {
  margin: 0;
  color: var(--alumni-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ====================================
   Buttons & Actions
   ==================================== */
.alumni-actions {
  text-align: center;
  margin-top: 40px;
}

.btn-view-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--alumni-brown) 0%, var(--alumni-brown-light) 100%);
  color: #fff;
  box-shadow: 0 8px 30px rgba(44, 24, 16, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-view-more::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--alumni-brown-light) 0%, var(--alumni-brown) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-view-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(44, 24, 16, 0.3);
}

.btn-view-more:hover::before {
  opacity: 1;
}

.btn-view-more .btn-text,
.btn-view-more .btn-icon {
  position: relative;
  z-index: 1;
}

/* Button Animations */
.btn-view-more.enter {
  animation: fadeUpIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeUpIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-view-more.pulse {
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 8px 30px rgba(44, 24, 16, 0.2);
  }
  50% {
    box-shadow: 0 12px 40px rgba(44, 24, 16, 0.35);
  }
}

/* ====================================
   Share Section
   ==================================== */
.alumni-share {
  background: linear-gradient(135deg, var(--alumni-brown) 0%, var(--alumni-brown-light) 100%);
  color: #fff;
  padding: 80px 40px;
  margin: 80px auto 0;
  border-radius: 32px;
  text-align: center;
  max-width: 1100px;
  position: relative;
  overflow: hidden;
}

.alumni-share::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.share-content {
  position: relative;
  z-index: 1;
}

.share-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--alumni-gold);
}

.share-content h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 16px;
  font-weight: 700;
}

.share-content p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 32px;
  max-width: 600px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.btn-share {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-share:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  color: #fff;
}

/* Loading State */
.loading {
  text-align: center;
  padding: 60px 20px;
  color: var(--alumni-muted);
  font-size: 1.1rem;
}

/* ====================================
   Responsive Design
   ==================================== */
@media (max-width: 968px) {
  .alumni-hero {
    padding: 100px 20px 60px;
    min-height: 80vh;
  }

  .alumni-stats {
    gap: 20px;
    padding: 24px;
  }

  .stat-divider {
    height: 30px;
  }

  .alumni-achievements {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
  }

  .card-media {
    height: 200px;
  }
}

@media (max-width: 640px) {
  .alumni-hero {
    padding: 80px 16px 40px;
  }

  .alumni-hero-badge {
    font-size: 0.8rem;
    padding: 8px 20px;
  }

  .alumni-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .alumni-hero-cta {
    width: 100%;
    justify-content: center;
  }

  .alumni-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-divider {
    width: 80px;
    height: 1px;
  }

  .alumni-achievements {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .alumni-share {
    padding: 60px 24px;
    margin: 60px auto 0;
    border-radius: 24px;
  }

  .alumni-main {
    padding: 60px 16px;
  }
}
 
        /* Facebook Feed Section Styles */
        .facebook-feed-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fc 0%, #e9ecf5 100%);
            position: relative;
            overflow: hidden;
        }

        .facebook-feed-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(24, 119, 242, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .facebook-feed-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(100, 41, 9, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .fb-feed-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .fb-feed-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .fb-feed-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: rgba(24, 119, 242, 0.1);
            border-radius: 50px;
            color: #1877f2;
            font-weight: 500;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }

        .fb-feed-badge i {
            font-size: 1.1rem;
        }

        .fb-feed-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .fb-feed-desc {
            font-size: 1.1rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .fb-feed-wrapper {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }

        .fb-feed-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #1877f2, #642909);
        }

        .fb-page-wrapper {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            min-height: 500px;
        }

        .fb-loading {
            text-align: center;
            padding: 60px 20px;
            color: #64748b;
        }

        .fb-loading-spinner {
            width: 50px;
            height: 50px;
            border: 4px solid #f3f4f6;
            border-top-color: #1877f2;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .fb-feed-footer {
            text-align: center;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid #e2e8f0;
        }

        .btn-visit-page {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            background: #1877f2;
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
        }

        .btn-visit-page:hover {
            background: #1664d8;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
        }

        .btn-visit-page i {
            font-size: 1.2rem;
        }

        @media (max-width: 768px) {
            .facebook-feed-section {
                padding: 60px 0;
            }

            .fb-feed-title {
                font-size: 2rem;
            }

            .fb-feed-wrapper {
                padding: 25px;
                border-radius: 15px;
            }

            .fb-feed-header {
                margin-bottom: 40px;
            }
        }

        @media (max-width: 480px) {
            .fb-feed-title {
                font-size: 1.75rem;
            }

            .fb-feed-desc {
                font-size: 1rem;
            }

            .btn-visit-page {
                padding: 12px 24px;
                font-size: 0.95rem;
            }
        } 