/* Top Page Styles */
.front-page {
  margin-top: 70px;
}

/* Hero Section */
.hero-section {
  height: calc(100vh - 70px);
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
}

.hero-content p {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 1s ease 0.4s both;
}

/* Hero Social Media */
.hero-social {
  margin-top: 2rem;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-social .social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.hero-social .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.hero-social .social-link:hover {
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
}

.hero-social .social-link svg {
  transition: transform 0.3s ease;
}

.hero-social .social-link:hover svg {
  transform: scale(1.1);
}

.hero-social .social-link.twitter:hover {
  background-color: #1da1f2;
  border-color: #1da1f2;
}

.hero-social .social-link.youtube:hover {
  background-color: #ff0000;
  border-color: #ff0000;
}

.hero-social .social-link.email:hover {
  background-color: #ea4335;
  border-color: #ea4335;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background-color: #fff;
}

.services-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.service-item {
  text-align: center;
  padding: 2rem;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-item h3 {
  margin-bottom: 1rem;
  color: #333;
}

.service-item p {
  color: #666;
  line-height: 1.6;
}

/* News Section */
.news-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.news-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.news-list {
  max-width: 800px;
  margin: 0 auto 2rem;
}

.news-item {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.news-item:hover {
  transform: translateX(10px);
}

.news-date {
  background-color: #333;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-right: 1.5rem;
  white-space: nowrap;
}

.news-item h3 {
  margin: 0;
}

.news-item a {
  color: #333;
  transition: color 0.3s ease;
}

.news-item a:hover {
  color: #666;
}

.news-more {
  text-align: center;
}

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

/* Mobile Styles */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 200px;
  }

  .hero-social .social-link {
    width: 45px;
    height: 45px;
  }

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

  .service-item {
    padding: 1.5rem;
  }

  .news-item {
    flex-direction: column;
    text-align: center;
  }

  .news-date {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .section {
    padding: 60px 0;
  }
}
