/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Color Palette */
:root {
  --accent: #896C6C;         /* deep taupe (headings, primary accent) */
  --accent-dark: #6f5555;    /* hover/darker accent */
  --soft-rose: #E5BEB5;      /* rose beige */
  --parchment: #EEE6CA;      /* pale sand (cards) */
  --ivory: #F5FAE1;          /* soft cream (bg) */
  --charcoal: #333333;       /* body text */
  --muted: #6b6b6b;
  --paper: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-soft: 0 6px 18px rgba(0,0,0,0.06);
}

body {
  background: var(--ivory) !important;
}
 
h1,h2,h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--accent);
}

p {
  color: var(--charcoal);
}

/* Top nav */
.top-nav {
  background-color: var(--paper);
  z-index: 2;   
  border-bottom: 2px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.nameplate{
  width: 90vw;
  margin: auto;
  height: 12vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.brand-mark{
  width: 42px;
  height: 42px;
  border-radius: 20%;
  background: linear-gradient(135deg,var(--accent),var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-weight: bold;
  box-shadow: var(--shadow-soft);
}

.brand a {
  text-decoration: none;
  color: var(--charcoal);
  font-weight: bold;
  transition: all 0.3s ease;
}

.brand a:hover {
  transform: translateY(-4px) scale(1.05);
}

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

.nav-links a {
  color: var(--accent);
  font-weight: bold;
  text-decoration: none;
  padding: 2rem;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
  transform: translateY(-4px) scale(1.05);
}


/* Samples Page Layout */
.samples-section {
  padding: 6rem;
  width: 80%;
  margin: auto;
}

.samples-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out forwards;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.samples-header h1 {
  font-size: 2.7rem;
  margin-bottom: 1rem;
}

.samples-header p {
  color: var(--muted);
  font-size: 1.3rem;
  width: 70%;
}

/* Categories */
.sample-category {
  margin-bottom: 4rem;
  align-items: center;
  text-align: center;
}

.sample-category h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

/* Sample cards */
.sample-card {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out forwards;
}

.sample-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(137, 108, 108, 0.3);
}

.sample-card h3 {
  margin-bottom: 1rem;
}

.toggle-btn {
  background: var(--accent);
  color: var(--paper);
  border: none;
  padding: 1rem;
  border-radius: 14px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.toggle-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.sample-text {
  display: none;
  animation: fadeInUp 0.4s ease-out forwards;
}

.text-block {
  background: var(--parchment);
  padding: 1rem;
  border-radius: 14px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-soft);
}

.text-block strong { 
  color: var(--accent-dark); 
}

/* Footer */
.footer {
  height: 20vh;
  padding: 2rem;
  color: var(--paper);
  background: var(--accent);
  text-align: center;
}

/* MOBILE */

/* Tablets (<= 992px) */
@media (max-width: 992px) {
  .nameplate {
    width: 95vw;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  .nav-links a {
    padding: 1rem;
  }

  .samples-section {
    padding: 4rem 2rem;
    width: 90%;
  }

  .samples-header h1 {
    font-size: 2.2rem;
  }

  .samples-header p {
    font-size: 1.1rem;
    width: 90%;
  }

  .sample-card {
    padding: 1.8rem;
  }

  .sample-category h2 {
    font-size: 1.5rem;
  }

  .footer {
    height: auto;
    padding: 2rem;
    font-size: 1rem;
  }
}

/* Phones (<= 600px) */
@media (max-width: 600px) {
  .nameplate {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
  }

  .brand {
    gap: 0.8rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand a {
    font-size: 1.1rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    font-size: 0.9rem;
  }

  .nav-links a {
    padding: 0.8rem;
  }

  .samples-section {
    padding: 3rem 1rem;
    width: 95%;
  }

  .samples-header h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .samples-header p {
    font-size: 1rem;
    line-height: 1.6rem;
    width: 100%;
  }

  .sample-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .sample-card h3 {
    font-size: 1.2rem;
  }

  .toggle-btn {
    width: 100%;
    padding: 0.9rem;
    font-size: 0.95rem;
  }

  .text-block {
    padding: 0.9rem;
    font-size: 0.95rem;
    line-height: 1.6rem;
  }

  .footer {
    font-size: 0.9rem;
    padding: 1.5rem;
  }
}
