body {
  margin: 0;
  font-family: "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #fff;
  color: #000;
}

.header {
  background: white;
  color: black;
  text-align: center;
  padding: 1.5rem 0;
}

.subtitle {
  color: #1B00F5;
  margin: 0.3rem 0 1rem;
}

.nav-links {
  list-style: none;
  padding: 0;
  padding-top: 20px;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.nav-links a {
  color: #000;
  text-decoration: none;
  padding: 5px 10px;
  transition: color 0.3s, background 0.3s;
  border-radius: 5px;
}

.nav-links a.active {
  color: #fff;
  background-color: #1B00F5;
  border-radius: 5px;
  padding: 5px 10px;
}

.nav-links a:hover {
  background-color: #1B00F5;
  color: #fff;
  border-radius: 5px;
}

.hero {
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0;
}

.hero-image {
  width: 90%;
  max-width: 900px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.content-section {
  padding: 40px 20px; /* 40px top & bottom, 20px left & right */
  max-width: 1200px;  /* Optional: keeps content from stretching too wide */
  margin: 0 auto;     /* Center the section horizontally */
  box-sizing: border-box; /* Ensures padding is included in width */
}

.footer-image {
  width: 90%;
  max-width: 90px;
  border-radius: 1px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.button-container {

  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
  margin: 2rem 0;
}

.btn {
  background: #2104fc;
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  margin: 0 0.5rem;
  transition: background 0.3s;
}

.btn:hover {
  background: #0008ff;
}

.divider {
  width: 80%;
  margin: 2rem auto;
  border: 0.5px solid #ccc;
}

.contact {
  text-align: center;
  padding: 2rem 1rem;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}

.socials img {
  width: 28px;
  height: 28px;
  filter: invert(0);
}

.more-link {
  text-decoration: none;
  color: #2104fc;
  font-weight: 500;
}

footer {
  background: #fff;
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid #eee;
}

.coffee {
  margin-bottom: 1rem;
}

.support-btn {
  background: #2104fc;
  color: white;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

.copyright {
  color: #555;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .content-section {
    padding: 30px 15px;
  }
}

@media (max-width: 480px) {
  .content-section {
    padding: 20px 10px;
  }
}
