@import url('https://fonts.googleapis.com/css2?family=VT323&family=Inconsolata:wght@400;600&display=swap');

/* =========================
   VARIABLES
========================= */
:root {
  --pink: #ffd1e6;
  --pink-strong: #ff9fcf;
  --lilac: #efd8e8;
  --bg-light: #eeeeee;
  --bg-concept: #ededed;
  --bg-painting: #e3dbe6;
  --dark: #2b2b2b;
  --white: #fff8fb;
}

/* =========================
   RESET
========================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

/* =========================
   HOME
========================= */
body.home {
  background: var(--lilac);
  min-height: 100vh;
  font-family: 'Inconsolata', monospace;
  color: var(--dark);
}

/* HOME LAYOUT */
.home-layout {
  display: grid;
  grid-template-columns: 320px 1fr 360px;
  align-items: center;
  min-height: 100vh;
  padding: 60px;
  gap: 60px;
}

/* INFO COLUMN */
.info-column {
  display: flex;
  justify-content: center;
}

/* CENTER COLUMN */
.center-column {
  text-align: center;
  position: relative;
}

.center-column::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 520px;
  height: 320px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    rgba(255, 200, 230, 0.85),
    rgba(255, 200, 230, 0.35),
    transparent 70%
  );
  z-index: -1;
}

.center-column h1 {
  font-family: 'VT323', monospace;
  font-size: 52px;
  margin: 10px 0;
}

.subtitle {
  font-size: 18px;
  line-height: 1.4;
}

.symbols {
  color: var(--pink-strong);
  font-size: 20px;
  margin-bottom: 10px;
}

/* NAV */
.nav {
  margin-top: 24px;
}

.nav a {
  margin: 0 10px;
  text-decoration: none;
  color: var(--dark);
}

.nav a:hover {
  color: var(--pink-strong);
}

/* HOME WINDOWS */
.window {
  background: var(--white);
  border-radius: 26px;
  border: 5px solid var(--pink);
  box-shadow:
    0 0 20px rgba(255, 170, 210, 0.75),
    0 0 44px rgba(255, 200, 230, 0.55);
}

.window.info {
  padding: 20px;
  font-family: 'VT323', monospace;
}

.window.info h3 {
  margin-top: 0;
  color: var(--pink-strong);
  font-size: 20px;
}

.window.info p {
  font-size: 16px;
  line-height: 1.4;
  margin: 6px 0;
}

/* IMAGE COLUMN (HOME) */
.images-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.window.img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.window.img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}

/* =========================
   PORTFOLIO BASE
========================= */
body.portfolio {
  font-family: 'VT323', monospace;
  color: var(--dark);
  background: linear-gradient(
    180deg,
    var(--bg-light) 0%,
    #e9e9e9 100%
  );
}

/* HEADER */
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
}

.portfolio-header h1 {
  font-size: 32px;
  margin: 0;
}

.back-home {
  text-decoration: none;
  color: var(--dark);
}

.back-home:hover {
  color: var(--pink-strong);
}

/* GRID BASE */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
  padding: 0 40px 60px;
}

/* =========================
   THUMBNAILS (CONCEPT + PAINTING)
========================= */
.thumb {
  display: block;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;

  border: 4px solid var(--pink);
  box-shadow:
    0 0 18px rgba(255, 180, 220, 0.6),
    0 0 36px rgba(255, 200, 230, 0.45);

  aspect-ratio: 4 / 3;
  transition: transform 0.25s ease;
}

.thumb:hover {
  transform: scale(1.02);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CAPTION */
.caption {
  padding: 10px 12px 12px;
  font-size: 16px;
  color: var(--dark);
}

/* =========================
   CONCEPT PAGE
========================= */
body.concept {
  background: linear-gradient(
    180deg,
    var(--bg-concept) 0%,
    #e4e4e4 100%
  );
}

/* =========================
   PAINTING PAGE
========================= */
body.painting {
  background: linear-gradient(
    180deg,
    var(--bg-painting) 0%,
    #d8d0dd 100%
  );
}

.painting-grid {
  gap: 24px;
}
