/* ============================================================
   STYLE.CSS — Layout & component styles
   Colors/gradients come from themes.css — edit that file for palette changes.
   ============================================================ */

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

/* ── Reset & base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: transparent;
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Blurred image layer */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url('pics/Gradient.png') center / cover no-repeat;
  filter: blur(3px);
  transform: scale(1.02);
}

/* Pink-to-lilac gradient overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(160deg,
    rgba(249, 180, 220, 0.35) 0%,
    rgba(220, 160, 240, 0.28) 45%,
    rgba(185, 145, 245, 0.38) 100%
  );
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }


/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 64px;
  background: var(--bg-nav);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1.5px solid var(--border);
}

.nav-logo {
  font-family: 'Pacifico', cursive;
  font-size: 1.4rem;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(160, 100, 220, 0.55);
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-body);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--accent-primary); }


/* ── Scalloped wave dividers ──────────────────────────────── */
.wave-bottom {
  display: block;
  width: 100%;
  line-height: 0;
  margin-bottom: -2px;
}

.wave-bottom svg { display: block; }


/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 5% 40px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  background: rgba(180, 140, 230, 0.75);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
}

.hero h1 {
  font-family: 'Pacifico', cursive;
  font-size: clamp(3.5rem, 10vw, 7rem);
  color: var(--text-heading);
  line-height: 1.1;
  margin-bottom: 0.8rem;
  text-shadow: 3px 4px 0px rgba(180, 100, 220, 0.15);
}

.hero-logo {
  width: clamp(210px, 37.5vw, 390px);
  height: auto;
  mix-blend-mode: multiply;
  margin: 0 auto 0.5rem;
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(120, 60, 180, 0.35);
  max-width: 420px;
  margin: 0 auto 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Polaroid frames in hero */
.hero-polaroids {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.polaroid {
  background: white;
  padding: 10px 10px 28px;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  width: 160px;
  transition: transform 0.3s;
}

.polaroid:nth-child(1) { transform: rotate(-4deg); }
.polaroid:nth-child(2) { transform: rotate(2deg);  }
.polaroid:nth-child(3) { transform: rotate(-2deg); }

.polaroid:hover { transform: rotate(0deg) scale(1.05) !important; }

.polaroid-img {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--deco-pink), var(--deco-purple));
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  overflow: hidden;
}

.polaroid-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.polaroid-label {
  text-align: center;
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}


/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--accent-primary);
  color: var(--text-on-accent);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: var(--bg-card);
  color: var(--accent-primary);
  border: 2px solid var(--accent-primary);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  background: var(--accent-soft);
  transform: translateY(-3px);
}


/* ── Section base ─────────────────────────────────────────── */
.section {
  padding: 70px 5% 80px;
  position: relative;
}

.section-light  { background: none; }
.section-purple { background: none; }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  color: var(--accent-primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.section-header h2 {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-heading);
  text-shadow: 2px 3px 0px rgba(180, 100, 220, 0.12);
}

#about .section-header h2 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  text-shadow: none;
}

.section-header p {
  margin-top: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}


/* ── About ────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.about-frame {
  position: relative;
}

.about-image {
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(160, 100, 220, 0.28), 0 4px 12px rgba(0,0,0,0.10);
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--deco-pink), var(--deco-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  border: 4px solid white;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sticker decoration on photo */
.about-sticker {
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 60px; height: 60px;
  background: var(--deco-lilac);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: var(--shadow-md);
  border: 3px solid white;
  animation: wobble 3s ease-in-out infinite;
}

.about-card {
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem 2.5rem 3.8rem;
  box-shadow: 0 14px 40px rgba(160, 100, 220, 0.22), 0 4px 14px rgba(0,0,0,0.08);
  border: none;
  position: relative;
  overflow: visible;
  background-color: #fdf5ff;
  background-image:
    linear-gradient(to right,
      transparent 46px, #b89edc 46px, #b89edc 48px,
      transparent 48px, transparent 54px, #b89edc 54px, #b89edc 56px,
      transparent 56px
    ),
    repeating-linear-gradient(
      transparent 0px, transparent 31px,
      rgba(185, 120, 210, 0.22) 31px, rgba(185, 120, 210, 0.22) 32px
    );
}

.about-card-wrap {
  position: relative;
}

