* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #2c3e50;
    padding: 40px 20px;
    animation: fadeIn 1s ease-out;
}

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

.container {
    max-width: 750px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    animation: slideUp 0.8s ease-out forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

h1 {
    font-size: 3em;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 15px;
    letter-spacing: 2px;
    position: relative;
    transition: all 0.3s ease;
}

h1:hover {
    transform: translateY(-2px);
    color: #667eea;
}

.meta {
    color: #7f8c8d;
    font-size: 1.1em;
    font-style: italic;
    opacity: 0.8;
}

.date {
    color: #667eea;
    font-weight: 500;
}

article h2 {
    font-size: 1.8em;
    color: #34495e;
    margin: 40px 0 20px 0;
    font-weight: 400;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

article h2:hover {
    color: #667eea;
    transform: translateX(10px);
}

article h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

article h2:hover::after {
    width: 100%;
}

section {
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

section:nth-child(1) { animation-delay: 0.2s; }
section:nth-child(2) { animation-delay: 0.4s; }
section:nth-child(3) { animation-delay: 0.6s; }

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

p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    transition: all 0.2s ease;
}

p:hover {
    transform: translateX(5px);
    color: #34495e;
}

/* Subtle scroll indicator */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transform-origin: left;
    animation: scrollProgress 1s ease-out forwards;
    z-index: 1000;
}

@keyframes scrollProgress {
    to { transform: scaleX(1); }
}

@media (max-width: 768px) {
    body {
        padding: 20px 15px;
    }
    
    .container {
        padding: 40px 30px;
        border-radius: 15px;
    }
    
    h1 {
        font-size: 2.2em;
        letter-spacing: 1px;
    }
    
    article h2 {
        font-size: 1.4em;
    }
    
    p {
        font-size: 1em;
    }
}

/* ===== LSM ePortfolio Styles ===== */

/* General ePortfolio Sections */
.eportfolio-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.eportfolio-section h1 {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
  border-bottom: 3px solid #007bff;
  padding-bottom: 15px;
}

.eportfolio-section h2 {
  font-size: 2em;
  color: #444;
  margin-top: 40px;
  margin-bottom: 20px;
}

.eportfolio-section h3 {
  font-size: 1.3em;
  color: #555;
  margin-top: 20px;
  margin-bottom: 10px;
}

.section-description {
  font-size: 1.1em;
  line-height: 1.8;
  color: #666;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
}

/* Navigation Active State */
.nav-item.active {
  background: rgba(255, 255, 255, 0.3);
  border-bottom: 2px solid white;
}

/* Leadership Philosophy Styles */
.philosophy-intro,
.philosophy-content {
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.value-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.value-card h3 {
  color: white;
  font-size: 1.5em;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  padding-bottom: 10px;
}

.approach-section,
.influences-section,
.growth-section {
  background: #ffffff;
  padding: 25px;
  border-left: 4px solid #007bff;
  margin: 20px 0;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Competencies Styles */
.competencies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.competency-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.competency-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.competency-header {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  padding: 25px;
  text-align: center;
}

.competency-header i {
  font-size: 3em;
  margin-bottom: 15px;
  display: block;
}

.competency-header h2 {
  margin: 0;
  color: white;
  font-size: 1.6em;
}

.competency-content {
  padding: 25px;
}

.competency-content h3 {
  color: #f5576c;
  font-size: 1.2em;
  margin-top: 20px;
  margin-bottom: 10px;
  border-bottom: 2px solid #f093fb;
  padding-bottom: 5px;
}

.competency-content p {
  line-height: 1.7;
  color: #555;
}

/* Reflections Styles */
.reflections-list {
  margin: 30px 0;
}

.reflection-item {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  padding: 35px;
  margin-bottom: 40px;
  border-left: 5px solid #28a745;
  transition: box-shadow 0.3s ease;
}

.reflection-item:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.reflection-item h2 {
  color: #28a745;
  margin-top: 0;
  font-size: 1.8em;
}

.reflection-date {
  color: #888;
  font-size: 0.95em;
  margin-bottom: 20px;
}

.reflection-content h3 {
  color: #444;
  font-size: 1.3em;
  margin-top: 25px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e9ecef;
}

.reflection-content p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* Artifacts Styles */
.artifacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 35px;
  margin: 30px 0;
}

.artifact-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artifact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.artifact-image {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 40px;
  text-align: center;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.artifact-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.artifact-icon {
  font-size: 5em;
  color: white;
}

.artifact-content {
  padding: 30px;
}

.artifact-content h2 {
  color: #667eea;
  margin-top: 0;
  font-size: 1.6em;
}

.artifact-type,
.artifact-date {
  color: #666;
  font-size: 0.95em;
  margin: 5px 0;
}

.artifact-content h3 {
  color: #444;
  font-size: 1.2em;
  margin-top: 20px;
  margin-bottom: 10px;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 5px;
}

.artifact-content p {
  line-height: 1.7;
  color: #555;
}

.artifact-link {
  margin-top: 25px;
  text-align: center;
}

/* Back Link */
.back-link {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid #e9ecef;
}

/* ePortfolio Navigation Cards on Home Page */
.eportfolio-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.eportfolio-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.eportfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.eportfolio-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.eportfolio-card i {
  font-size: 3em;
  color: #007bff;
  margin-bottom: 15px;
  display: block;
}

.eportfolio-card h3 {
  color: #333;
  font-size: 1.4em;
  margin: 15px 0 10px;
}

.eportfolio-card p {
  color: #666;
  font-size: 0.95em;
  line-height: 1.6;
}

.eportfolio-card:nth-child(1) i { color: #667eea; }
.eportfolio-card:nth-child(2) i { color: #f5576c; }
.eportfolio-card:nth-child(3) i { color: #28a745; }
.eportfolio-card:nth-child(4) i { color: #764ba2; }

/* ePortfolio Responsive Design */
@media (max-width: 768px) {
  .eportfolio-section h1 {
    font-size: 2em;
  }
  
  .values-grid,
  .competencies-grid,
  .artifacts-grid,
  .featured-work-grid {
    grid-template-columns: 1fr;
  }
  
  .eportfolio-nav {
    grid-template-columns: 1fr;
  }
  
  .artifact-card,
  .competency-card {
    margin: 0 10px;
  }
}

/* Print Styles for ePortfolio */
@media print {
  .nav,
  .footer,
  .back-link {
    display: none;
  }
  
  .eportfolio-section {
    max-width: 100%;
    padding: 20px;
  }
  
  .value-card,
  .competency-card,
  .reflection-item,
  .artifact-card,
  .featured-item-card {
    page-break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

/* Video Intro Section */
.video-intro-section {
  text-align: center;
  margin: 30px 0;
  padding: 20px;
  background: #f0f2f5;
  border-radius: 15px;
}

.video-intro-section h3 {
  font-size: 1.8em;
  color: #333;
  margin-bottom: 10px;
}

.video-placeholder {
  width: 100%;
  max-width: 560px;
  height: 315px;
  background: #e9ecef;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  border: 2px dashed #ced4da;
}

.video-placeholder i {
  font-size: 4em;
  color: #adb5bd;
}

.video-placeholder p {
  margin-top: 15px;
  color: #6c757d;
}

/* Coursework Styles */
.course-item {
  background: white;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-left: 5px solid #17a2b8;
}

.course-item h2 {
  color: #17a2b8;
  margin-top: 0;
}

.course-description {
  font-style: italic;
  color: #555;
  margin-bottom: 15px;
}

.course-learnings h3,
.course-artifacts h4 {
  color: #333;
  margin-top: 15px;
  margin-bottom: 10px;
  border-bottom: 2px solid #eee;
  padding-bottom: 5px;
}

/* Interactive Timeline Styles */
.timeline-container {
  position: relative;
  padding: 20px 0;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #e9ecef;
  transform: translateX(-50%);
}

.timeline-event {
  position: relative;
  width: 50%;
  padding: 10px 40px;
  cursor: pointer;
  transition: background 0.3s;
}

.timeline-event:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-event:nth-child(even) {
  left: 50%;
}

.timeline-event:hover {
  background: rgba(0, 123, 255, 0.05);
}

.timeline-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #007bff;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  z-index: 1;
}

.timeline-event:nth-child(odd) .timeline-icon {
  right: -25px;
}

.timeline-event:nth-child(even) .timeline-icon {
  left: -25px;
}

.timeline-content h2 {
  margin-top: 0;
  color: #007bff;
}

.timeline-date {
  font-weight: bold;
  color: #555;
  margin-bottom: 10px;
}

.timeline-reflections {
  margin-top: 40px;
}

.reflection-content-area {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  margin-top: 20px;
  border-left: 4px solid #007bff;
}

/* Future Growth Styles */
.growth-section-item {
  background: white;
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}

.growth-section-item h2 {
  color: #28a745;
  margin-top: 0;
}

/* Featured Work Styles */
.featured-work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.featured-item-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  overflow: hidden;
}

.featured-item-image {
  background: #6c757d;
  padding: 30px;
  color: white;
  font-size: 3em;
}

.featured-item-content {
  padding: 20px;
}

.featured-item-content h2 {
  margin-top: 0;
  color: #333;
}

.featured-item-content a {
  margin-top: 15px;
  display: inline-block;
}
