/* Container for consistent header/nav layout */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* ===== SPRAY PAINT CURSOR ===== */
   
html {
  background: #0e0e0e;
}
body > * {
  position: relative;
  z-index: 1;
}
html {
  scroll-behavior: smooth;
}



body {
  cursor: url("data:image/svg+xml;utf8,\
  <svg xmlns='http://www.w3.org/2000/svg' width='32' height='32'>\
    <circle cx='16' cy='16' r='6' fill='%23ff8a00' opacity='0.7'/>\
    <circle cx='10' cy='14' r='2' fill='%23ff8a00' opacity='0.5'/>\
    <circle cx='20' cy='18' r='1.5' fill='%23ff8a00' opacity='0.4'/>\
  </svg>") 16 16, auto;
}


body {
  background: transparent;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  
  cursor: url("data:image/svg+xml;utf8,\
  <svg xmlns='http://www.w3.org/2000/svg' width='32' height='32'>\
    <circle cx='16' cy='16' r='6' fill='%23ff8a00' opacity='0.7'/>\
    <circle cx='10' cy='14' r='2' fill='%23ff8a00' opacity='0.5'/>\
    <circle cx='20' cy='18' r='1.5' fill='%23ff8a00' opacity='0.4'/>\
  </svg>") 16 16, auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
}



/* ================= HEADER (UNCHANGED) ================= */

/* HEADER styles (copied from style.css main.html) */
.header {
  padding: 20px 0;
  border-bottom: none;
  background: #111;
  position: sticky;
  top: 0;
  z-index: 250;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  transition: background 0.5s ease, box-shadow 0.5s ease, border-bottom 0.5s ease;
}

.header.scrolled {
  background: rgba(17, 17, 17, 0.4);
  box-shadow: none;
  border-bottom: none;
}
.header-flex {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.nav {
  display: flex;
  align-items: center;
  
  gap: 35px;
}
.nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  position: relative;
  padding: 5px 0;
  font-family: 'Montserrat', sans-serif;
  transition: color 0.3s ease;
}
.nav a.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: #ff3c3c;
  border-radius: 50%;
  box-shadow: 0 0 12px #ff3c3c;
}
.nav a:hover {
  color: #ff8a00;
}
.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cart-count {
  position: absolute;
  top: -10px;
  right: -12px;
  display: none;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 0;
  border-radius: 999px;
  background: #ff3c3c;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 0 10px rgba(255, 60, 60, 0.6);
}
.center-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-top: -5px;
  filter: drop-shadow(0 0 6px #ff3c3c);
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 2px solid #ff8a00;
  background: transparent;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(255, 138, 0, 0.25);
}
.nav-toggle img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 200;
}
.nav-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 614px) {
  .header {
    padding: 14px 0;
  }
  .header-flex {
    justify-content: space-between;
    padding: 0 12px;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(80vw, 320px);
    height: 100vh;
    background: rgba(17, 17, 17, 0.88);
    padding: 96px 24px 24px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 200;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.5);
    align-items: flex-start;
  }
  .nav.is-open {
    transform: translateX(0);
  }
  .main-nav{
    justify-content: start;
  }
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .nav-links .center-logo {
    display: none;
  }
  .nav a {
    font-size: 1rem;
    padding-left: 18px;
  }
  .center-logo {
    width: 30px;
    height: 30px;
    margin-top: 0;
  }
  .nav a.active::after {
    width: 8px;
    height: 8px;
    bottom: auto;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}


/* ================= COLLAGE ================= */

/* ================= WHO INTRO (RESTORE) ================= */
.who-intro {
  min-height: 80vh;
  padding: 120px 10%;
  padding-bottom: 6rem;
  position: relative;
}
.who-intro h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  color: #ff8a00;
  filter: url(#noise);
}
.who-intro .tagline {
  margin-top: 40px;
  max-width: 420px;
  font-size: 1.2rem;
  opacity: 0.8;
}

.who-collage {
  padding: 160px 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.who-text {
  max-width: 480px;
  font-size: 1.15rem;
  line-height: 1.8;
  
}

.who-text .small {
  margin-top: 20px;
  font-size: 0.9rem;
  opacity: 0.6;
}

.who-photo {
  width: 45rem;
  position: relative;
  z-index: 1;
}

/* Glowing background orb */
.who-photo::before {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(255, 138, 0, 0.25) 0%, rgba(255, 138, 0, 0.05) 50%, transparent 100%);
  filter: blur(40px);
  z-index: -1;
}

.who-photo img {
  width: 100%;
  border-radius: 14px;
  filter: contrast(1.1) saturate(1.2);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(255, 138, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.5s ease-in-out;
  position: relative;
  z-index: 1;
}



.who-photo::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 30%;
  width: 120px;
  height: 30px;
  
  
}

