/* Socials page specific styles */

/* Socials Page Hero */
.socials-hero {
  background: #000000;
  color: white;
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
}

.socials-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(white, rgba(255, 255, 255, 0.15) 2px, transparent 40px),
    radial-gradient(white, rgba(255, 255, 255, 0.1) 1px, transparent 30px),
    radial-gradient(white, rgba(255, 255, 255, 0.07) 2px, transparent 40px),
    radial-gradient(
      rgba(255, 255, 255, 0.25),
      rgba(255, 255, 255, 0.07) 2px,
      transparent 30px
    );
  background-size:
    550px 550px,
    350px 350px,
    250px 250px,
    150px 150px;
  background-position:
    0 0,
    40px 60px,
    130px 270px,
    70px 100px;
  animation: twinkle 4s ease-in-out infinite alternate;
  pointer-events: none;
}

.socials-hero .hero-content {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(2px);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.socials-hero .hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9);
  letter-spacing: 2px;
  font-weight: bold;
}

.socials-hero .hero-content p {
  font-size: 1.3rem;
  margin-bottom: 0;
  opacity: 0.95;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

/* Socials Main Content */
.socials-main {
  padding: 4rem 0;
  background: #000000;
  position: relative;
  overflow: hidden;
}

.socials-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(white, rgba(255, 255, 255, 0.15) 2px, transparent 40px),
    radial-gradient(white, rgba(255, 255, 255, 0.1) 1px, transparent 30px),
    radial-gradient(white, rgba(255, 255, 255, 0.07) 2px, transparent 40px),
    radial-gradient(
      rgba(255, 255, 255, 0.25),
      rgba(255, 255, 255, 0.07) 2px,
      transparent 30px
    );
  background-size:
    550px 550px,
    350px 350px,
    250px 250px,
    150px 150px;
  background-position:
    40px 40px,
    80px 100px,
    170px 310px,
    110px 140px;
  animation: twinkle 4s ease-in-out infinite alternate;
  pointer-events: none;
}

.socials-main h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: #ffffff;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
}

.social-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.social-card {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(2px);
  transition: all 0.3s ease;
}

.social-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.social-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.social-card h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  letter-spacing: 1px;
}

.social-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.social-card .social-link {
  display: inline-block;
  background: linear-gradient(45deg, #ffffff, #e0e0e0);
  color: #000000;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.social-card .social-link:hover {
  background: linear-gradient(45deg, #f0f0f0, #d0d0d0);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.socials-main .credits-section {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
  text-align: center;
}

.socials-main .credits-section h2 {
  margin-bottom: 2rem;
  text-align: center;
}

/* Socials page responsive design */
@media (max-width: 1024px) {
  .socials-hero {
    padding: 4rem 0;
  }

  .socials-hero .hero-content {
    margin: 0 1.5rem;
    padding: 2.5rem;
  }

  .social-cards {
    margin: 0 1.5rem;
  }
}

@media (max-width: 768px) {
  .socials-hero {
    padding: 3rem 0;
    min-height: 50vh;
  }

  .socials-hero .hero-content {
    margin: 0 1rem;
    padding: 2rem;
  }

  .socials-hero .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
  }

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

  .socials-main {
    padding: 3rem 0;
  }

  .social-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 0 1rem;
  }

  .social-card {
    padding: 2rem;
  }

  .social-card h3 {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
  }

  .social-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .social-card .social-link {
    padding: 0.9rem 2rem;
    font-size: 1rem;
    width: 80%;
    text-align: center;
  }

  .socials-main .credits-section {
    margin: 0 1rem;
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .socials-hero {
    padding: 2rem 0;
  }

  .socials-hero .hero-content {
    margin: 0 0.75rem;
    padding: 1.5rem;
  }

  .socials-hero .hero-content h1 {
    font-size: 2rem;
  }

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

  .social-cards {
    margin: 0 0.75rem;
  }

  .social-card {
    padding: 1.5rem;
  }

  .social-card h3 {
    font-size: 1.5rem;
  }

  .social-card .social-link {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
  }

  .socials-main .credits-section {
    margin: 0 0.75rem;
    padding: 1.5rem;
  }
}
