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

/* ================= BASE ================= */
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #0a0a0a;
  color: #f5f5f5;
  overflow-x: hidden;
}

/* ================= CINEMATIC BACKGROUND ================= */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(249,168,212,0.12), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(244,114,182,0.10), transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(236,72,153,0.08), transparent 50%);
  animation: floatGlow 12s ease-in-out infinite alternate;
  z-index: -2;
}

@keyframes floatGlow {
  0% {
    transform: scale(1) translateY(0px);
    filter: blur(40px);
  }
  100% {
    transform: scale(1.05) translateY(-10px);
    filter: blur(55px);
  }
}

/* ================= FLOATING ORBS ================= */
.orb {
  position: fixed;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(249,168,212,0.25), transparent 60%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  animation: floatOrb 10s ease-in-out infinite;
}

.orb.one {
  top: 10%;
  left: -120px;
}

.orb.two {
  bottom: 10%;
  right: -120px;
  animation-delay: 2s;
}

@keyframes floatOrb {
  0% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
  100% { transform: translateY(0px) scale(1); }
}

/* ================= NAV ================= */
nav {
  position: sticky;
  top: 0;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(10px);
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #1f1f1f;
  z-index: 1000;
}

nav a {
  color: #f9a8d4;
  margin: 0 14px;
  text-decoration: none;
}

nav a:hover {
  color: #f472b6;
}

/* ================= LAYOUT ================= */
section {
  max-width: 1000px;
  margin: auto;
  padding: 60px 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* ================= HERO ================= */
.hero-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 20px;
}

.hero {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero h1 {
  font-size: 56px;
  margin: 0;
  letter-spacing: -1px;
  background: linear-gradient(90deg, #f9a8d4, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  color: #f9a8d4;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-text {
  color: #9ca3af;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
}

/* ================= CENTER SECTION ================= */
.center-section {
  text-align: center;
  max-width: 700px;
  margin: auto;
}

/* ================= ABOUT ================= */
.about-section {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

.about-card {
  max-width: 800px;
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: 18px;
  padding: 30px;
}

.pink-divider {
  width: 60px;
  height: 3px;
  background: #f9a8d4;
  margin: 10px 0 20px;
  border-radius: 10px;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.highlight {
  background: rgba(255,255,255,0.03);
  border: 1px solid #1f1f1f;
  border-radius: 14px;
  padding: 15px;
  text-align: center;
  transition: 0.3s ease;
}

.highlight:hover {
  border-color: #f9a8d4;
  box-shadow: 0 0 20px rgba(249,168,212,0.2);
  transform: translateY(-3px);
}

.highlight h3 {
  color: #f9a8d4;
  margin: 0;
}

/* ================= CARDS ================= */
.card,
.project-card,
.design-card {
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: 16px;
  padding: 18px;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover,
.project-card:hover,
.design-card:hover {
  transform: translateY(-6px);
  border-color: #f9a8d4;
  box-shadow: 0 0 25px rgba(249,168,212,0.25);
}

/* ================= IMAGES ================= */
.project-frame {
  width: 100%;
  height: 220px;
  border: none;
  border-radius: 12px;
}

.design-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* ================= TAGS ================= */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.tags span {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(249,168,212,0.15);
  color: #f9a8d4;
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  background: #111;
  color: #f5f5f5;
  border: 1px solid #1f1f1f;
  transition: 0.2s ease;
}

.btn.primary {
  background: #f9a8d4;
  color: black;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: #f9a8d4;
}

/* ================= TIMELINE (RESUME) ================= */
.timeline {
  position: relative;
  padding-left: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #1f1f1f;
}

.timeline-item {
  position: relative;
  margin-bottom: 20px;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  background: #f9a8d4;
  border-radius: 50%;
  position: absolute;
  left: 5px;
  top: 18px;
}

.timeline-content {
  margin-left: 30px;
  padding: 16px;
  background: #111;
  border-radius: 14px;
  border: 1px solid #1f1f1f;
  transition: 0.3s ease;
}

.glow-card:hover .timeline-content {
  border-color: #f9a8d4;
  box-shadow: 0 0 25px rgba(249,168,212,0.25);
  transform: translateY(-4px);
}

/* ================= LIGHTBOX ================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 9999;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
}

/* ================= SCROLL ANIMATION ================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
