/* HERO SECTION - MODERN HERO FOR ABOUT PAGE */
.hero-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.hero-text {
  animation: fadeInLeft 0.8s ease-out;
  min-width: 800px;
}

.hero-title {
  font-family: 'Rubik', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-highlight {
  background: var(--logo-colorgradient-full);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: 'Rubik', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--earth-color);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 800px;
}

.hero-link {
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition);
}

.hero-link:hover {
  background: var(--logo-colorgradient-full);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-button {
  padding: 0.1rem 0.5rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
}

.cta-button.primary {
  color: var(--text-primary);
  border: 2px solid transparent;
  background: linear-gradient(var(--surface), var(--surface)) padding-box, var(--logo-colorgradient-full) border-box;
}

.cta-button.primary:hover {
  border: none;
  background: var(--logo-colorgradient-full);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.cta-button.secondary {
  color: var(--text-primary);
  border: 2px solid transparent;
  background: linear-gradient(var(--surface), var(--surface)) padding-box, var(--logo-colorgradient-full) border-box;
}

.cta-button.secondary:hover {
  border: none;
  background: var(--logo-colorgradient-full);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.8s ease-out;
}

.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-profile-pic {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.hero-image-backdrop {
  position: absolute;
  width: 320px;
  height: 320px;
  background: var(--logo-colorgradient-full);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
  animation: pulse 3s ease-in-out infinite;
}

.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

/* ANIMATIONS */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) rotate(45deg);
  }
  40% {
    transform: translateY(-10px) rotate(45deg);
  }
  60% {
    transform: translateY(-5px) rotate(45deg);
  }
}

/* ===== RESPONSIVE DESIGN - MEDIA QUERIES ===== */

/* Desktop Small (1024px and down) */
@media (max-width: 1024px) {
  .hero-section {
    padding: 1.5rem;
    min-height: 100vh;
  }
  
  .hero-content {
    gap: 3rem;
    max-width: 1000px;
  }
  
  .hero-text {
    min-width: 600px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.6rem;
  }
  
  .hero-description {
    font-size: 1rem;
    max-width: 700px;
  }
  
  .hero-profile-pic {
    width: 250px;
    height: 250px;
  }
  
  .hero-image-backdrop {
    width: 270px;
    height: 270px;
  }
}

/* Mobile Large / Tablet (768px and down) */
@media (max-width: 768px) {
  .hero-section {
    padding: 1rem;
    min-height: 100vh;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-text {
    min-width: auto;
    order: 2;
  }
  
  .hero-image {
    order: 1;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta {
    justify-content: center;
    gap: 1rem;
  }
  
  .cta-button {
    min-width: 140px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
  
  .hero-profile-pic {
    width: 200px;
    height: 200px;
  }
  
  .hero-image-backdrop {
    width: 220px;
    height: 220px;
  }
}

/* Mobile (480px and down) */
@media (max-width: 480px) {
  .hero-section {
    padding: 0.8rem;
    min-height: 100vh;
  }
  
  .hero-content {
    gap: 1.5rem;
    padding: 0 0.5rem;
  }
  
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 250px;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }
  
  .hero-profile-pic {
    width: 150px;
    height: 150px;
  }
  
  .hero-image-backdrop {
    width: 170px;
    height: 170px;
  }
  
  .hero-scroll-indicator {
    font-size: 0.8rem;
    gap: 0.3rem;
  }
  
  .scroll-arrow {
    width: 16px;
    height: 16px;
  }
}