/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* Simple sticky navbar */
.navbar {
  background-color:rgba(245, 243, 239, 0.85);
  padding: 16px 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  font-size: 1.25rem;
  font-family: 'Poppins', sans-serif;
  height: 60px;
  box-sizing: border-box;
  line-height: 35px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

.logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: #1a3659;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  margin-left: 24px;
  text-decoration: none;
  color: #1a3659;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #7d1f42;
}

.menu {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #1a3659;
}

.content {
  padding-top: 80px;
}

@media (max-width: 1000px) {
  .menu {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    right: 40px;
    background-color: rgba(245, 243, 239, 0.95);
    border: 1px solid #ccc;
    padding: 1rem;
    gap: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
  }

  .nav-links.show {
    display: flex;
  }
}