/* Top-level nav layout */

/* ============================================================
   TOP MENU (BLACK BAR)
============================================================ */
.top-menu {
  background: #000;
  height: 56px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 30px;
  box-sizing: border-box;
}

.top-menu ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.top-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.top-menu a:hover {
  color: #ffcc00;
}

/* Container layout */
.site-header {
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  height: 80px;
}

/* Logo */
.logo img {
  height: 50px;
  display: block;
  padding-left: 150px;
  padding-right: 120px;
}



/* Navigation */
.main-nav {
  flex-grow: 1;
  margin-left: 40px;
}



.nav-level-1 {
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0 20px;
  align-items: center;
  white-space: nowrap;
}

.nav-level-1 > li {
  position: relative;
}

.nav-level-1 > li > a {
  display: block;
  padding: 15px 0;
  text-decoration: none;
  font-weight: 600;
  color: #222;
}

/* Shared mega panel styling */

.mega-panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 50vw;
  background: #f8f8f8;
  padding: 40px;
  display: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Show on hover */
.has-mega:hover .mega-panel {
  display: block;
}

.mega-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 30px;
  text-transform: uppercase;
}

/* Grid layouts */
/* ---------------------------------------
   GRID UTILITY SYSTEM
   --------------------------------------- */

/* Base grid container */
.grid {
  display: grid;
  gap: 40px;          /* spacing between columns */
  width: 100%;
}
/* 1-column layout */
.grid-1 {
  grid-template-columns: 1fr;
}

/* 2-column layout */
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* 3-column layout */
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* 4-column layout */
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ---------------------------------------
   OPTIONAL: Column styling helpers
   --------------------------------------- */

.grid .col h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 700;
}

.grid .col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.grid .col ul li {
  margin-bottom: 8px;
}

.grid .col ul li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.grid .col ul li a:hover {
  color: #0066cc;
}

/* Action links */
.mega-grid .actions a.cta {
  color: #c3007b;
  font-weight: bold;
  text-transform: uppercase;
}
 
 /* Apply Now CTA */
.nav-cta .apply-now {
  display: flex;
  align-items: left;
  background: #c3007b;
  color: #fff;
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-cta .apply-now .icon {
  margin-right: 8px;
  font-size: 1.2rem;
}
/* Orange line across top */
.footer-top-line {
  height: 6px;
  background-color: #f47c20; /* GSU orange */
}

/* Footer layout */
.site-footer {
  background: white;
  color: black;
  padding: 40px 30px;
  font-size: 14px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/* Logo */
.footer-logo {
  height: 50px;
  margin-bottom: 20px;
}

/* Contact info */
.contact-info h4 {
  margin: 10px 0 5px;
  font-size: 1rem;
  color: #f47c20;
}

.contact-info p {
  margin: 0 0 15px;
  line-height: 1.5;
}

/* Social icons */
.footer-right h4 {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #f47c20;
}

.social-icons a {
  display: inline-block;
  margin-right: 12px;
  color: #eee;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #f47c20;
}