/* =================================
   GLOBAL / SHARED SITE STYLES
================================= */

/* =================================
   GLOBAL
================================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  background-color: #fff;
}

main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}

h1,
h2,
h3 {
  margin-bottom: 20px;
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
}

img {
  width: 200px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
}

.logo {
  width: 420px;
  max-width: 90%;
  height: auto;
  display: block;
  margin: 10px auto 8px;
}


/* =================================
   SITE HEADER / NAVIGATION
================================= */

/* =================================
   SITE HEADER / NAVIGATION
================================= */

.site-header {
  width: 100%;
  background: white;
  padding: 14px 24px;
  border-bottom: 3px solid red;

  position: static;

  z-index: 999;
}

#nav-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}

#nav-menu a {
  color: black;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

#nav-menu a:hover {
  color: red;
}



.primary-cta,
.secondary-cta {
  display: inline-block;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
}

.primary-cta {
  padding: 14px 26px;
  background: red;
  color: white;
  transition: transform 0.2s ease, background 0.2s ease;
}

.primary-cta:hover {
  background: darkred;
  transform: translateY(-2px);
}

.secondary-cta {
  padding: 12px 24px;
  border: 2px solid black;
  color: black;
}

.secondary-cta:hover {
  border-color: red;
  color: red;
}


/* =================================
   RETURN HOME BUTTON
================================= */

.return-home {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
  padding: 10px 15px;
  background-color: black;
  color: red;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.return-home:hover {
  background-color: red;
  color: white;
}



/* =================================
   FOOTER
================================= */

footer {
  margin-top: 80px;
  padding: 30px 20px;
  border-top: 1px solid #eee;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

.footer-links a {
  color: #333;
  text-decoration: none;
}

.footer-links a:hover {
  color: red;
}



.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropbtn {
  background: none;
  border: none;
  padding: 0;

  color: black;
  font: inherit;
  font-weight: 600;

  cursor: pointer;
}

.nav-dropbtn:hover {
  color: red;
}

.nav-dropdown-content {
  display: none;

  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);

  min-width: 180px;
  padding: 10px 0;

  background: white;

  border: 1px solid #ddd;
  border-top: 3px solid red;

  border-radius: 8px;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);

  z-index: 1000;
}

.nav-dropdown-content a {
  display: block;

  padding: 12px 18px;

  color: black;
  text-align: left;
  text-decoration: none;

  white-space: nowrap;
}

.nav-dropdown-content a:hover {
  background: #f8f8f8;
  color: red;
}

.nav-dropdown:hover .nav-dropdown-content {
  display: block;
}

.nav-dropdown.open .nav-dropdown-content {
  display: block;
}


@media (max-width: 768px) {
  #nav-menu {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
}
