html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background-color: #FFC0CB;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: transparent;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.site-title-box {
  background-color: orange;
  border-radius: 8px;
  padding: 18px 32px 18px 24px;
  margin: 24px 0 0 24px;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.site-title {
  color: #003366; /* Dark blue */
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 1px;
}

nav {
  background: #111;
  border-radius: 8px;
  margin: 24px 24px 0 0;
  display: flex;
  gap: 12px;
  padding: 18px 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

nav button {
  padding: 10px 20px;
  border: none;
  background: transparent;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s, color 0.3s;
}

nav button:hover {
  background: #FF69B4; /* Hot pink on hover */
  color: #111;
}

@media (max-width: 700px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-title-box {
    margin: 24px auto 0 12px;
    padding: 12px 18px;
  }
  nav {
    margin: 18px 0 0 12px;
    padding: 12px 12px;
    flex-wrap: wrap;
    gap: 8px;
  }
}



main {
  flex: 1;
  max-width: 800px;
  margin: 30px auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.site-footer {
  background: #000;
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 16px 0 14px 0;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.10);
}

.footer-content {
  font-size: 1.08rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.site-footer a {
  color: #FF69B4;
  text-decoration: none;
  margin: 0 6px;
  transition: color 0.2s;
  font-weight: 500;
}

.site-footer a:hover {
  color: orange;
  text-decoration: underline;
}

@media (max-width: 700px) {
  .footer-content {
    flex-direction: column;
    gap: 4px;
    font-size: 0.98rem;
    text-align: center;
    padding: 0 8px;
  }
}
