/* style.css - updated for welcome page and index.html */

/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #0f1527; /* Primary background color */
  color: #ffffff; /* Default text color to white */
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  padding: 0 15px;
}
h2 {
  color: lightgreen; /* Light blue for h3 headings */
  margin-bottom: 12px;
}
/* Header Styles */
header {
  background-color: #0f1527; /* Keep header background as is */
  color: lightblue;
  padding: 20px 0;
  text-align: center;
}
a {
  color: lightblue;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
  font-weight: bold;
}

header h2 {
  margin-top: 10px;
  font-size: 1.2em;
  font-weight: normal;
}

/* Navigation Styles */

ul {
  list-style-type: disc;
  padding-left: 40px;
  margin-bottom: 15px;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #333333; /* Darker background for contrast */
  text-align: center;
}

nav li {
  display: inline-block;
  position: relative;
}

nav a {
  display: block;
  color: #ffffff; /* White text */
  text-decoration: none;
  padding: 10px 15px;
  transition: background-color 0.3s ease;
}

footer a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.dropdown-content a {
  color: #ffffff; /* White text */
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease;
}

nav a:hover {
  background-color: #007bff; /* Light blue on hover */
}

nav a:visited {
  color: lightblue; /* Light blue color for visited links */
}

/* Dropdown Styles */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #333333;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
footer a:hover {
  color: #007bff;
  text-decoration: none;
}

footer a:visited {
  color: lightblue;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

footer li {
  display: inline-block;
  margin: 0;
  padding: 10px 15px;
}

.dropdown-content a:hover {
  background-color: #007bff; /* Light blue on hover */
}

.dropdown-content a:visited {
  color: lightblue; /* Light blue color for visited links */
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Section Styles */
section {
  padding: 25px;
  margin-bottom: 20px;
  background-color: #0f1527; /* Same as primary background */
  border-radius: 8px;
  /* Remove box shadow as it won't be visible on dark background */
}

h3 {
  color: orange; /* Light blue for h3 headings */
  margin-bottom: 10px;
}

h4 {
  color: lightblue; /* Light blue for h4 headings */
  margin-top: 20px;
  margin-bottom: 10px;
}

/* Table Styles */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th,
td {
  text-align: left;
  padding: 10px;
  border-bottom: 1px solid lightblue; /* Light gray border for visibility */
  color: white; /* White text in tables */
}

th {
  background-color: #0f1527; /* Same as primary background */
  color: #ffffff; /* White text */
  font-weight: bold;
}

/* Specific Element Styles */
.sub-section {
  margin-left: 30px;
}

.protocol-info {
  background-color: #004aad; /* Light blue background */
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  color: #ffffff; /* White text */
}

.protocol-info h4 {
  color: #ffffff; /* White text */
  margin-bottom: 10px;
}

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

.protocol-info li {
  margin-bottom: 5px;
}

.interoperability {
  background-color: #004aad;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.interoperability h4 {
  color: #ffffff;
  margin-bottom: 10px;
}

.interoperability p {
  margin: 0;
}

/* Footer Styles */
footer {
  background-color: #0f1527;
  color: #ffffff;
  text-align: center;
  clear: both;
  border: 1px solid #f2f2f2;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 0 10px;
}

/* Styles for Picture Links on index.html */
#picture-links {
  text-align: center;
  margin-top: 20px;
}

#picture-links a {
  display: inline-block;
  margin: 0 10px;
}

.welcome-page .front img {
  transition: transform 0.3s ease-in-out;
}

.welcome-page .front:hover img {
  transform: scale(1.1);
}

#picture-links img {
  max-width: 200px;
  height: auto;
  border: 1px solid #dddddd;
  transition: transform 0.3s ease;
}

#picture-links a:hover img {
  transform: scale(1.1);
}

/* Welcome Page Styles */
body.welcome-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #0f1527;
  margin: 0;
}

.technology h3 {
  color: #007bff;
  margin-top: 20px;
  margin-bottom: 10px;
}

.welcome-page .logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
}

.welcome-page .logo {
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
}

.welcome-page .details {
  margin-top: 20px;
}

.welcome-page .front h3 {
  color: #004aad;
  font-size: 1.2em;
  margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav a {
    display: block;
    margin: 10px 0;
  }

  .container {
    padding: 0 10px;
  }

  section {
    padding: 15px;
  }

  table {
    font-size: 14px;
  }

  footer li {
    margin: 0 10px;
  }

  #picture-links img {
    max-height: 150px;
  }
}

/* Team Member Styles */
.team-member {
  margin-bottom: 30px; /* Add some space between team member sections */
}

.team-photo {
  justify-content: center; /* Float the image to the left */
  margin-right: 40px; /* Add some space between the image and text */
  margin-bottom: 40px; /* Add some space below image */
  max-width: 150px; /* Adjust the maximum width as needed */
  height: auto;
  border-radius: 25%; /* Add for a circular image style */
}

.technology {
  margin-bottom: 30px; /* Add space below the technology section */
}

.technology h2 {
  color: #007bff; /* Light blue for the h2 heading */
  margin-top: 30px;
  margin-bottom: 10px;
}

.technology p {
  margin-bottom: 15px; /* Add spacing between paragraphs */
}

.technology ul {
  margin-bottom: 15px; /* Add spacing below lists */
}

.technology li {
  margin-bottom: 5px; /* Add spacing between list items */
}
/* Beta Message Styles */
#beta-message {
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 8px;
  background-color: #0f1527; /* Add background color */
  width: 85%;
}

#beta-message h2 {
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 10px;
}

#beta-message p {
  margin-bottom: 15px;
  color: #ffffff;
}
.logo1 {
  width: 15%;
  padding: 20px;
  border-radius: 8px;
}
