:root {
  --blue: #0047ab;
  --red: #e63946;
  --yellow: #f4d35e;
  --white: #ffffff;
  --dark-blue: #002855;
}

/* Header Base */
  .site-header {
      background: linear-gradient(to right, var(--blue), var(--red));
      padding: 0.5rem 1.5rem;
      color: var(--white);
      position: relative;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      z-index: 1000;
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .logo-wrapper {
      background-color: var(--white);
      padding: 6px 12px;
      border-radius: 8px;
      display: flex;
      align-items: center;
    }

    .logo-img {
      height: 90px;
      width: auto;
    }

/* Nav styles */
.nav-menu {
  display: flex;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--yellow);
  text-decoration: none;
  font-weight: bold;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  transition: background 0.3s, color 0.3s;
}

.nav-link:hover,
.nav-link:focus {
  background-color: var(--yellow);
  color: var(--blue);
}

/* Dropdown Menu */
.has-dropdown {
  position: relative;
}

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

.dropdown {
  display: none;
  position: absolute;
  top: 50%;
  left: 0;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  min-width: 200px;
  z-index: 1001;
}

.dropdown li {
  border-bottom: 1px solid #eee;
}

.dropdown li:last-child {
  border-bottom: none;
}

.dropdown a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--dark-blue);
  font-weight: 500;
  text-decoration: none;
}

.dropdown a:hover {
  background-color: var(--yellow);
  color: var(--blue);
}

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--yellow);
  font-size: 2rem;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    width: 100%;
  }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav-list li {
    width: 100%;
    position: relative;
  }

.nav-link {
  padding: 0.6rem 1rem;
  display: block; /* add this to ensure full clickable area */
}
.dropdown {
  top: calc(100% - 1px); /* helps avoid flicker by overlapping */
}



  .dropdown {
  display: none;
  position: absolute;
  top: 100%; /* exactly below the parent */
  left: 0;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  min-width: 220px;
  z-index: 1001;
}


  .dropdown a {
    padding-left: 2rem;
  }
}
/* Lyons*/
/* Section background styling */
/* Make section act as a flex container */
.u-section-1 {
  background-image: url('images/interviewrequest.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px; /* adjust as needed */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
}

/* Optional dark overlay for readability */
.u-section-1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

/* Make sure content is above overlay */
.u-sheet-1 {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
}

/* Flex container for buttons */
.regRow {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

/* Common button styles */
.regButton,
.regButton-1 {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Button color variations */
.regButton-new {
  background-color: var(--blue);
}

.regButton-returning {
  background-color: var(--red);
}

.regButton-summer {
  background-color: var(--yellow);
  color: #002855;
}

/* Hover effects */
.regButton:hover,
.regButton-1:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .regRow {
    flex-direction: column;
    gap: 1rem;
  }

  .regButton,
  .regButton-1 {
    width: 100%;
    max-width: 280px;
  }
}

/* drowbown add on */

@media (max-width: 768px) {
  .has-dropdown .dropdown {
    display: none;
  }

  .has-dropdown.dropdown-open .dropdown {
    display: block;
    position: static; /* make it inline in mobile view */
    box-shadow: none;
    padding-left: 1rem;
  }

  .dropdown a {
    padding-left: 1.5rem;
    display: block;
    background-color: #fff;
    border-bottom: 1px solid #eee;
  }
}

/* special info title */
.special-info {
  text-align: center;
}

#special-info-title2 {
  color: black;
}
/* Footer styles */