.about-pushpin {
  position: absolute;
  top: -24px;
  right: -10px;
  width: 56px;
  pointer-events: none;
  filter: drop-shadow(0 2px 5px rgba(120,60,180,0.25));
  transform: scaleX(-1);
  z-index: 10;
}

.about-card h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 1rem;
}

.about-card p {
  color: var(--text-body);
  font-size: 0.96rem;
  margin-bottom: 0.85rem;
  font-weight: 500;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.skill-tag {
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  color: var(--accent-purple);
  font-size: 0.82rem;
  font-weight: 700;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}


/* ── Portfolio grid ───────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.6rem;
  max-width: 1100px;
  margin: 0 auto;
}

.portfolio-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s, background 0.2s;
}

.portfolio-card:hover {
  transform: translateY(-8px) rotate(0.5deg);
  box-shadow: var(--shadow-lg);
  background: var(--bg-card-hover);
}

.card-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--deco-pink), var(--deco-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 3rem;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.portfolio-card:hover .card-image img { transform: scale(1.06); }

.card-body {
  padding: 1.2rem 1.4rem 1.5rem;
}

.card-body h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.35rem;
}

.card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.card-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}

.card-tag {
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: var(--accent-primary);
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid var(--border);
}


/* ── Blob category buttons ────────────────────────────────── */
.blob-row {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.blob-btn {
  width: 130px; height: 130px;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--text-heading);
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
}

.blob-btn:hover {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: var(--shadow-lg);
}

.blob-btn .blob-icon { font-size: 1.6rem; }

.blob-btn.pink   { background: rgba(255, 179, 217, 0.5); }
.blob-btn.purple { background: rgba(212, 170, 255, 0.5); }
.blob-btn.lilac  { background: rgba(184, 174, 255, 0.5); }
.blob-btn.yellow { background: rgba(255, 233, 153, 0.5); }


/* ── Contact ──────────────────────────────────────────────── */
.contact-box {
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border);
  text-align: center;
}

.contact-box p {
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 2rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.3rem;
  border-radius: var(--radius-pill);
  background: var(--bg-section-light);
  border: 1.5px solid var(--border);
  color: var(--text-body);
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.contact-link:hover {
  background: var(--accent-soft);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  transform: translateX(5px);
}

.contact-link-icon { font-size: 1.25rem; line-height: 1; }
.contact-link-icon img { width: 22px; height: 22px; object-fit: contain; display: inline-block; vertical-align: middle; }


/* ── UGC Projects section ─────────────────────────────────── */
.ugc-section .section-header h2 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

.ugc-section .section-header p {
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(120, 60, 180, 0.35);
}

.ugc-section {
  padding: 70px 5% 90px;
  position: relative;
}

/* Brand subsection */
.brand-section {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
}

.brand-section:last-child { margin-bottom: 0; }

.brand-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
  padding-bottom: 0.9rem;
  border-bottom: 2px solid var(--border);
}

.brand-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.brand-title h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}

.brand-title p {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.80);
  margin-top: 2px;
}

.brand-count {
  margin-left: auto;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  border: 1.5px solid var(--border);
  white-space: nowrap;
}

/* UGC slider wrapper */
.ugc-slider-wrap {
  position: relative;
}

/* UGC item slider */
.ugc-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 6px;
}

.ugc-grid::-webkit-scrollbar { display: none; }

/* Slider arrow buttons */
.slider-btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  width: 38px; height: 38px;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  padding: 0;
}

.slider-btn:hover {
  background: var(--accent-soft);
  box-shadow: var(--shadow-lg);
  transform: translateY(-50%) scale(1.12);
}

.slider-btn-prev { left: -20px; }
.slider-btn-next { right: -20px; }

/* UGC item card (whole card is a link) */
.ugc-card {
  display: block;
  flex: 0 0 calc((100% - 7 * 1rem) / 8);
  min-width: 120px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform 0.22s, box-shadow 0.22s, background 0.18s;
}

.ugc-card:hover {
  transform: translateY(-6px) rotate(0.4deg);
  box-shadow: var(--shadow-lg);
  background: var(--bg-card-hover);
}

.ugc-card-img {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--deco-pink), var(--deco-purple));
  overflow: hidden;
  position: relative;
}

.ugc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s, transform 0.35s;
  opacity: 0;
}

.ugc-card-img img.loaded {
  opacity: 1;
}

.ugc-card:hover .ugc-card-img img { transform: scale(1.06); }

