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

body {
  background: url('EspressoBeans2.png') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Arial', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  color: #fff;
  backdrop-filter: brightness(0.4);
  position: relative;
  padding: 20px;
}

img.logo {
  width: 300px;
  max-width: 80%;
  margin-bottom: 30px;
  animation: fadeIn 2s ease;
}

h1 {
  font-size: 3em;
  margin-bottom: 10px;
  animation: fadeIn 3s ease;
}

p {
  font-size: 1.5em;
  margin-bottom: 30px;
  animation: fadeIn 4s ease;
}

.socials {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
  animation: fadeIn 5s ease;
}

.socials a img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  transition: transform 0.3s;
  border-radius: 50%;
  padding: 8px;
}

.socials a img:hover {
  transform: scale(1.3);
}

.about, .mission {
  background: rgba(0, 0, 0, 0);
  border-radius: 10px;
  padding: 20px;
  margin-top: 40px;
  max-width: 800px;
  animation: fadeIn 6s ease;
}

.about h2, .mission h2 {
  margin-bottom: 15px;
  font-size: 2em;
  color: #ffd700; /* gold accent */
}

.about p, .mission p {
  font-size: 1.2em;
  color: #eee;
  line-height: 1.6em;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

footer {
  position: absolute;
  bottom: 15px;
  font-size: 0.9em;
  color: #ccc;
  width: 100%;
  text-align: center;
}

/* ✅ Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  body {
    justify-content: flex-start;
  }

  img.logo {
    width: 200px;
    margin-top: 40px;
  }

  h1 {
    font-size: 2em;
  }

  p {
    font-size: 1.1em;
  }

  .socials a img {
    width: 80px;
    height: 80px;
  }

  .about, .mission {
    padding: 15px;
  }

  .about h2, .mission h2 {
    font-size: 1.6em;
  }

  .about p, .mission p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .socials a img {
    width: 60px;
    height: 60px;
  }

  .about p, .mission p {
    font-size: 0.95em;
  }
}
