/* Reset and base styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  background: linear-gradient(to right, #9cd3fc, #007bff);
  min-height: 100vh;
  color: white;
}

/* Top nav */
.top-nav {
  background: transparent;
  padding: 1rem 2rem;
}

.top-nav ul {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  list-style: none;
  font-size: 0.9rem;
}

.top-nav a {
  text-decoration: none;
  color: white;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.top-nav a:hover {
  border-color: white;
}

/* Centered layout */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  height: calc(100vh - 80px);
  padding: 2rem;
  flex-wrap: wrap;
}

/* Logo Section */
.logo-section {
  text-align: center;
}

.logo h1 {
  font-size: 4rem;
  color: #001f3f;
}

.logo h2 {
  font-size: 2.5rem;
  color: white;
  margin-top: -10px;
}

.subtitle {
  font-size: 0.9rem;
  letter-spacing: 0.2rem;
  margin-top: 0.5rem;
}

/* Menu Box */
.menu-box {
  background-color: #0056d2;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 5px 5px 0 #003e99;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 300px;
  align-items: center;
}

.menu-box a {
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border: 1px dotted white;
  border-radius: 25px;
  color: white;
  font-size: 0.9rem;
  text-align: center;
  transition: background 0.3s, color 0.3s;
}

.menu-box a:hover {
  background-color: white;
  color: #0056d2;
}
