

/* ======================================================================= Buttons ======================================================================= */

/* Standard Button */
.generic-button {
  background-color: rgba(138, 0, 0, 0.8);
  border: 2px ridge rgb(68, 1, 1);
  color: rgb(255, 255, 255);
  padding: 0.625rem 0.625rem; /* 10px 10px */
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem; /* 16px */
  text-transform: uppercase;
  display: inline-block;
  text-decoration: none;
}

.generic-button:hover {
  background-color: rgba(255, 255, 255, 0.568);
}

/* Download Button */
.download-button {
  background-color: rgba(0, 0, 0, 0.8);
  color: rgba(21, 255, 0, 0.705);
  padding: 0.625rem 0.625rem; /* 10px 10px */
  border: 3px ridge rgb(6, 70, 0);
  cursor: pointer;
  font-family: 'DooM', Arial, sans-serif;
  font-size: 0.75rem; /* 12px */
  text-transform: uppercase;
  display: inline-block;
  text-decoration: none;
}

.download-button:hover {
  background-color: rgba(21, 255, 0, 0.521);
}


/* ======================================================================= Buttons - Text ======================================================================= */

.button_Text {
  color: rgb(220, 220, 220);
  background-color: rgb(138, 0, 0);
  padding: 0.625rem 0.625rem; /* 10px 10px */
  cursor: pointer;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 0.875rem; /* 14px */
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
  text-decoration: none;
}

    .button_Text:hover {
      color: rgb(255, 255, 255);
    }

.button_TextOnly {
  color: rgb(220, 220, 220);
  padding: 0.625rem 0.625rem; /* 10px 10px */
  cursor: pointer;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 0.875rem; /* 14px */
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
  text-decoration: none;
}

.button_Mobile {
  color: rgb(220, 220, 220);
  background-color: rgb(138, 0, 0);
  padding: 0.625rem 0.625rem; /* 10px 10px */
  cursor: pointer;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 0.875rem; /* 14px */
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
  text-decoration: none;
  width: 50%;
}

/* ======================================================================= Drop Down Menu ======================================================================= */


/* --- Style the visible button --- */
.DropDown_Button {
  background-color: rgb(138, 0, 0);
  color: rgb(220, 220, 220);
  padding: 0.625rem 0.625rem; /* 10px 10px */
  border: none;
  cursor: pointer;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem; /* 16px */
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
}

    .DropDown_Button:hover {
      color: rgb(255, 255, 255);
    }

/* --- Position the parent container --- */
.DropDown_Main {
  position: relative;
  display: inline-block;
}

/* --- Style and hide the dropdown menu --- */
.DropDown_Content {
  display: none;
  background-color: rgb(138, 0, 0, 0.85);
  position: absolute;
  z-index: 1;
  min-width: 6.25rem; /* 100px */
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
  
}

   .font_DropDown_Content_SubHeader {
    font-family: Georgia, serif;
    color: rgb(220, 220, 220);
    font-size: 0.875rem; /* 14px */
    text-transform: uppercase;
    font-weight: bold;
    display: block;
    padding-left: 0.625rem; /* 10px */
    padding-right: 0.625rem; /* 10px */
    padding-top: 0.625rem; /* 10px */
    padding-bottom: 0.3125rem; /* 5px */
  }

   .font_DropDown_Content_Link {
    font-family: Verdana, sans-serif;
    color: rgb(220, 220, 220);
    font-size: 0.875rem; /* 14px */
    text-decoration: none;
    display: block;
    white-space: nowrap;
    padding-left: 0.625rem; /* 10px */
    padding-right: 0.625rem; /* 10px */
    padding-top: 0.3125rem; /* 5px */
    padding-bottom: 0.3125rem; /* 5px */
  }

      .font_DropDown_Content_Link:hover {
      display: block;
      background-color: rgb(255, 0, 0);
    }

/* --- THE CORE LOGIC with new names --- */
/* Show the menu when hovering over the main .DropDown_Main container */
.DropDown_Main:hover .DropDown_Content {
  display: block;
}
