/* General Body Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: url('media/Datum11BlackMarble.png') repeat; /* Marble Background */
  background-size: auto;
  color: #fff;
}

/* Title Icon */
.title-icon {
  position: fixed;
  top: 1px;
  left: 7px;
  z-index: 1000; /* Ensure it stays above all other elements */
}

.title-icon img {
  width: 90px; 
  height: auto;
}

/* Left Menu */
.menu {
  position: fixed;
  top: 50px;
  left: 0;
  bottom: 0;
  width: 117px;
  background: rgba(34, 34, 34, 0.8); /* Slightly transparent */
  overflow-y: auto;
  padding: 5px 0;
  scroll-behavior: smooth;
}

/* Menu Buttons */
.menu button {
  background: transparent;
  border: none;
  color: white;
  font-size: 1rem;
  padding: 12px 20px;
  margin-bottom: 1px;
  cursor: pointer;
  border-radius: 5px;
  display: block;
  width: calc(98% - 2px);
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: filter 0.3s, box-shadow 0.3s;
}

.menu button:hover, .menu button.active {
  box-shadow: 0 0 8px 5px rgba(255, 255, 255, 0.5),
              inset 0 0 8px 5px rgba(255, 255, 255, 0.3);
  filter: brightness(1.3);
}

/* Main Display */
.main-display {
  margin-left: 120px; /* Space for the menu */
  padding-top: 5px;
}

/* Content Sections */
.content-section {
  background: rgba(51, 51, 51, 0.9); /* Slightly transparent */
  padding: 20px;
  margin: 20px auto;
  border-radius: 8px;
  width: 90%;
  box-sizing: border-box; /* Ensures padding is included in total width */
  max-width: 100%; /* Prevents content from exceeding the container */
}

.content-section h2 {
  color: #fff;
}

.content-section p, .content-section ul {
  color: #ccc;
}

/* General Hyperlink Styling */
a {
  color: #007bff; /* Standard hypertext blue */
  background-color: rgba(0, 0, 50, 0.1); /* More transparent dark shaded background */
  padding: 2px 5px;
  text-decoration: underline; /* Keeps links underlined */
  border-radius: 3px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover Effect */
a:hover {
  color: #0056b3; /* Darker blue on hover */
  background-color: rgba(0, 0, 80, 0.4); /* Slightly darker, still transparent */
}

/* Visited Links */
a:visited {
  color: #800080; /* Standard purple for visited links */
  background-color: rgba(30, 0, 30, 0.1); /* More transparent dark background */
}


/* Images and Lists */
img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 10px auto;
}

ul {
  list-style-type: none;
  padding: 0;
}

ul li {
  margin-bottom: 10px;
}

/* Footer Styling */
.site-footer {
  background: rgba(34, 34, 34, 0.9); /* Matches the menu background */
  color: #fff;
  text-align: center;
  padding: 1px 1px;
  position: fixed; /* Keeps the footer at the bottom */
  bottom: 0;
  right: 0;
  width: 84%; /* Stretches across the viewport */
  z-index: 1000; /* Keeps it above other elements */
  font-size: 0.9rem; /* Slightly smaller font for subtlety */
  
  border-top: 1px solid rgba(255, 255, 255, 0.2); /* Optional border for separation */
}


/* Footer Links (Same transparent background) */
.site-footer a {
  color: #007bff; /* Standard blue */
  background-color: rgba(0, 0, 50, 0.1); /* Lighter footer background */
  padding: 2px 5px;
  text-decoration: underline; /* Keeps footer links underlined */
  border-radius: 3px;
}

.site-footer a:hover {
  color: #0056b3; /* Darker blue on hover */
  background-color: rgba(0, 0, 80, 0.4); /* Matches body hover effect */
}

/* Footer Visited Links */
.site-footer a:visited {
  color: #800080; /* Purple like standard visited links */
  background-color: rgba(30, 0, 30, 0.1); /* More transparent */
}


/* Contact Section */
.contact-icons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin-top: 5px;
}

.contact-item {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ccc;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.contact-item:hover {
  color: #fff;
}

.contact-icon {
  width: 40px; 
  height: 40px;
  margin-right: 5px;
}

address {
  margin-top: 5px;
  font-style: normal; /* Prevent italicized text */
  color: #aaa;
  line-height: 1;
}

