/* Page Content Styles */
.page-content {
  padding-top: 80px; /* Space for fixed navbar */
  min-height: calc(100vh - 80px - 60px); /* Viewport height minus navbar and footer */
  background-color: #f9f9f9;
}

/* Navbar styles removed to ensure consistency with navbar.css */

/* Container Styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Typography */
h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #333;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #444;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #555;
}

p {
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #666;
}

/* List Styles */
ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Blockquote Styles */
blockquote {
  border-left: 4px solid #ddd;
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #666;
}

blockquote footer {
  margin-top: 0.5rem;
  font-style: normal;
  color: #888;
}

/* Profile Section */
.mentor-profile {
  background-color: #fff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.role {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 1.5rem;
  font-style: italic;
}

/* Creators Page Specific Styles */
.creators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.creator-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  width: 100%;
}

.creator-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.creator-text {
  width: 100%;
  text-align: center;
}

.creator-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.creator-role {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.creator-bio {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  text-align: justify;
  width: 85%;
  margin: 0 auto;
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 3rem;
  width: 100%;
}
footer p {
  margin: 0;
  font-size: 0.9rem;
}

/* Materials Testing Page Specific Styles */
.slideshow-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.slideshow-container {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.5rem;
  text-align: center;
}

.thumbnail-container {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.thumbnail {
  width: 60px;
  height: 60px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}

.thumbnail.active {
  border-color: #333;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .mentor-profile {
    padding: 1.5rem;
  }

  .creators-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .creator-image {
    width: 180px;
    height: 180px;
  }

  .slideshow-wrapper {
    max-width: 100%;
  }

  .slide-caption {
    font-size: 0.9rem;
    padding: 0.4rem;
  }

  .thumbnail {
    width: 50px;
    height: 50px;
  }
}

/* iPhone-specific adjustments */
@media (max-width: 414px) {
  .container {
    padding: 0.75rem;
  }
  
  h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .mentor-profile {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .role {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  blockquote {
    padding-left: 0.75rem;
    margin: 1rem 0;
  }
  
  ul {
    padding-left: 1rem;
  }
  
  footer {
    padding: 1rem;
    margin-top: 1.5rem;
  }

  /* Materials Testing Page iPhone Adjustments */
  .slideshow-wrapper {
    margin: 0 -0.75rem; /* Negative margin to extend to edges */
  }

  .slide-caption {
    font-size: 0.8rem;
    padding: 0.3rem;
  }

  .thumbnail-container {
    gap: 0.3rem;
    margin-top: 0.5rem;
  }

  .thumbnail {
    width: 40px;
    height: 40px;
  }

  .slide img {
    max-height: 60vh;
    object-fit: contain;
  }

  /* Creators Page iPhone Adjustments */
  .creators-grid {
    gap: 1rem;
    margin: 1rem 0;
  }

  .creator-section {
    padding: 1.5rem;
  }

  .creator-image {
    width: 160px;
    height: 160px;
  }

  .creator-name {
    font-size: 1.25rem;
  }

  .creator-role {
    font-size: 1rem;
  }

  .creator-bio {
    font-size: 0.9rem;
    line-height: 1.5;
    width: 85%;
  }
} 