/* ================= WHAT I DO (FIXED) ================= */

.who-do {
  padding: 30px 4% 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  color: #fff;
}
.who-do::before{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");

}


.do-item {
  width: 30%;
  height: 30%;
  max-width: 440px;
  max-height: 700px;
  position: relative;
  z-index: 1;
}

.do-item img {
  width: 100%;
  aspect-ratio: 4 / 3;   /* 👈 choose the vibe: 4/3, 3/2, or 16/9 */
  object-fit: cover;

  border-radius: 12px;
  margin-bottom: 18px;

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.5),
    0 6px 16px rgba(255, 138, 0, 0.12);

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}



.do-item h3 {
  font-size: 1.4rem;
  color: #ff8a00;
  margin-bottom: 10px;
}

.do-item p {
  font-size: 1rem;
  opacity: 0.85;
  line-height: 1.6;
}



/* ================= FOOTER (UNCHANGED) ================= */

.footer {
  position: relative;
  padding: 70px 20px 50px;
  color: #fff;
  text-align: center;
  overflow: hidden;
  
}

/* subtle noise like other sections */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"); pointer-events: none;

  

}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
}

/* Logo */
.footer-logo img {
  width: 48px;
  opacity: 0.9;
}

/* Navigation */
.footer-nav {
  display: flex;
  justify-content: center;
  justify-content: space-evenly;
  gap: 36px;
  flex-wrap: wrap;
  
}

.footer-nav a {
  color: #fff; /* default text color */
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease; /* smooth color transition */
}

.footer-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 6px;
  height: 6px;
  background: #ff8a00; /* orange dot */
  border-radius: 50%;
  transform: translateX(-50%) scale(0);
  transition: transform 0.3s ease;
}

.footer-nav a:hover {
  color: #ff8a00; /* text turns orange on hover */
}

.footer-nav a:hover::after {
  transform: translateX(-50%) scale(1); /* dot appears */
}


/* Social icons */
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 26px;
}

.footer-socials a {
  display: inline-flex;
  width: 26px;
  height: 26px;
  opacity: 0.75;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-socials img {
  width: 100%;
  height: 100%;
}

.footer-socials a:hover {
  transform: translateY(-4px);
  opacity: 1;
}

/* Meta */
.footer-meta {
  font-size: 0.85rem;
  opacity: 0.75;
  line-height: 1.6;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

@media (max-width: 666px) {
  .footer {
    padding: 60px 16px 40px;
  }

  .footer-nav {
    gap: 16px;
    flex-direction: column;
  }

  .footer-meta {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  .footer-socials {
    margin-top: 6px;
  }
}

.wall-mark {
  margin-top: 50px; /* bigger gap from the title above */
  font-size: 0.9rem;
  letter-spacing: 3px;
  opacity: 0.6;
  
  border-left: 4px solid #ff8a00;
  padding-left: 14px;
  max-width: 360px;
  display: inline-block;
}





/* ===== STAMP ===== */
.paint-halo {
  position: absolute;
  right: 70px;
  bottom: 120px;
  width: 180px;
  height: 180px;
  z-index: 2;
  pointer-events: none;

  background:
    radial-gradient(
      circle at center,
      rgba(255, 138, 0, 0.35),
      rgba(255, 90, 0, 0.18),
      rgba(120, 40, 10, 0.12),
      transparent 70%
    );

  filter: blur(18px);
  mix-blend-mode: screen;
  opacity: 0.85;
}

/* === Section overlays behind everything === */
.who-intro,
.who-collage,
.who-do {
  position: relative; /* already exists */
}

.who-intro::before,
.who-collage::before,
.who-do::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1; /* <- key change */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}



.who-photo::after {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;

}

@media (max-width: 1000px) {
  .who-collage {
    gap: 24px;
  }
}

@media (max-width: 1200px) {
  .who-collage {
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }

  .who-photo {
    order: 1;
    width: min(80vw, 520px);
  }

  .who-text {
    order: 2;
    text-align: center;
    max-width: 640px;
  }

  .who-text .small {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 800px) {
  .who-do {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  .do-item {
    width: min(92vw, 520px);
    max-width: 520px;
  }
}

.do-item::after {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: -1;

  background:
    radial-gradient(
      circle at 35% 15%,
      rgba(255, 138, 0, 0.22),
      rgba(180, 80, 20, 0.15),
      transparent 65%
    ),
    linear-gradient(
      155deg,
      rgba(255, 190, 140, 0.06),
      rgba(30, 15, 8, 0.7)
    );

  border-radius: 18px;

  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.65),
    0 0 30px rgba(255, 138, 0, 0.12),
    inset 0 0 0 1px rgba(255, 160, 90, 0.1);
}




