/* Index Page Specific Styles */

/* Slideshow Testimonials & Pictures */
.slideshow-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #3a7;
  margin-bottom: 3rem;
  font-weight: bold;
}

.slideshow-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.slideshow-wrapper {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  align-items: center;
  background: linear-gradient(45deg, #2a2a2a, #1e1e1e);
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 50%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  padding: 2rem;
  width: 50%;
  color: #fff;
}

.slide-content h3 {
  font-size: 2rem;
  color: #3a7;
  margin-bottom: 1rem;
}

.slide-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-weight: bold;
  color: #aaa;
}

.slideshow-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}

.nav-btn {
  background: rgba(58, 119, 0, 0.8);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  pointer-events: all;
  transition: background 0.3s ease;
}

.nav-btn:hover {
  background: rgba(58, 119, 0, 1);
}

.slideshow-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #666;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: #3a7;
}

/* Services CTA Section */
.services-cta {
  padding: 4rem 0;
  background: #222;
}

.cta-content {
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: #3a7;
  margin-bottom: 1rem;
}

.cta-content > p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background: #2a2a2a;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #333;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(58, 119, 0, 0.2);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: #3a7;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.service-card p {
  color: #ccc;
  line-height: 1.6;
}

.cta-button {
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button.primary {
  background: #3a7;
  color: #fff;
}

.cta-button.primary:hover {
  background: #4b8;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(58, 119, 0, 0.3);
}

.cta-button.secondary {
  background: transparent;
  color: #3a7;
  border: 2px solid #3a7;
}

.cta-button.secondary:hover {
  background: #3a7;
  color: #fff;
}

/* Content Showcase Section */
.content-showcase {
  padding: 4rem 0;
  background: #1a1a1a;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.content-block {
  background: #2a2a2a;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #333;
}

.content-block h3 {
  color: #3a7;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  text-align: center;
}

/* Quotes Block */
.quote-carousel {
  position: relative;
  min-height: 150px;
}

.quote {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  text-align: center;
}

.quote.active {
  opacity: 1;
}

.quote blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote cite {
  color: #3a7;
  font-weight: bold;
}

/* Podcast Block */
.podcast-player {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background: #333;
  border-radius: 0.5rem;
}

.podcast-cover {
  width: 80px;
  height: 80px;
  border-radius: 0.5rem;
  object-fit: cover;
}

.podcast-info {
  flex: 1;
}

.podcast-info h4 {
  color: #3a7;
  margin-bottom: 0.5rem;
}

.podcast-info p {
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.podcast-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.play-btn {
  background: #3a7;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  cursor: pointer;
  font-size: 0.9rem;
}

.duration {
  color: #aaa;
  font-size: 0.9rem;
}

.podcast-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.podcast-episode {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem;
  background: #333;
  border-radius: 0.3rem;
  color: #ccc;
  font-size: 0.9rem;
}

/* Videos Block */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.video-card {
  background: #333;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: translateY(-3px);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 120px;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(58, 119, 0, 0.8);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.video-card h4 {
  color: #3a7;
  padding: 1rem 1rem 0.5rem;
  font-size: 1rem;
}

.video-card p {
  color: #ccc;
  padding: 0 1rem 1rem;
  font-size: 0.8rem;
  line-height: 1.4;
}

/* About CTA Section */
.about-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.about-content {
  text-align: center;
}

.about-content h2 {
  font-size: 2.5rem;
  color: #3a7;
  margin-bottom: 1rem;
}

.about-content > p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 3rem;
}

.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.pillar {
  background: #2a2a2a;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #333;
  text-align: center;
}

.pillar h3 {
  color: #3a7;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.pillar p {
  color: #ccc;
  line-height: 1.6;
}

/* Footer */
.site-footer {
  background: #111;
  padding: 2rem 0;
  border-top: 1px solid #333;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: inline-block;
  font-size: 1.5rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: scale(1.2);
}

.footer-info {
  text-align: right;
}

.footer-info p {
  color: #ccc;
  margin: 0.5rem 0;
}

.creation-timestamp {
  font-size: 0.9rem;
  color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
  .slide {
    flex-direction: column;
  }
  
  .slide img,
  .slide-content {
    width: 100%;
  }
  
  .slide img {
    height: 50%;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
  }
  
  .philosophy-pillars {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-info {
    text-align: center;
  }
}
