/* ------ */
/* Global Styles */

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

body, html {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  margin: 0;
  background: linear-gradient(to bottom, #000000, #333333);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: #333;
}

/* ------ */
/* Header Styles */

.header-image {
  text-align: center;
  margin-bottom: 40px;
}

.header-image img {
  max-width: 90%;
  height: auto;
  border-radius: 25px;
  transition: transform 0.3s ease;
}

h1 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 40px;
  color: #ffffff;
}

/* ------ */
/* Main Styles */

.content {
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 20px;
  backdrop-filter: blur(4px);
}

.social-container {
  padding: 50px 30px;
  max-width: 500px;
  margin: 0 auto;
}

.social-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Default: 3 columns for PC */
  gap: 20px;
  justify-content: center;
}

.social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-radius: 50px;
  width: 175px;
  height: 175px;
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.social-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
}

.social-item:hover {
  transform: scale(1.1);
}

/* ------ */
/* Footer Styles */

.footer-image {
  text-align: center;
  margin-bottom: 40px;
}

.footer-image img {
  max-width: 90%;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

/* ------ */
/* Responsive Styles */

@media (max-width: 768px) {
  .social-grid {
    grid-template-columns: repeat(2, 1fr); /* Mobile: 2 columns */
  }

  h1 {
    font-size: 2.2rem;
  }

  .social-item {
    width: 150px;
    height: 150px;
    font-size: 1rem;
    border-radius: 40px;
  }
}
