html {
  scroll-behavior: smooth;
}



.font-serif {
  font-family: 'Fraunces', serif;
}

.font-sans {
  font-family: 'Figtree', sans-serif;
}

/* Headline styling */
.hero-headline {
  font-family: 'Fraunces', serif;
  color: #ffffff !important;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-size: 2.25rem;
}

@media (min-width: 640px) {
  .hero-headline {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .hero-headline {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-headline {
    font-size: 4.75rem;
  }
}

@media (min-width: 1280px) {
  .hero-headline {
    font-size: 5.5rem;
  }
}

/* Prague custom styling */
.text-prague {
  color: #b5a8ff !important;
  border-color: #b5a8ff !important;
}

.italic {
  font-style: italic !important;
}

/* Details section labels and values */
.details-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #5c657a !important;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.details-val {
  color: #ffffff !important;
  font-weight: 500;
  font-family: 'Figtree', sans-serif;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .details-val {
    font-size: 1rem;
  }
}

/* Starry background animations */
.star {
  position: absolute;
  background-color: #ffffff;
  border-radius: 50%;
  animation: twinkle ease-in-out infinite alternate;
}

@keyframes twinkle {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 1.0;
  }
}

/* Ambient glow elements */
.ambient-glow-purple {
  position: absolute;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.07) 0%, rgba(139, 92, 246, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.ambient-glow-orange {
  position: absolute;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, rgba(249, 115, 22, 0) 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 1;
}

/* Responsive heights for the designer portrait image wrapper */
.hero-image-wrapper {
  height: 320px;
  width: 100%;
}

@media (min-width: 640px) {
  .hero-image-wrapper {
    height: 420px;
  }
}

@media (min-width: 1024px) {
  .hero-image-wrapper {
    height: 550px;
  }
}

/* Responsive grid overrides to bypass Tailwind purged classes */
@media (min-width: 1024px) {
  .desktop-grid {
    display: grid !important;
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    column-gap: 3rem !important;
  }

  .desktop-col-span-7 {
    grid-column: span 7 / span 7 !important;
  }

  .desktop-col-span-5 {
    grid-column: span 5 / span 5 !important;
  }
}

/* Experience & Education custom styling */
.experience-item,
.education-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-container {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #13171e !important;
  border-color: #1b232f !important;
}

.experience-item:hover .logo-container {
  border-color: #864ffe !important;
  box-shadow: 0 0 15px rgba(134, 79, 254, 0.2);
  transform: scale(1.03);
}

.skill-tag {
  transition: all 0.2s ease;
  background-color: #13171e !important;
  border-color: #1b232f !important;
  color: #ffffff !important;
}

.skill-tag:hover {
  background-color: rgba(134, 79, 254, 0.1) !important;
  border-color: #864ffe !important;
  color: #ffffff !important;
}

/* Nesting timeline node lines */
.timeline-dot {
  transition: all 0.3s ease;
}

.experience-item:hover .timeline-dot-active {
  background-color: #864ffe !important;
  box-shadow: 0 0 8px #864ffe;
}

/* Spacing between Hero details and Resume section */
.resume-section-wrapper {
  margin-top: 80px !important;
}

@media (min-width: 1024px) {
  .resume-section-wrapper {
    margin-top: 325px !important;
  }
}

/* Flashing green dot animation for opportunity badge */
@keyframes pulse-green {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.6;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 0 8px 2px rgba(16, 185, 129, 0.4);
  }
}

.flashing-dot {
  width: 7px;
  height: 7px;
  background-color: #10b981;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-green 1.8s infinite ease-in-out;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background-color: #10b981;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-green 1.8s infinite ease-in-out;
}

.featured-work-card {
  margin-bottom: 40px !important;
}

@media (min-width: 1024px) {
  .featured-work-card {
    margin-bottom: 80px !important;
  }
}

/* Store buttons styling for Takmilah card */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 9999px;
  background-color: #111827 !important;
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Figtree', sans-serif;
  letter-spacing: 0.025em;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  text-decoration: none;
}

.store-btn:hover {
  background-color: #1f2937 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.store-btn svg {
  width: 14px;
  height: 14px;
}

.store-btn svg,
.store-btn svg path {
  fill: #ffffff !important;
}

/* Custom CSS mappings for arbitrary Tailwind color classes not compiled in main.css */

/* Backgrounds */
.bg-\[\#070b10\] {
  background-color: #070b10 !important;
}

/* Text Colors */
.text-\[\#a5b4fc\] {
  color: #a5b4fc !important;
}

.text-\[\#a5b4fc\]\/70 {
  color: rgba(165, 180, 252, 0.7) !important;
}

.text-\[\#a5b4fc\]\/80 {
  color: rgba(165, 180, 252, 0.8) !important;
}

.text-\[\#8a99ad\] {
  color: #8a99ad !important;
}

.text-\[\#5c657a\] {
  color: #5c657a !important;
}

/* Hover States */
.hover\:text-\[\#a5b4fc\]:hover {
  color: #a5b4fc !important;
}

/* Borders */
.border-\[\#a5b4fc\]\/30 {
  border-color: rgba(165, 180, 252, 0.3) !important;
}

.border-\[\#1b232f\] {
  border-color: #1b232f !important;
}

/* Green Opportunity Badge Mappings */
.border-\[\#10b981\]\/20 {
  border-color: rgba(16, 185, 129, 0.2) !important;
}
.bg-\[\#10b981\]\/5 {
  background-color: rgba(16, 185, 129, 0.05) !important;
}
.text-\[\#10b981\] {
  color: #10b981 !important;
}




