/* Basic reset (optional) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f1f6f5; /* Light background */
  color: #333;
  line-height: 1.6;
}

/* Force images not to exceed their container width */
img {
  max-width: 100%;
  height: auto; 
  display: block; /* removes extra inline spacing */
}

/* Header / Logo */
header {
  background-color: #fff;  /* White background for header */
  padding: 1rem;
  text-align: center;
  color: #fff;             /* <-- If you want visible text, pick a different color */
}

.logo-container {
  display: inline-block;
}

/* Make the logo a fixed width if it's too large */
.logo {
  width: auto;   /* or any size you prefer */
  height: 300px;
  vertical-align: middle;
  margin-right: 1rem;
  display: inline-block !important; 
  margin: 0 auto;         /* optional if you want it centered in a line of text */
  width: auto;            /* or set a fixed width if you like */
}

/* Navigation */
nav {
  background-color: #1D4F91; /* Navy blue for the nav bar */
}
nav ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
}
nav li {
  margin: 0;
}
nav a {
  display: block;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: #fff; /* White text on navy background */
}
nav a:hover {
  background-color: #4caf50; /* Green hover */
  transition: background-color 0.3s;
}
nav a.active {
  background-color: #d6b032; /* Gold highlight for active page */
  color: #0b4d53; /* Dark teal text on gold background */
}

/* Sidebar on the left */
.sidebar {
  float: left;
  width: 250px;
  background: #fff;
}

/* Main content: offset by the sidebar width */
.main-content {
  margin-left: 250px;
  margin-right: 250px;  /* if you also have a right sidebar */
  padding: 1rem;
}

/* Right sidebar floats on the right side */
.right-sidebar {
  float: right;
  width: 250px;
  background-color: #fff;

}

/* Sidebar images */
.sidebar-image {
  width: 150%; 
  height: auto;
  margin-bottom: 1rem;
  display: block;
}

/* Main content area */
main {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}
/* Student Profile Cards */
.student-profile {
  background-color: #fff;
  border: 1px solid #ddd;
  margin-bottom: 1rem;
  padding: 1rem;
  display: flex;
  gap: 1rem;
}
.student-profile img {
    width: 200px;        /* same width & height for a square */
    height: 200px;
    object-fit: cover;   /* fills the square, cropping edges if needed */
    display: block;      /* removes any inline spacing gaps */
/* Headings */
h2 {
  color: #0b4d53; /* Teal subheadings */
  margin-bottom: 1rem;
}
h3 {
  color: #0b4d53; /* Teal subheadings */
  margin-bottom: 1rem;
  margin-top: 2rem
}

/* Accent box example */
.accent-box {
  background-color: #82b3e5; /* Light blue */
  padding: 1rem;
  border-radius: 6px;
  color: #0b4d53;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  clear: both;
  background-color: #0b4d53;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}
