/* NAVIGATION BAR */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #c71585;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

/* LOGO */
nav .logo img {
  height: 50px;
  width: auto;
}

/* NAV BUTTONS CONTAINER */
.monkey-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* NAV BUTTONS */
.nav-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-button {
  background: #c71585;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
  text-decoration: none;
}

.nav-button:hover {
  background: #f59e0b;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 38px;
  right: 0;
  background: #222;
  min-width: 220px;
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  padding: 10px;
  z-index: 999;
}

.dropdown-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-content li {
  margin: 5px 0;
}

.dropdown-content li a {
  color: #fff;
  text-decoration: none;
  padding: 5px 8px;
  display: block;
  border-radius: 4px;
}

.dropdown-content li a:hover {
  background: #ff6f91;
}

.dropdown-content .close-dropdown {
  display: block;
  background: #ff4c4c;
  color: #fff;
  border: none;
  padding: 4px 6px;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 8px;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  background: none;
  font-size: 28px;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 1100; /* stays above menu */
  position: relative;
}

/* MOBILE NAV (full-screen overlay) */
@media (max-width: 768px) {
  .nav-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    background: rgba(26, 26, 26, 0.95);
    gap: 20px;

    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
  }

  .nav-buttons.active {
    transform: translateY(0);
  }

  .hamburger {
    display: block;
  }

  /* Bigger nav links for overlay menu */
  .nav-button {
    font-size: 20px;
    padding: 12px 18px;
    background: transparent;
  }
}

/* GENERAL STYLES */
body {
  font-family: "Noto Sans", sans-serif;
  margin: 40px;
  background:#fefefe;
}

.font-card { border:1px solid #ccc; padding:10px; margin-bottom:12px; border-radius:8px; }
.font-card h3 { margin:0 0 6px; }
.font-card p { font-size:28px; margin:0 0 6px; }
a.download-btn { text-decoration:none; background:#ff9a9e; color:#fff; padding:5px 10px; border-radius:6px; }
textarea { width:100%; height:80px; margin-bottom:20px; font-size:28px; }

.font-info {
  background-color: #f9f9f9;
  padding: 20px 25px;
  border-radius: 10px;
  margin-bottom: 30px;
  line-height: 1.8;
  font-family: "Noto Sans", sans-serif;
  font-size: 18px;
  max-width: 100%;
}
.font-info h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #333;
}
.font-info p {
  font-size: 16px;
  margin-bottom: 12px;
  min-height: 50px;
  color: #555;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #6b7280;
}

.footer-parallax{
  position: relative;
  background-image: url('../images/wave.svg');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 3rem 1.5rem 1rem;
  z-index: 1;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.footer-overlay {
  background: rgba(0, 0, 0, 0.1);
  padding: 2rem;
  border-radius: 15px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: left;
}

.footer-section h2, .footer-section h3 {
  color: yellowgreen;
  margin-bottom: 1rem;
}

.footer-section p, .footer-section ul li a {
  color: #111827;
  font-size: 0.95rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 0.5rem 0;
}

.footer-section ul li a {
  color: #111827;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #f59e0b;
  text-shadow: 0 0 10px #00ffc8;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  border-top: 1px solid #444;
  padding-top: 1rem;
  color: #111827;
}

.footer-bottom .social-icons {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.footer-bottom .social-icons a {
  color: black;
  font-size: 1.2rem;
  transition: color 0.3s, transform 0.3s;
}

.footer-bottom .social-icons a:hover {
  color: #00ff00;
  transform: scale(1.2);
}
.article-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin: 20px 0;
}

.article-image {
  flex: 0 0 150px;
}

.article-image img {
  width: 150px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.article-text {
  flex: 1;
}

/* Single article full-width image */
.single-article-image img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}
