/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #000000 !important;
  color: #ffffff !important;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Glassmorphism Shine Effects */
.glassmorphism-shine {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 30%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.glassmorphism-shine.top-right {
  top: -200px;
  right: -200px;
  animation: float 8s ease-in-out infinite;
}

.glassmorphism-shine.bottom-left {
  bottom: -200px;
  left: -200px;
  animation: float 8s ease-in-out infinite reverse;
}

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

/* Floating Orbs */
.floating-orbs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.6;
  backdrop-filter: blur(1px);
}

.orb-1 {
  width: 30px;
  height: 30px;
  top: 15%;
  left: 10%;
  animation: drift1 25s linear infinite;
}

.orb-2 {
  width: 25px;
  height: 25px;
  top: 25%;
  right: 15%;
  animation: drift2 30s linear infinite;
}

.orb-3 {
  width: 35px;
  height: 35px;
  top: 60%;
  left: 20%;
  animation: drift3 35s linear infinite;
}

.orb-4 {
  width: 28px;
  height: 28px;
  top: 75%;
  right: 25%;
  animation: drift4 28s linear infinite;
}

.orb-5 {
  width: 22px;
  height: 22px;
  top: 40%;
  left: 80%;
  animation: drift5 32s linear infinite;
}

.orb-6 {
  width: 32px;
  height: 32px;
  top: 85%;
  left: 60%;
  animation: drift6 40s linear infinite;
}

@keyframes drift1 {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(100px, -50px) rotate(360deg); }
}

@keyframes drift2 {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-80px, 100px) rotate(-360deg); }
}

@keyframes drift3 {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(120px, 80px) rotate(180deg); }
}

@keyframes drift4 {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-60px, -120px) rotate(-180deg); }
}

@keyframes drift5 {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(90px, 60px) rotate(270deg); }
}

@keyframes drift6 {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-100px, -80px) rotate(-270deg); }
}

@keyframes cvBob {
  0%, 100% { 
    transform: translateY(0px);
  }
  50% { 
    transform: translateY(-8px);
  }
}



/* Container and Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  z-index: 2;
}

/* Profile Header Section */
.profile-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 3rem 0;
}

.profile-content {
  max-width: 800px;
  margin: 0 auto;
}

.profile-name {
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 20%, #e0e0e0 40%, #d0d0d0 60%, #c0c0c0 80%, #b0b0b0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.status-badge {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.profile-title {
  font-size: 1.25rem;
  font-weight: 400;
  color: #a0a0a0;
  letter-spacing: 0.02em;
}

/* Content Sections */
.content-section {
  margin-bottom: 3rem;
}

.card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  opacity: 1;
  transform: translateY(0);
}

.card.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.section-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #ffffff;
  letter-spacing: -0.01em;
}

/* About Section */
.about-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #d0d0d0;
  margin-bottom: 1.5rem;
}

.about-tagline {
  font-size: 1rem;
  color: #a0a0a0;
  font-style: italic;
  line-height: 1.6;
}

/* Timeline Section */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 40px;
  bottom: -2rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-year {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  min-width: 80px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
  flex-shrink: 0;
}

.timeline-content {
  flex: 1;
}

.timeline-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.timeline-content p {
  color: #a0a0a0;
  line-height: 1.6;
}

/* Gallery Section */
.gallery-description {
  color: #a0a0a0;
  margin-bottom: 2rem;
  font-size: 1rem;
}



/* CV Section */
.cv-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.cv-preview {
  max-width: 300px;
  border-radius: 0;
  overflow: visible;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 60px rgba(59, 130, 246, 0.4),
    0 0 120px rgba(59, 130, 246, 0.2),
    0 0 180px rgba(59, 130, 246, 0.1);
  border: none;
  position: relative;
  animation: cvBob 4s ease-in-out infinite;
}

.cv-preview::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0.1) 50%, transparent 80%);
  border-radius: 0;
  z-index: -1;
  filter: blur(30px);
}

.cv-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 0;
  border: none;
}

.cv-download {
  text-align: center;
}

.download-btn {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, #4f8bf8 0%, #2563eb 100%);
}

/* Accreditations Section */
.accreditations-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.accreditation-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  backdrop-filter: blur(10px);
}

.accreditation-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.accreditation-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.accreditation-details {
  flex: 1;
}

.accreditation-details h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.accreditation-details p {
  font-size: 0.9rem;
  color: #a0a0a0;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.accreditation-date {
  font-size: 0.8rem;
  color: #3b82f6;
  font-weight: 500;
  background: rgba(59, 130, 246, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  display: inline-block;
}

/* Footer */
.footer {
  padding: 2rem 0;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #808080;
  font-size: 0.875rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-email {
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-email:hover {
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }
  
  .profile-name {
    font-size: 3rem !important;
  }
  
  .card {
    padding: 1.5rem;
  }
  
  .timeline-item {
    flex-direction: column;
    gap: 1rem;
  }
  
  .timeline-item::before {
    display: none;
  }
  
  .timeline-year {
    align-self: flex-start;
  }
  

  
  .cv-content {
    gap: 1.5rem;
  }
  
  .cv-preview {
    max-width: 250px;
  }
  
  .cv-image {
    height: 300px;
  }
  
  .accreditations-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .accreditation-item {
    padding: 1.25rem;
  }
  
  .accreditation-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .accreditation-details h4 {
    font-size: 1rem;
  }
  
  .accreditation-details p {
    font-size: 0.85rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .profile-name {
    font-size: 2rem !important;
  }
  
  .profile-title {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .card {
    padding: 1rem;
  }
  
  .cv-preview {
    max-width: 200px;
  }
  
  .cv-image {
    height: 250px;
  }
  
  .accreditations-content {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .accreditation-item {
    padding: 1rem;
  }
  
  .accreditation-icon {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }
  
  .accreditation-details h4 {
    font-size: 0.95rem;
  }
  
  .accreditation-details p {
    font-size: 0.8rem;
  }
  
  .accreditation-date {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
  }
  
  .download-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  

  
  .about-text {
    font-size: 1rem;
  }
  
  .timeline-content h4 {
    font-size: 1.1rem;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection Styles */
::selection {
  background: rgba(59, 130, 246, 0.3);
  color: #ffffff;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
} 