/* Custom styles for Jean-Baptiste Viet CV */

/* Override Tailwind with Boosted styles */
body {
  font-family: HelvNeue, Helvetica Neue, Helvetica, Arial, sans-serif;
  background-color: #fff;
  color: #000;
}

/* Hero section */
.hero-section {
  background: linear-gradient(135deg, #ff7900 0%, #f16e00 100%);
  color: #fff;
  padding: 4rem 0;
}

.profile-img {
  border: 5px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.profile-img:hover {
  transform: scale(1.05);
}

/* Section styling */
.section-title {
  color: #ff7900;
  font-weight: 700;
  border-bottom: 3px solid #ff7900;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}

/* Experience cards */
.experience-card {
  border-left: 4px solid #ff7900;
  transition: all 0.3s ease;
}

.experience-card:hover {
  border-left-color: #f16e00;
  box-shadow: 0 5px 15px rgba(255, 121, 0, 0.2);
  transform: translateX(5px);
}

.company-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* Skills badges */
.skill-badge {
  background-color: #eee;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  margin: 0.25rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.skill-badge:hover {
  background-color: #ff7900;
  color: #fff;
  transform: translateY(-2px);
}

/* Book section */
.book-cover {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.book-cover:hover {
  transform: scale(1.05) rotate(-2deg);
}

/* Video thumbnail */
.video-thumbnail {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
}

.video-thumbnail::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 121, 0, 0.9);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 55% center;
  background-size: 50%;
  transition: all 0.3s ease;
}

.video-thumbnail:hover::after {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: rgba(241, 110, 0, 1);
}

/* Achievements */
.achievement-item {
  padding: 1.5rem;
  background-color: #f8f8f8;
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.achievement-item:hover {
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
  background-color: #000;
  color: #fff;
  padding: 2rem 0;
}

.footer a {
  color: #ff7900;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #f16e00;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 0;
  }
  
  .profile-img {
    max-width: 150px;
  }
  
  .company-logo {
    width: 60px;
    height: 60px;
  }
}

/* Animation utilities */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Orange accent colors */
.text-orange {
  color: #ff7900 !important;
}

.bg-orange {
  background-color: #ff7900 !important;
}

.border-orange {
  border-color: #ff7900 !important;
}

