/* Background */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-size: 95%;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    background-color: rgba(235, 241, 253)
}

/* Navigation Bar */
nav {
  background-color: rgba(0, 0, 0, 0.7);
  height: 60px;
  padding: 0px 20px;
  backdrop-filter: blur(5px);
  overflow: visible;
  display: flex;
  align-items: center;
}

/* Left logo */
.nav-left {
  flex: 1;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-right {
  flex: 1;
}

/* Logo image */
.logo {
    height: 80px;
    width: auto;
    cursor: pointer;
    flex-shrink: 0;
}

@media (max-width: 900px) {
  .nav-center a {
    margin: 0 15px;
    font-size: 16px;
  }
}

/* Center navigation links */
.nav-center a {
    color: white;
    text-decoration: none;
    margin: 0 25px;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s ease;
}

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
  white-space: nowrap;
}

/* Hover effect */
nav a:hover {
    color: #00bfff;
}

.page-title {
  font-family: 'Cinzel', serif;

  font-size: clamp(36px, 8vw, 72px);

  text-align: center;
  margin-top: 10px;

  color: #133074;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.content {
  max-width: 900px;
  margin: 60px auto;
  padding: 40px;

  text-align: center;

  background: rgba(168, 190, 211, 0.65); /* dark glass panel */
  border-radius: 16px;

  box-shadow: 0 0 40px rgba(0,0,0,0.8);
}

/* HERO SECTION */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  height: calc(100vh - 70px); /* full screen minus nav */
  text-align: center;
}

/* Big homepage logo */


.hero-logo {
  width: 55vw;
  max-width: 1000px;
  min-width: 350px;
  margin-bottom: 40px;
}

/* Tagline */

.tagline {
  font-size: 22px;
  color: #133074;
  max-width: 600px;
  line-height: 1.6;
  font-family: 'Cinzel', serif;
}

nav a {
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
  font-weight: 600;
}

.menu-button {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

.site-footer {
  text-align: center;
  padding: 15px 10px;
  font-size: 13px;
  color: #555;

  background-color: rgba(0, 0, 0, 0.05);
  border-top: 1px solid rgba(0,0,0,0.1);

  margin-top: auto;
}

.site-footer p {
  margin: 0;
}

ul {
  padding-left: 0;
  margin-left: 0;
  list-style-position: inside;
}

li {
  margin-left: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin-left: 0;
}



@media (max-width: 700px) {

  nav {
    justify-content: space-between;
    padding: 10px 15px;
  }

  .logo {
    height: 80px;
  }

  .menu-button {
    display: block;
  }

  .nav-center {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.9);
    flex-direction: column;
    text-align: center;
  }

  .nav-center a {
    display: block;
    padding: 15px 0;
    margin: 0;
    border-top: 1px solid rgba(255,255,255,0.2);
  }

  .nav-center.show {
    display: flex;
  }

  .content {
    max-width: 100%;
    margin: 16px 8px;
    padding: 22px 16px;
    border-radius: 14px;
  }

  .tagline {
    font-size: 18px;
  }

   .site-footer {
    font-size: 11px;
    padding: 12px 8px;
  }

}