/* ==========================================================
   Liz Johnston — portfolio
   Palette: soft lavender paper, dusty rose, sage, honey
   ========================================================== */

   
:root {
  --bg: #f8f4f9;
  --paper: #fffdf9;
  --ink: #362c3c;
  --ink-soft: #6b5e71;
  --ink-faint: #948a99;

  --rose: #c97b93;
  --rose-soft: #f3dde4;
  --sage: #6f9a80;
  --sage-soft: #dcecdf;
  --honey: #d79a2e;
  --honey-soft: #f8e7c4;
  --lavender: #8272ab;
  --lavender-soft: #e6e0f3;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 999px;

  --shadow-sm: 0 6px 16px -8px rgba(54, 44, 60, 0.18);
  --shadow-md: 0 14px 34px -14px rgba(54, 44, 60, 0.28);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Mulish", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0 0 0.5em;
  color: var(--ink);
}

a { color: var(--rose); }
a:focus-visible,
button:focus-visible,
.filter:focus-visible {
  outline: 3px solid var(--lavender);
  outline-offset: 3px;
  border-radius: 6px;
}

img { max-width: 100%; display: block; }

.content {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------------- Hero ---------------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 24px 120px;
  background:
    radial-gradient(circle at 12% 18%, var(--sage-soft) 0%, transparent 42%),
    radial-gradient(circle at 88% 12%, var(--honey-soft) 0%, transparent 38%),
    radial-gradient(circle at 80% 85%, var(--lavender-soft) 0%, transparent 45%),
    var(--paper);
  text-align: center;
}

/*
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.55;
  filter: blur(2px);
}

.hero::before {
  width: 220px;
  height: 220px;
  top: -60px;
  left: -60px;
  background: var(--rose-soft);
}

.hero::after {
  width: 160px;
  height: 160px;
  bottom: -50px;
  right: 6%;
  background: var(--sage-soft);
}*/

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0 auto;
}

.hero-name {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  letter-spacing: 0.01em;
}

.hero-name .accent {
  color: var(--rose);
  font-style: italic;
}

.hero-namelogo {
    
}

.tagline {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin: 0 0 28px;
}

/* the little "status" badge — the signature element */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--paper);
  border: 1.5px dashed var(--rose);
  color: var(--ink);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  transform: rotate(-2deg);
  box-shadow: var(--shadow-sm);
}

.status-badge .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px var(--sage-soft);
  flex: none;
}

/* ---------------- Nav ---------------- */

.main-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 8px;
  background: rgba(248, 244, 249, 0.85);
  backdrop-filter: blur(8px);
  padding: 14px 12px;
  border-bottom: 1px solid var(--lavender-soft);
}

.main-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
  background: var(--rose-soft);
  color: var(--ink);
}

/* ---------------- Sections ---------------- */

.section {
  padding: 76px 0;
}

.section h2 {
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  text-align: center;
  margin-bottom: 12px;
}

.section h2::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin: 14px auto 0;
  background: var(--honey);
  border-radius: 2px;
}

/* ---------------- About ---------------- */

.about .content {
  max-width: 680px;
  text-align: center;
}

.about p {
  font-size: 1.08rem;
  color: var(--ink-soft);
}

.about-note {
  margin-top: 30px;
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--sage);
  text-align: left;
  color: var(--ink);
  font-size: 0.98rem;
}

.about-note strong { color: var(--sage); }

/* ---------------- Portfolio ---------------- */

.portfolio {
  background: var(--paper);
}

.filters {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 40px;
  padding: 0;
}

.filter {
  cursor: pointer;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid transparent;
  transition: all 0.2s ease;
  user-select: none;
}

.filter:hover {
  border-color: var(--rose);
  color: var(--ink);
}

.filter.active {
  background: var(--rose);
  color: #fff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  overflow: hidden;
  transition: height 0.35s ease;
}

.portfolio-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.portfolio-card a { display: block; position: relative; }

.portfolio-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.status-pill {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.status-pill.status-live { background: var(--sage); }
.status-pill.status-dead { background: var(--ink-faint); }
.status-pill.status-concept { background: var(--honey); }

.portfolio-card h3 {
  font-size: 1.05rem;
  margin: 16px 18px 4px;
}

.portfolio-card .notes {
  margin: 0 18px 8px;
  font-size: 0.85rem;
  color: var(--ink-faint);
}

.visit-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 18px 18px;
  color: var(--sage);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
}

.visit-link span { transition: transform 0.2s ease; }

.visit-link:hover span { transform: translateX(3px); }
.visit-link:hover { color: var(--ink); }

.portfolio-item.web-design .portfolio-card h3::before,
.portfolio-item.logo-design .portfolio-card h3::before,
.portfolio-item.print-design .portfolio-card h3::before,
.portfolio-item.art-other .portfolio-card h3::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

.portfolio-item.web-design .portfolio-card h3::before { background: var(--sage); }
.portfolio-item.logo-design .portfolio-card h3::before { background: var(--honey); }
.portfolio-item.print-design .portfolio-card h3::before { background: var(--rose); }
.portfolio-item.art-other .portfolio-card h3::before { background: var(--lavender); }

