/* ----------------------------------------------
   THEME VARIABLES
---------------------------------------------- */
:root {
  --grad: linear-gradient(135deg, #ff3ea5, #ff7ad9, #9fdcff);
  --bg: #faf9fc;
  --card: rgba(255, 255, 255, 0.7);
  --muted: #6a6680;
  --text: #1a1528;
  --radius: 18px;
  --pill: 999px;
  --border: rgba(0, 0, 0, 0.08);
  --max: 1100px;
}

/* ----------------------------------------------
   GLOBAL
---------------------------------------------- */
body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
}

html {
  scroll-behavior: smooth;
}

body::before {
  content: "";
  position: fixed;
  inset: -40%;
  background: var(--grad);
  opacity: 0.18;
  filter: blur(120px);
  z-index: -1;
}

/* ----------------------------------------------
   NAVIGATION
---------------------------------------------- */
nav {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 20;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.05em;
}

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

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  padding: 0.35rem 0.8rem;
  border-radius: var(--pill);
  font-size: 0.85rem;
}

.nav-links a:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--text);
}

.hire-btn {
  background: var(--grad);
  color: white !important;
  padding: 0.4rem 1rem;
  border-radius: var(--pill);
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-toggle {
  display: none;
  padding: 0.4rem 0.7rem;
  border-radius: var(--pill);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  font-size: 0.8rem;
}

/* Mobile nav */
@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    left: 0;
    right: 0;
    top: 56px;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    flex-direction: column;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.2s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-toggle {
    display: block;
  }
}

/* ----------------------------------------------
   CARD BASE
---------------------------------------------- */
.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  margin: 1.2rem auto;
  max-width: var(--max);
}

/* ----------------------------------------------
   PAGE WRAPPER
---------------------------------------------- */
.page {
  padding: 1rem;
}

/* ----------------------------------------------
   FOOTER
---------------------------------------------- */
footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 2rem;
}

footer {
  text-align: center;
  padding: 1.6rem 1rem;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-title {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--text);
}

.footer-sub {
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-love {
  margin-top: 0.4rem;
  font-size: 0.85rem;
}

.footer-love .heart {
  color: #ff3ea5;
  font-size: 1rem;
  padding: 0 2px;
}


/* --------------------------------------------------
   PROFILE + WALL FEED
-------------------------------------------------- */
.profile-flex {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 1.2rem;
}

@media (max-width: 900px) {
  .profile-flex {
    grid-template-columns: 1fr;
  }
}

.profile-top {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}




.profile-name {
  font-size: 1.6rem;
  font-weight: 600;
}

.profile-meta {
  font-size: 0.9rem;
  color: var(--muted);
}

.status {
  margin-top: 0.7rem;
  padding: 0.6rem;
  border-radius: 12px;
  border: 1px dashed rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.profile-desc {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

/* WALL FEED */
.wall-scroll {
  max-height: 260px;
  overflow-y: auto;
  padding-right: 0.4rem;
}

.wall-post {
  display: flex;
  gap: 0.7rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.7rem;
  margin-bottom: 0.7rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.wall-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.1);
}

.wall-body {
  flex: 1;
}

.wall-meta {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.wall-text {
  font-size: 0.9rem;
  line-height: 1.45;
}


/* --------------------------------------------------
   CARD BASE
-------------------------------------------------- */
.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  margin: 1.2rem auto;
  max-width: var(--max);
}

.card-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

/* --------------------------------------------------
   MAIN TWO-COLUMN LAYOUT
-------------------------------------------------- */
.columns {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.2rem;
}

@media (max-width: 900px) {
  .columns {
    grid-template-columns: 1fr;
  }
}


/* --------------------------------------------------
   HUB SLIDER
-------------------------------------------------- */
.hub-slider {
  position: relative;
  overflow: hidden;
}

.hub-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.3s ease;
}

.hub-card {
  min-width: 240px;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.hub-image {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 12px;
  margin-bottom: 0.6rem;

  /* NEW */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hub-image {
  position: relative;
  overflow: hidden;
}

.hub-tags {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  z-index: 2;
}

.hub-tag {
  padding: 0.2rem 0.55rem;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: var(--pill);
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
}

.tag-blue {
  background: #4a7bff;
}

.tag-green {
  background: #4caf50;
}

.tag-pink {
  background: #ff4fa3;
}

.tag-yellow {
  background: #ffb400;
  color: #222;
}

.tag-purple {
  background: #9b59ff;
}

.tag-red {
  background: #ff4b4b;
}

.hub-tag {
  box-shadow: 0 0 10px currentColor;
}




.hub-arrows {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.hub-arrows button {
  background: var(--grad);
  border: none;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: var(--pill);
  cursor: pointer;
  font-size: 0.8rem;
}

