/* Reset & Base Layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  background: #e30613;
  color: #fff;
}

/* Main Content */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 16px;
  text-align: center;
}

.logo {
  width: 600px;
  height: 300px;
  max-width: 90vw;
  object-fit: contain;
  margin-bottom: 24px;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.description {
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 24px auto;
  line-height: 1.6;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

/* Contact Info */
.contact-info {
  font-size: 1rem;
  margin-bottom: 20px;
  font-style: normal; /* Removes italic from <address> */
}

.contact-info a {
  color: #fff;
  text-decoration: none; /* Removes underline */
  font-weight: 500;
}

/* Mail Button */
.mailto-btn {
  display: inline-block;
  padding: 12px 32px;
  background: #fff;
  color: #e30613;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  margin-bottom: 12px;
}

.mailto-btn:hover {
  background: #f0f0f0;
  color: #a1000a;
  transform: scale(1.1);
}

/* Footer - Updated */
.footer {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 16px 0;
  font-size: 0.95rem;
  color: #fff;
  display: flex; /* Flex layout for alignment */
  justify-content: center;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  gap: 12px; /* Uniform spacing between links/icons */
}

.footer a {
  display: inline-flex; /* Prevent stacking, ensure inline icon alignment */
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  transition: color 0.3s, opacity 0.3s;
}

.footer a:hover {
  opacity: 1;
  color: #ccc;
}

.footer a img,
.footer a svg {
  max-height: 24px;
  max-width: 24px;
}

/* Responsive Design */
@media (max-width: 600px) {
  h1 {
    font-size: 1.6rem;
  }

  .logo {
    width: 90vw;
    height: auto;
  }

  .description {
    font-size: 1rem;
  }

  .footer {
    font-size: 0.85rem;
    padding: 12px 10px;
    gap: 8px; /* Slightly tighter spacing on small screens */
  }
}
