/*
Theme Name: Tasha Young
Author: Digital Magicians
Description: Personal brand site for Tasha Young — Visionary Entrepreneur, Scholar, and Founder of the Good Policy Institute.
Version: 1.0
*/

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; }

/* === HOME PAGE === */
.home-page { overflow: hidden; }

.home-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #ffffff 0%, #f0f0f0 100%);
  overflow: hidden;
  position: relative;
  padding-top: 15vh;
}

.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 5;
  width: 100%;
}

.image-wrapper {
  position: relative;
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6rem;
}

.main-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 0%;
  -webkit-mask-image: radial-gradient(circle, black 55%, rgba(0,0,0,0.5) 85%, transparent 100%);
  mask-image: radial-gradient(circle, black 55%, rgba(0,0,0,0.5) 85%, transparent 100%);
  box-shadow: 0 0 60px rgba(0,0,0,0.05);
  z-index: 10;
}

.thought-bubble {
  position: absolute;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: #333;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 15px;
  z-index: 1;
  cursor: pointer;
  animation: champagne-ascent 4s ease-in-out forwards, float 6s ease-in-out infinite 4s;
  opacity: 0;
  transform-origin: center;
}

@keyframes champagne-ascent {
  0%   { top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0);    opacity: 0; }
  20%  { top: 50%; left: 50%; transform: translate(-50%,-50%) scale(1);    opacity: 1; }
  60%  { top: -100%; left: 50%; transform: translate(-50%,-50%) scale(1);  opacity: 1; }
  100% { top: var(--top); left: var(--left); transform: translate(-50%,-50%) scale(1); opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translate(-50%,-50%) translateY(0); }
  50%       { transform: translate(-50%,-50%) translateY(-20px); }
}

.thought-bubble:hover {
  transform: translate(-50%,-50%) scale(1.08) !important;
  box-shadow: 0 15px 45px rgba(0,0,0,0.15);
  background: #fcfcfc;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.thought-bubble::after,
.thought-bubble::before {
  content: '';
  position: absolute;
  background: white;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.thought-bubble::after  { width: 20px; height: 20px; bottom: -10px; left: 30%; }
.thought-bubble::before { width: 10px; height: 10px; bottom: -20px; left: 20%; }

.bubble-text {
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.2;
}

.tasha-name {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  margin: 0;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1;
}

.tasha-tagline {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1.5rem;
  color: #666;
  margin-top: 1rem;
  font-weight: 400;
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .tasha-name { font-size: 2.5rem; }
  .image-wrapper { width: 200px; height: 200px; }
  .thought-bubble { width: 100px !important; height: 100px !important; font-size: 0.8rem !important; }
  .thought-bubble:nth-child(2) { left: -60px !important; top: -140px !important; }
  .thought-bubble:nth-child(3) { left:  40px !important; top: -220px !important; }
  .thought-bubble:nth-child(4) { left: 160px !important; top: -140px !important; }
  .thought-bubble:nth-child(5) { left: 200px !important; top:    0px !important; }
}
