/* ================================================================
   GLOBAL — Base Layout, Typography, and Animations
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500&family=Poppins:wght@300;500;700&display=swap');

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
  transition: background-color 0.4s ease, color 0.4s ease;
}

body {
  margin: 0;
  padding: 30px;
  font-family: 'Poppins', sans-serif;
  color: #6b4c9a;
  background: linear-gradient(180deg, #faf6ff 0%, #f3e8ff 100%);
  opacity: 0;
  animation: fadeIn 1s ease-in forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

h1, h2, h3 {
  font-family: 'Roboto Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 {
  text-align: center;
  font-size: 3em;
  margin-bottom: 30px;
  text-shadow: 0 0 4px #fff;
}

a { text-decoration: none; transition: 0.3s ease; }

/* ================================================================
   GLOBAL NAVIGATION BAR
   ================================================================ */

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 14px 20px;
  margin: -30px -30px 30px -30px;
  border-radius: 0 0 12px 12px;
  background-color: #d8c1f5;
  box-shadow: 0 4px 12px rgba(162, 120, 230, 0.2);
  position: relative;
  z-index: 10;
}

.main-nav a {
  font-weight: 600;
  font-size: 1.05em;
  color: #6b4c9a;
  border-radius: 6px;
  padding: 6px 10px;
  position: relative;
}

.main-nav a:hover {
  background-color: #b89cff;
  color: #fff;
  text-shadow: 0 0 6px #fff;
}

/* ================================================================
   PROFILE PICTURE — Home, About, Contact
   ================================================================ */

