/* college.css - Mileth College Modern Retro Theme */

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000000;
  color: #FFFFFF;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.4;
}

a { color: #FFFF00; text-decoration: none; }
a:visited { color: #FFFF00; }
a:active { color: #F0F0F0; }

img { border: none; display: block; }

/* Container */
.container {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  background: url('media/bg_templete.gif');
}

/* Header */
.header {
  display: flex;
  justify-content: center;
}
.header img {
  height: 115px;
  width: auto;
}

/* Main Layout - Desktop */
.main-layout {
  display: flex;
  flex-wrap: wrap;
}

.sidebar-left,
.sidebar-right {
  width: 131px;
  flex: 0 0 131px;
}

.sidebar-left { background: #230A00; }
.sidebar-right { background: #3A1401; width: 130px; flex: 0 0 130px; }

.content {
  flex: 1;
  min-width: 0;
  background: url('media/bg2.jpg') repeat-y;
  padding: 20px 3%;
}

/* Footer */
.footer {
  background: #801506;
  padding: 8px;
  text-align: center;
  font-size: 12px;
  color: #FFFFFF;
}
.footer a { color: #FFFF00; }

/* Section Headers */
.section-title {
  background: #FFEAD5;
  color: #330000;
  padding: 4px;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  margin-bottom: 8px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: #230A00;
  padding: 10px;
  color: #FFFF00;
}

.mobile-menu select {
  width: 100%;
  padding: 8px;
  margin: 8px 0;
  background: #000;
  color: #FFFF00;
  border: 1px solid #FFFF00;
  font-family: Verdana, sans-serif;
}

.mobile-toggle {
  display: none;
  background: #230A00;
  color: #FFFF00;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  font-weight: bold;
}

/* Responsive Breakpoint */
@media (max-width: 759px) {
  .main-layout {
    flex-direction: column;
  }

  .sidebar-left,
  .sidebar-right {
    display: none; /* Hide image nav */
  }

  .mobile-menu {
    display: block;
  }

  .mobile-toggle {
    display: block;
  }

  .content {
    padding: 15px;
  }

  .header {
    flex-wrap: wrap;
  }
  .header img {
    width: 100%;
    height: auto;
    max-width: 499px;
    margin: 0 auto;
  }

  .header img:first-child,
  .header img:last-child {
    display: none; /* Hide side art on mobile */
  }
}

/* Print/Accessibility */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}