/* Shimmer loading state */
.ugc-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.35) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  pointer-events: none;
}

.ugc-card-img.img-loaded::after { display: none; }

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

.ugc-card-info {
  padding: 0.65rem 0.75rem 0.8rem;
}

.ugc-name {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-heading);
  line-height: 1.35;
  margin-bottom: 0.45rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Price badges */
.ugc-price {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.73rem;
  font-weight: 800;
}

.ugc-price.paid {
  background: var(--accent-soft);
  color: var(--accent-primary);
  border: 1px solid var(--border);
}

.ugc-price.free {
  background: #d1fae5;
  color: #059669;
  border: 1px solid #6ee7b7;
}

.ugc-price.offsale {
  background: #f3f4f6;
  color: #6b7280;
  border: 1px solid #d1d5db;
}

/* Robux R$ icon */
.robux-icon {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

/* Brand accent bar — left border colour per brand */
.brand-spongebob .brand-header { border-bottom-color: #fbbf24; }
.brand-barbie    .brand-header { border-bottom-color: #f472b6; }
.brand-adidas    .brand-header { border-bottom-color: var(--accent-purple); }
.brand-medal     .brand-header { border-bottom-color: var(--accent-primary); }

.brand-spongebob .brand-title h3,
.brand-barbie    .brand-title h3,
.brand-adidas    .brand-title h3,
.brand-medal     .brand-title h3 { color: #ffffff; }

/* Responsive */
@media (max-width: 768px) {
  .ugc-card { flex: 0 0 calc((100% - 3 * 1rem) / 4); }
  .slider-btn { display: none; }
}

@media (max-width: 480px) {
  .ugc-card { flex: 0 0 calc((100% - 1rem) / 2.5); }
}


/* ── Floral divider ───────────────────────────────────────── */
.floral-divider {
  width: 100%;
  line-height: 0;
  margin: -20px 0;
  position: relative;
  z-index: 1;
}

.floral-divider img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Recent Work section ──────────────────────────────────── */
#recent-work .section-header p { color: #ffffff; text-shadow: 0 1px 6px rgba(120, 60, 180, 0.35); }
.recent-work-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}

.recent-work-cta {
  text-align: center;
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .recent-work-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 500px) {
  .recent-work-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ── Footer ───────────────────────────────────────────────── */
.footer {
  padding: 2rem 5%;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.25);
  border-top: 1.5px solid var(--border);
}


/* ── Decorative image elements ────────────────────────────── */
.deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.deco-butterfly {
  animation: float 5s ease-in-out infinite;
}

.deco-butterfly.delay-1 { animation-delay: 0.8s; }
.deco-butterfly.delay-2 { animation-delay: 1.6s; }
.deco-butterfly.delay-3 { animation-delay: 2.4s; }
.deco-butterfly.delay-4 { animation-delay: 3.2s; }

.deco-sparkle {
  animation: twinkle 2.5s ease-in-out infinite;
}

.deco-flower {
  animation: float 4.5s ease-in-out infinite;
}

.deco-flower.delay-1 { animation-delay: 0.6s; }
.deco-flower.delay-2 { animation-delay: 1.2s; }
.deco-flower.delay-3 { animation-delay: 1.8s; }
.deco-flower.delay-4 { animation-delay: 2.4s; }
.deco-flower.delay-5 { animation-delay: 3.0s; }

.deco-sparkle.delay-1 { animation-delay: 0.5s; }
.deco-sparkle.delay-2 { animation-delay: 1.0s; }
.deco-sparkle.delay-3 { animation-delay: 1.5s; }
.deco-sparkle.delay-4 { animation-delay: 2.0s; }
.deco-sparkle.delay-5 { animation-delay: 2.5s; }


/* ── Keyframe animations ──────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg);   }
  50%       { transform: translateY(-14px) rotate(5deg); }
}

@keyframes wobble {
  0%, 100% { transform: rotate(-8deg); }
  50%       { transform: rotate(8deg);  }
}

@keyframes spin-slow {
  from { transform: rotate(0deg);   }
  to   { transform: rotate(360deg); }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50%       { opacity: 1;   transform: scale(1.2); }
}


/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image { aspect-ratio: 3/2; }

  .nav-links { display: none; }

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

  .contact-box { padding: 2rem 1.5rem; }

  .hero-polaroids { gap: 1rem; }
  .polaroid { width: 130px; }
}
