/* ═══════════════════════════════════════
   TERRYS — Navigation
═══════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-height);
  background: rgba(245,242,235,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border2);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}

.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}

/* ─── LOGO ─── */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.nav__logo-divider {
  width: 1px;
  height: 22px;
  background: var(--border);
}

.nav__logo-product {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--forest);
  letter-spacing: -0.3px;
  font-style: italic;
}

/* ─── LINKS ─── */
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 14px;
  font-weight: 400;
  color: var(--text2);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 0;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--forest);
  transform: scaleX(0);
  transition: transform 0.2s;
  transform-origin: left;
}

.nav__link:hover { color: var(--forest); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__link--has-arrow::after { display: none; }
.nav__link--has-arrow .arrow {
  font-size: 10px;
  opacity: 0.4;
  transition: transform 0.2s;
}
.nav__link--has-arrow:hover .arrow { transform: rotate(180deg); opacity: 0.7; }

/* ─── ACTIONS ─── */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ─── MOBILE TOGGLE ─── */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__burger span {
  width: 22px; height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: var(--tr-base);
  display: block;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .nav__inner { padding: 0 24px; }
  .nav__links  { display: none; }
  .nav__actions .btn--outline { display: none; }
  .nav__burger { display: flex; }
}

/* ─── TERRYS QUILL WORDMARK ─── */

/* Import Parisienne — écriture plume élégante */
@import url('https://fonts.googleapis.com/css2?family=Parisienne&display=swap');

.terrys-quill {
  font-family: 'Parisienne', cursive;
  font-weight: 400;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* Plume SVG après le mot via pseudo-element */
.terrys-quill::after {
  content: '';
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  margin-left: 3px;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20.71 4.04c.39-.39.39-1.02 0-1.41-.39-.39-1.02-.39-1.41 0L4 18l-.71 2.71 2.71-.71L20.71 4.04z' fill='%23e84e1b' opacity='0.85'/%3E%3Cpath d='M17.5 2.5C19 1 22 2 22 4c-2 0-3.5 1.5-4 2L8 16l-2-2L17.5 2.5z' fill='%23e84e1b' opacity='0.4'/%3E%3Cpath d='M4 18l-.5 2.5 2.5-.5' stroke='%23e84e1b' stroke-width='1' stroke-linecap='round' stroke-linejoin='round' fill='none' opacity='0.7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Légère animation au survol du logo */
.nav__logo:hover .terrys-quill::after {
  transform: rotate(-12deg) scale(1.15);
  opacity: 1;
}

/* Taille dans la nav header */
.nav__logo-product.terrys-quill {
  font-size: 24px;
  color: var(--forest);
}

/* Taille dans le footer */
.footer__brand-product.terrys-quill {
  font-size: 22px;
  color: var(--white);
}

/* La plume est orange dans le footer aussi mais plus visible */
.footer__brand-product.terrys-quill::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20.71 4.04c.39-.39.39-1.02 0-1.41-.39-.39-1.02-.39-1.41 0L4 18l-.71 2.71 2.71-.71L20.71 4.04z' fill='%23ff7040' opacity='0.9'/%3E%3Cpath d='M17.5 2.5C19 1 22 2 22 4c-2 0-3.5 1.5-4 2L8 16l-2-2L17.5 2.5z' fill='%23ff7040' opacity='0.35'/%3E%3Cpath d='M4 18l-.5 2.5 2.5-.5' stroke='%23ff7040' stroke-width='1' stroke-linecap='round' stroke-linejoin='round' fill='none' opacity='0.75'/%3E%3C/svg%3E");
}
