/* college.css */

/* Base */
body {
  font-family: "Poppins", sans-serif;
  background: #f8f9fa;
  margin: 0;
  padding: 0;
  color: #222;
}

/* Floating Glass Navbar */
nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, 90%);
  padding: 0.8rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;

  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-radius: 18px;
}

.logo { font-weight: 600; color: #111; }
nav ul { list-style: none; display: flex; gap: 1rem; }
nav ul a { text-decoration: none; color: #222; padding: 6px 10px; border-radius: 10px; }
nav ul a:hover, nav ul a.active { background: rgba(0,0,0,0.08); }
.nav-icons { display: flex; gap: 0.9rem; }
.nav-icons a { color: #222; font-size: 1.1rem; transition: .25s; }
.nav-icons a:hover { color: #000; }

/* Header */
header {
  background: linear-gradient(135deg, #ffffff, #5c5d5e);
  color: white;
  padding: 100px 20px;
  text-align: center;
  margin-top: 80px; /* prevent overlap with navbar */
}
header h1 { font-size: 2.8rem; margin-bottom: 0.5rem; }

/* Sections */
section {
  padding: 60px 20px;
}
section h2 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
  color: #111;
  position: relative;
}
section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #444;
  margin-top: 8px;
  border-radius: 2px;
}

/* Lists */
ul {
  margin: 1rem 0;
  padding-left: 20px;
}
ul li { margin-bottom: 0.5rem; }

/* Screenshots / images */
.screenshot {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin: 15px 0;
  max-width: 100%;
}

/* Footer */
footer {
  background: #ffffff;
  color: rgb(113, 112, 112);
  text-align: center;
  padding: 20px;
}
footer a { color: white; text-decoration: none; }
footer a:hover { text-decoration: underline; }