/* ---------------- Contact ---------------- */

.contact .content {
  max-width: 560px;
  text-align: center;
}

.contact p { color: var(--ink-soft); font-size: 1.05rem; }

.social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
  background: var(--paper);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  background: var(--rose-soft);
}

.social-links svg { color: var(--rose); }

/* ---------------- Footer ---------------- */

.footer {
  text-align: center;
  padding: 30px 20px 40px;
  color: var(--ink-faint);
  font-size: 0.85rem;
}

/* ---------------- Responsive ---------------- */

/* Tablet */
@media (max-width: 860px) {
  .content { padding: 0 20px; }
  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
}

/* Phones */
@media (max-width: 600px) {
  body { font-size: 16px; }

  .hero { padding: 56px 18px 76px; }
 /* .hero::before { width: 140px; height: 140px; top: -40px; left: -40px; }
  .hero::after { width: 110px; height: 110px; bottom: -30px; right: 4%; } */

  .hero-name { font-size: clamp(1.9rem, 9vw, 2.6rem); }
  .tagline { font-size: 1rem; margin-bottom: 22px; }

  .status-badge {
    font-size: 0.82rem;
    padding: 9px 14px;
    text-align: left;
    white-space: normal;
  }

  .main-nav {
    gap: 2px;
    padding: 10px 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
  }
  .main-nav a {
    padding: 8px 14px;
    font-size: 0.88rem;
    white-space: nowrap;
    flex: none;
  }

  .section { padding: 48px 0; }
  .section h2 { font-size: 1.5rem; }

  .about-note { padding: 18px 20px; font-size: 0.94rem; }

  .filters { gap: 8px; margin-bottom: 28px; }
  .filter { padding: 8px 16px; font-size: 0.85rem; }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .portfolio-card h3 { font-size: 1rem; margin: 14px 16px 4px; }
  .portfolio-card .notes { margin: 0 16px 6px; font-size: 0.82rem; }
  .visit-link { margin: 0 16px 16px; font-size: 0.84rem; }

  .status-pill { font-size: 0.66rem; padding: 3px 8px; top: 8px; right: 8px; }

  .social-links { gap: 10px; }
  .social-links a { padding: 9px 14px; font-size: 0.86rem; }

  .footer { padding: 24px 16px 32px; font-size: 0.8rem; }
}

/* Small phones */
@media (max-width: 380px) {
  .hero { padding: 48px 14px 64px; }
  .hero-name { font-size: 1.7rem; }
  .content { padding: 0 16px; }
  .filters { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .filter { flex: none; }
}



.contentrip-box {
  height: auto;
  overflow: hidden;
  padding: 10px;
  background: #fff;
  box-shadow: 0 3px 5px rgba(0, 0, 0,  0.25);
  transform: rotate(-3deg);
  margin-top: -4rem;
}
.contentrip-box:before, 
.contentrip-box:after {
  content: "";
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  -webkit-clip-path: polygon(0% 0%, 5% 100%, 10% 0%, 15% 100%, 20% 0%, 25% 100%, 30% 0%, 35% 100%, 40% 0%, 45% 100%, 50% 0%, 55% 100%, 60% 0%, 65% 100%, 70% 0%, 75% 100%, 80% 0%, 85% 100%, 90% 0%, 95% 100%, 100% 0%);
}
 .contentrip-box:before {
  background-color: #eee;
  top: 0;
}
 .contentrip-box:after {
  background-color: #fff;
  bottom: -2px;
}





.retired-note {
    font-family: "Caveat", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;

    position: relative;
    display: inline-block;
    max-width: 420px;

    background: #fffdf5;
    
    color: #444;

    padding: 1.75rem;
    margin-top: -3rem;

    transform: rotate(-2deg);

    box-shadow:
        0 10px 25px rgba(0,0,0,.18),
        inset 0 0 0 1px rgba(0,0,0,.06);

}

/* torn edges */
.retired-note::before,
.retired-note::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    height:12px;

    background:
      linear-gradient(-45deg, transparent 8px, #fffdf5 0) 0 0/16px 100% repeat-x;
}

.retired-note::before{
    top:-10px;
    transform:rotate(180deg);
}

.retired-note::after{
    bottom:-10px;
}

/* tape */
.retired-note::marker{
    display:none;
}

.retired-note:after,
.retired-note:before{}

.retired-note .note-label{
    display:inline-block;
    padding: 0;

    transform:rotate(-4deg);

    margin: 0;
}

.retired-note p{
    margin:0 0 1.25rem;
    font-size:1.45rem;
    line-height:1.2;
}

.retired-note strong{
    font-size:1.8rem;
}

.note-button{
    display:inline-block;

    padding:.65rem 1.3rem;

    border-radius:999px;

    background:var(--ink-soft);
    color:white;
    text-decoration:none;

  font-family: "Caveat", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;

    transition:.2s;
}

.note-button:hover{
    transform:translateY(-2px);
    background:var(--rose);
}

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


.caveat-note {
  font-family: "Caveat", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}