.profile-pic {
  position: fixed;
  top: 25px;
  right: 100px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #a278e6;
  box-shadow: 0 0 15px #a278e6, 0 0 35px #a278e6;
  animation: pulseGlow 4s infinite ease-in-out;
  z-index: 999;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 10px #a278e6, 0 0 25px #a278e6; }
  50% { box-shadow: 0 0 25px #d5b6ff, 0 0 55px #d5b6ff; }
  100% { box-shadow: 0 0 10px #a278e6, 0 0 25px #a278e6; }
}

/* ================================================================
   INTRO BUBBLE — Home Page
   ================================================================ */

.intro-bubble {
  background: #fff;
  border-radius: 16px;
  padding: 50px 40px;
  margin: 80px auto;
  width: 90%;
  max-width: 1100px;
  box-shadow: 0 0 25px rgba(162, 120, 230, 0.25);
  transition: all 0.3s ease;
}

.intro-bubble:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 40px rgba(162, 120, 230, 0.4);
}

/* ================================================================
   PROJECTS PAGE — Alternating 2-Column Layout
   ================================================================ */

.project {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 80px auto;
  max-width: 1150px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(162, 120, 230, 0.25);
  transition: all 0.3s ease;
}

.project:nth-child(even) { flex-direction: row-reverse; }

.project:hover {
  transform: scale(1.02);
  box-shadow: 0 0 35px rgba(162, 120, 230, 0.4);
}

.project img {
  width: 50%;
  height: 320px;
  object-fit: cover;
}

.project .content {
  width: 50%;
  padding: 40px;
  text-align: left;
}

.project h2 {
  color: #a278e6;
  margin-bottom: 10px;
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */

.contact-box {
  background: #fff;
  border-radius: 16px;
  max-width: 600px;
  margin: 100px auto;
  padding: 50px;
  text-align: center;
  box-shadow: 0 0 25px rgba(162,120,230,0.25);
  transition: 0.3s ease;
}

.contact-box:hover {
  box-shadow: 0 0 40px rgba(162,120,230,0.4);
}

form label {
  display: block;
  font-weight: 500;
  color: #6b4c9a;
  text-align: left;
  margin: 15px 0 5px;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1.5px solid #d5b6ff;
  margin-bottom: 20px;
  font-size: 1em;
  font-family: 'Poppins', sans-serif;
}

button {
  background-color: #a278e6;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

button:hover {
  background-color: #b89cff;
  transform: scale(1.05);
}

/* ================================================================
   CYBER DOLLZ — Black & Gold Cinematic Theme
   ================================================================ */

:root {
  --gold: #d4af37;
  --black: #0a0a0a;
}

body.cyberdollz {
  background: var(--black);
  color: #f5f5f5;
  font-family: 'Roboto Mono', monospace;
}

body.cyberdollz h1 {
  color: var(--gold);
  text-shadow: 0 0 25px rgba(212,175,55,0.35);
  text-align: center;
  margin-top: 40px;
}

body.cyberdollz .main-nav {
  background: #000;
  border-bottom: 1px solid var(--gold);
  box-shadow: 0 0 20px rgba(212,175,55,0.4);
  animation: goldPulse 5s infinite ease-in-out;
}

@keyframes goldPulse {
  0%,100% { box-shadow: 0 0 10px var(--gold), 0 0 25px var(--gold); }
  50% { box-shadow: 0 0 25px var(--gold), 0 0 50px var(--gold); }
}

body.cyberdollz section {
  max-width: 1100px;
  margin: 80px auto;
  background: rgba(20,20,20,0.9);
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 0 25px rgba(212,175,55,0.25);
  transition: 0.3s ease;
}

body.cyberdollz section:nth-child(even) {
  margin-left: 10%;
}

body.cyberdollz section:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 35px rgba(212,175,55,0.4);
}
/* ================================================================
   TECH RECYCLING — Neon Green Hacker Theme
   ================================================================ */

body.tech {
  background: radial-gradient(circle at center, #001a00 0%, #000000 100%);
  font-family: 'Share Tech Mono', monospace;
  color: #00ff88;
  text-shadow: 0 0 10px #00ff88;
}

@keyframes navPulse {
  0% { box-shadow: 0 0 5px #00ff88, 0 0 10px #00ff88; }
  50% { box-shadow: 0 0 20px #00ff88, 0 0 35px #00ff88; }
  100% { box-shadow: 0 0 8px #00ff88, 0 0 15px #00ff88; }
}

body.tech .main-nav {
  background-color: #000;
  border-bottom: 1px solid #00ff88;
  animation: navPulse 3s infinite ease-in-out;
  box-shadow: 0 0 15px #00ff88;
}

body.tech .main-nav a {
  color: #00ff88;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  position: relative;
}

body.tech .main-nav a:hover {
  color: #ccffcc;
  text-shadow: 0 0 15px #00ff88;
}

body.tech header {
  text-align: center;
  padding: 70px 20px 30px;
  border-bottom: 1px solid #00ff88;
}

body.tech header h1 {
  font-size: 3em;
  color: #00ff88;
  animation: glowPulse 2s infinite alternate;
}

@keyframes glowPulse {
  from { text-shadow: 0 0 10px #00ff88; }
  to { text-shadow: 0 0 25px #00ff88; }
}

body.tech section {
  max-width: 1000px;
  margin: 70px auto;
  background: rgba(0, 20, 0, 0.6);
  border: 1px solid #00ff88;
  border-radius: 14px;
  box-shadow: 0 0 25px #00ff88;
  padding: 40px;
  transition: 0.3s ease;
}

body.tech section:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 40px #00ff88;
}

body.tech section:nth-child(even) {
  margin-left: 10%;
}

body.tech .placeholder {
  background: rgba(0, 0, 0, 0.3);
  height: 180px;
  border: 1px dashed #00ff88;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00cc66;
  font-style: italic;
}

/* ================================================================
   CYBER SHAWTIES — Feminine, Strong, Empowering Theme
   ================================================================ */

@keyframes shawtiesGlow {
  0% { box-shadow: 0 0 8px rgba(168,130,230,0.4), 0 0 16px rgba(255,182,193,0.3); }
  50% { box-shadow: 0 0 18px rgba(168,130,230,0.6), 0 0 32px rgba(255,182,193,0.5); }
  100% { box-shadow: 0 0 10px rgba(168,130,230,0.4), 0 0 20px rgba(255,182,193,0.4); }
}

body.shawties {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #f8f4fc 0%, #f9eaff 100%);
  color: #6b4c9a;
}

body.shawties .main-nav {
  background: linear-gradient(90deg, rgba(255,182,193,0.25), rgba(182,152,230,0.25));
  border-bottom: 1px solid rgba(162,120,230,0.4);
  border-radius: 0 0 12px 12px;
  animation: shawtiesGlow 5s ease-in-out infinite;
  backdrop-filter: blur(5px);
}

body.shawties .main-nav a {
  color: #a278e6;
  font-weight: 600;
  letter-spacing: 0.03em;
}

body.shawties .main-nav a:hover {
  color: #ffb6c1;
  text-shadow: 0 0 10px #b89cff;
}

body.shawties header {
  text-align: center;
  padding: 80px 20px;
  color: #a278e6;
  border-bottom: 1px solid rgba(182,152,230,0.3);
}

body.shawties header h1 {
  font-size: 3em;
  background: linear-gradient(135deg, #a278e6, #ff69b4, #fcb045);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: softGlow 3s infinite alternate;
}

@keyframes softGlow {
  from { text-shadow: 0 0 10px #b89cff; }
  to { text-shadow: 0 0 25px #ffb6c1; }
}

body.shawties section {
  max-width: 900px;
  margin: 70px auto;
  padding: 30px;
  background: #fff;
  border: 2px solid rgba(182, 152, 230, 0.25);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(162,120,230,0.25);
  transition: 0.3s ease;
}

body.shawties section:hover {
  box-shadow: 0 10px 35px rgba(162,120,230,0.35);
}

body.shawties section:nth-child(even) {
  margin-left: 8%;
}

body.shawties h2 {
  color: #a278e6;
  border-bottom: 1px solid rgba(182,152,230,0.4);
  margin-bottom: 15px;
  font-weight: 600;
}

body.shawties .placeholder {
  background: rgba(255,105,180,0.08);
  height: 180px;
  border-radius: 10px;
  border: 1px dashed rgba(255,182,193,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b89cff;
  font-style: italic;
}

/* ================================================================
   FOOTER
   ================================================================ */

footer {
  text-align: center;
  margin-top: 100px;
  padding: 30px;
  font-size: 0.9em;
  color: #8a72b8;
  border-top: 1px solid rgba(162,120,230,0.25);
}

/* ================================================================
   RESPONSIVE DESIGN
   ================================================================ */

@media (max-width: 1000px) {
  .project {
    flex-direction: column !important;
  }

  .project img, 
  .project .content {
    width: 100%;
  }

  .profile-pic {
    width: 120px;
    height: 120px;
    right: 30px;
    top: 20px;
  }
}

@media (max-width: 700px) {
  body { padding: 15px; }
  .main-nav { flex-wrap: wrap; gap: 12px; }
  h1 { font-size: 2.2em; }
  .intro-bubble, .contact-box, section {
    margin: 40px auto;
    padding: 20px;
  }
}
