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

.header-logo {
  text-align: center;
  margin-bottom: 30px; /* adjust spacing as needed */
}

.header-logo img {
  max-width: 300px; /* or whatever size you prefer */
  height: auto;
}

h2 {
  color: #000;
}

body {
  font-family: Lato, sans-serif;
  background: #e8eefc; 
  color: #333;
  padding: 40px;
}

/* Container for all links */
.links-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Each link “button” style with fixed dimensions */
.link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  padding: 0 18px;
  height: 60px; /* Fixed button height */
  width: 280px;
  text-decoration: none;
  color: #333;
  overflow: visible; /* Allow images to extend outside the button */
}

.link-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Standard logo styling */
.link-button img {
  height: 28px;
  width: auto;
}

/* Medium logos override */
.link-button img.med-logo {
  height: 40px !important;
  width: auto !important;
}

/* Larger logos override */
.link-button img.larger-logo {
  height: 50px !important;
  width: auto !important;
}

/* smaller logos override */
.link-button img.smaller-logo {
  height: 25px !important;
  width: auto !important;
}

.link-button img.wave-logo {
  height: 80px !important;  /* sets a custom height just for the Wave logo */
  width: auto !important;
}

/* Specific styling for SharePoint site buttons */
.link-button.sharepoint-site {
  justify-content: center;
  padding: 0 12px;
}

.link-button.sharepoint-site img.sharepoint-logo {
  height: 28px;
  width: auto;
  margin-right: 8px;
}

.link-button.sharepoint-site .site-title {
  font-size: 12px;
}

.link-button.adobe-site {
  justify-content: center;
  padding: 0 12px;
}

.link-button.adobe-site img.adobe-logo {
  height: 28px;
  width: auto;
  margin-right: 8px;
}

.link-button.adobe-site .site-title {
  font-size: 12px;
  line-height: 1.2;
}
