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

/* Body with background image */
body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background-color: #f2f2f2;
  color: #222;
  padding: 2rem 1rem;
  min-height: 100vh;

  background-image: url('images/Background.jpg'); /* <-- Update path if needed */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed; /* Makes background scroll smoothly on desktop */
}

/* Gray Center Container */
.container {
  background: rgba(255, 255, 255, 0.85); /* Slight transparency for readability */
  padding: 2rem;
  border-radius: 1rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Social Icons Layout */
.social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 180px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.social-link img {
  width: 60px;
  height: 60px;
  background: white;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-link:hover img {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.icon-label {
  margin-top: 0.5rem;
  font-size: 1rem;
  text-align: center;
}

/* Footer */
footer {
  margin-top: 3rem;
  text-align: center;
  background: #333;
  color: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
}

/* Responsive */
@media (max-width: 600px) {
  .social-icons {
    gap: 1rem;
  }

  .social-link {
    width: 100%;
  }

  .social-link img {
    width: 50px;
    height: 50px;
  }

  .icon-label {
    font-size: 0.9rem;
  }

  h1 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  body {
    background-attachment: scroll; /* Improves performance on mobile */
  }
}
