/* --- Professional About Section Styles: Handles about, contact, achievements, and competencies --- */

/* About Subtitle */
.about-subtitle {
  font-size: 1.2rem;
  color: #94a3b8;
  margin-top: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Professional Contact Info */
.profile-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

.contact-icon {
  font-size: 1rem;
}

.contact-link {
  color: #60a5fa;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #93c5fd;
}

.contact-text {
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Professional Achievements */
.professional-achievements {
  margin-top: 1.5rem;
}

.achievements-title {
  font-size: 1.1rem;
  color: #e2e8f0;
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: center;
}

.achievements-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.achievement-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.achievement-item:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

.achievement-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.achievement-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.achievement-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fbbf24;
}

.achievement-label {
  font-size: 0.85rem;
  color: #cbd5e1;
  font-weight: 500;
}

/* Section Headings */
.section-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  border-radius: 2px;
}

/* Professional Introduction */
.professional-intro {
  margin-bottom: 1rem;
}

/* Core Competencies */
.core-competencies {
  margin-bottom: 1rem;
}

.competencies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.competency-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.competency-item:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.competency-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.competency-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 0.5rem 0;
}

.competency-content p {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

/* Experience Highlights */
.experience-highlights {
  margin-bottom: 1rem;
}

.highlights-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.highlight-item:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.highlight-marker {
  width: 12px;
  height: 12px;
  background: #fbbf24;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5rem;
  position: relative;
}

.highlight-marker::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: rgba(251, 191, 36, 0.3);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.highlight-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 0.5rem 0;
}

.highlight-content p {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

/* Enhanced Call to Action */
.about-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.about-cta-btn.primary {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1e293b;
}

.about-cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.about-cta-btn.secondary {
  background: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
  border-color: rgba(59, 130, 246, 0.3);
}

.about-cta-btn.secondary:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.about-cta-btn.tertiary {
  background: rgba(34, 197, 94, 0.1);
  color: #4ade80;
  border-color: rgba(34, 197, 94, 0.3);
}

.about-cta-btn.tertiary:hover {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

/* Light Mode Styles */
body.light-mode .about-subtitle {
  color: #64748b;
}

body.light-mode .contact-item {
  background: rgba(59, 130, 246, 0.05);
  border-color: rgba(59, 130, 246, 0.1);
}

body.light-mode .contact-item:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.2);
}

body.light-mode .contact-link {
  color: #2563eb;
}

body.light-mode .contact-link:hover {
  color: #1d4ed8;
}

body.light-mode .contact-text {
  color: #475569;
}

body.light-mode .achievement-item {
  background: rgba(59, 130, 246, 0.05);
  border-color: rgba(59, 130, 246, 0.1);
}

body.light-mode .achievement-item:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.2);
}

body.light-mode .achievement-label {
  color: #475569;
}

body.light-mode .competency-item {
  background: rgba(59, 130, 246, 0.05);
  border-color: rgba(59, 130, 246, 0.1);
}

body.light-mode .competency-item:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.2);
}

body.light-mode .competency-content h4 {
  color: #1e293b;
}

body.light-mode .competency-content p {
  color: #475569;
}

body.light-mode .highlight-item {
  background: rgba(59, 130, 246, 0.05);
  border-color: rgba(59, 130, 246, 0.1);
}

body.light-mode .highlight-item:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.2);
}

body.light-mode .highlight-content h4 {
  color: #1e293b;
}

body.light-mode .highlight-content p {
  color: #475569;
}

body.light-mode .about-cta-btn.secondary {
  background: rgba(59, 130, 246, 0.05);
  border-color: rgba(59, 130, 246, 0.1);
}

body.light-mode .about-cta-btn.secondary:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.2);
}

body.light-mode .about-cta-btn.tertiary {
  background: rgba(34, 197, 94, 0.05);
  border-color: rgba(34, 197, 94, 0.1);
}

body.light-mode .about-cta-btn.tertiary:hover {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .competencies-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-subtitle {
    font-size: 1.1rem;
  }
  
  .section-heading {
    font-size: 1.3rem;
  }
  
  .competency-item,
  .highlight-item {
    padding: 1.2rem;
  }
  
  .about-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .about-cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-subtitle {
    font-size: 1rem;
  }
  
  .contact-item {
    padding: 0.4rem;
  }
  
  .contact-link,
  .contact-text {
    font-size: 0.8rem;
  }
  
  .achievement-item {
    padding: 0.8rem;
  }
  
  .achievement-number {
    font-size: 1.1rem;
  }
  
  .achievement-label {
    font-size: 0.8rem;
  }
  
  .section-heading {
    font-size: 1.2rem;
  }
  
  .competency-item,
  .highlight-item {
    padding: 1rem;
  }
  
  .competency-icon {
    font-size: 1.5rem;
  }
  
  .competency-content h4 {
    font-size: 1rem;
  }
  
  .competency-content p {
    font-size: 0.85rem;
  }
  
  .highlight-content h4 {
    font-size: 1rem;
  }
  
  .highlight-content p {
    font-size: 0.85rem;
  }
  
  .about-cta-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Animation for highlight markers */
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

/* === Unique About Me Section Enhancements === */
#about-section {
  min-height: 500px;
  padding: 60px 0 60px 0;
  position: relative;
  background: linear-gradient(120deg, #1a2539 60%, #232946 100%);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  overflow: visible;
}

#about-section::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5%;
  width: 12px;
  height: 90%;
  background: linear-gradient(180deg, #fbbf24 0%, #1e40af 100%);
  border-radius: 8px;
  z-index: 2;
  box-shadow: 0 0 24px 4px #fbbf2440;
}

.about-animated-content {
  width: 100%;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem 1.5rem 2rem 2.5rem;
  background: rgba(34, 52, 70, 0.85);
  border-radius: 2rem;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  position: relative;
  z-index: 3;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-profile-img-outer {
  position: relative;
  margin-bottom: 1.5rem;
}

.about-profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid #fbbf24;
  box-shadow: 0 0 0 8px #1e40af33, 0 8px 32px 0 #1e40af22;
  object-fit: cover;
  z-index: 2;
  background: #fff;
  transition: box-shadow 0.3s;
}

.about-profile-img:hover {
  box-shadow: 0 0 0 12px #fbbf24cc, 0 8px 32px 0 #1e40af55;
}

.about-profile-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #fbbf24 0%, #1e40af 80%, transparent 100%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  filter: blur(12px);
  opacity: 0.7;
  z-index: 1;
  animation: pulseGlow 2.5s infinite alternate;
}

@keyframes pulseGlow {
  0% { opacity: 0.7; filter: blur(12px); }
  100% { opacity: 1; filter: blur(18px); }
}

/* Floating quote badge */
.about-floating-quote {
  position: absolute;
  top: 1.5rem;
  right: 2.5rem;
  background: linear-gradient(90deg, #fbbf24 60%, #1e40af 100%);
  color: #232946;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.8rem 1.5rem;
  border-radius: 2rem 2rem 2rem 0.5rem;
  box-shadow: 0 4px 24px 0 #1e40af22;
  z-index: 10;
  letter-spacing: 0.5px;
  opacity: 0.95;
  pointer-events: none;
  animation: fadeInUp 1.2s;
}

@media (max-width: 900px) {
  #about-section {
    padding: 2rem 0 2rem 0;
  }
  .about-animated-content {
    min-height: 220px;
    padding: 1rem 0.5rem 1rem 1rem;
  }
  .about-floating-quote {
    right: 1rem;
    font-size: 1rem;
    padding: 0.6rem 1rem;
  }
  .about-profile-img {
    width: 100px;
    height: 100px;
  }
  .about-profile-glow {
    width: 120px;
    height: 120px;
  }
  .about-animated-name {
    font-size: 1.5rem;
  }
  .about-animated-title {
    font-size: 1.1rem;
  }
  .about-animated-caption {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  #about-section {
    padding: 1.5rem 0 1.5rem 0;
  }
  .about-animated-content {
    min-height: 220px;
    padding: 1rem 0.5rem 1rem 1rem;
  }
  .about-floating-quote {
    right: 0.5rem;
    font-size: 0.9rem;
    padding: 0.4rem 0.7rem;
  }
  .about-profile-img {
    width: 70px;
    height: 70px;
  }
  .about-profile-glow {
    width: 90px;
    height: 90px;
  }
  .about-animated-name {
    font-size: 1.1rem;
  }
  .about-animated-title {
    font-size: 0.95rem;
  }
  .about-animated-caption {
    font-size: 0.85rem;
  }
}

.about-animated-name {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
}

.about-animated-title {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.about-animated-caption {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.about-animated-stats {
  gap: 1.5rem;
}

/* About Me Section Background Image at Full Opacity */
.about-wide-section {
  background: none !important;
  background-image: none !important;
}

/* About Me Section Background Image - Night Mode */
.dark-mode .about-wide-section {
  background: none !important;
  background-image: none !important;
}

/* Hero/Intro Section Background Image - Day Mode */
.hero-section {
  background-image: url('../images/staticImgs/island.avif');
  background-size: cover;
  background-position: center;
  min-height: 500px;
  position: relative;
}

/* Hero/Intro Section Background Image - Night Mode */
.dark-mode .hero-section {
  background-image: url('../images/staticImgs/moon.avif');
}

/* Wider About Me Section */
.about-wide-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 1100px;
  width: 95%;
  gap: 3rem;
  background: none;
  position: relative;
  z-index: 1;
}

.about-img-col {
  flex: 0 0 260px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-img-col .profile-pic {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
  border: 4px solid #2e3a5a;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Shape Animation Options */
.about-img-col .profile-pic.shape-animation-1 {
  animation: morphShape1 8s ease-in-out infinite;
}

.about-img-col .profile-pic.shape-animation-2 {
  animation: morphShape2 6s ease-in-out infinite;
}

.about-img-col .profile-pic.shape-animation-3 {
  animation: morphShape3 10s ease-in-out infinite;
}

.about-img-col .profile-pic.shape-animation-4 {
  animation: morphShape4 7s ease-in-out infinite;
}

.about-img-col .profile-pic.shape-animation-5 {
  animation: morphShape5 9s ease-in-out infinite;
}

/* Hover effects for shape animations */
.about-img-col .profile-pic.shape-animation-1:hover {
  animation-play-state: paused;
  transform: scale(1.05) rotate(5deg);
}

.about-img-col .profile-pic.shape-animation-2:hover {
  animation-play-state: paused;
  transform: scale(1.05) rotate(-5deg);
}

.about-img-col .profile-pic.shape-animation-3:hover {
  animation-play-state: paused;
  transform: scale(1.05) rotate(10deg);
}

.about-img-col .profile-pic.shape-animation-4:hover {
  animation-play-state: paused;
  transform: scale(1.05) rotate(-10deg);
}

.about-img-col .profile-pic.shape-animation-5:hover {
  animation-play-state: paused;
  transform: scale(1.05) rotate(15deg);
}

/* Keyframe Animations for Different Shapes */
@keyframes morphShape1 {
  0%, 100% { border-radius: 50%; }
  25% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  50% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  75% { border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%; }
}

@keyframes morphShape2 {
  0%, 100% { border-radius: 50%; }
  20% { border-radius: 25% 75% 25% 75% / 75% 25% 75% 25%; }
  40% { border-radius: 75% 25% 75% 25% / 25% 75% 25% 75%; }
  60% { border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%; }
  80% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

@keyframes morphShape3 {
  0%, 100% { border-radius: 50%; }
  16.66% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  33.33% { border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%; }
  50% { border-radius: 70% 30% 60% 40% / 30% 60% 40% 70%; }
  66.66% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  83.33% { border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%; }
}

@keyframes morphShape4 {
  0%, 100% { border-radius: 50%; }
  25% { border-radius: 25% 75% 25% 75% / 75% 25% 75% 25%; }
  50% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  75% { border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%; }
}

@keyframes morphShape5 {
  0%, 100% { border-radius: 50%; }
  20% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  40% { border-radius: 70% 30% 60% 40% / 30% 60% 40% 70%; }
  60% { border-radius: 25% 75% 25% 75% / 75% 25% 75% 25%; }
  80% { border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%; }
}

.about-content-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-align: left;
  opacity: 0;
  transform: translateY(40px);
}

.about-animate .about-content-col {
  opacity: 1;
  transform: translateY(0);
}

/* Remove animation from image column */
.about-img-col {
  opacity: 1;
  transform: none;
  transition: none;
}

/* ========================================
   MOBILE OPTIMIZATIONS FOR ABOUT ME SECTION
   ======================================== */

@media (max-width: 768px) {
  /* Mobile About Me Layout */
  .about-wide-section {
    padding: 5rem 0 20px 0; /* Keep significant top padding on mobile */
    min-height: auto;
    background-attachment: scroll; /* Better mobile performance */
    margin-top: 3rem; /* Keep significant margin on mobile */
  }
  
  .about-wide-wrapper {
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
    text-align: center;
  }
  
  .about-img-col {
    flex: none;
    margin-bottom: 15px;
  }
  
  .about-img-col .profile-pic {
    width: 120px;
    height: 120px;
    border-width: 3px;
  }
  
  .about-content-col {
    text-align: center;
    padding: 0 10px;
  }
  
  .about-content-col .about-title {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
  
  .about-content-col .profile-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .about-content-col .about-intro {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  /* Better touch interactions */
  .about-img-col .profile-pic {
    transition: transform 0.2s ease;
  }
  
  .about-img-col .profile-pic:active {
    transform: scale(0.95);
  }
  
  /* Mobile shape animation optimizations */
  .about-img-col .profile-pic.shape-animation-1,
  .about-img-col .profile-pic.shape-animation-2,
  .about-img-col .profile-pic.shape-animation-3,
  .about-img-col .profile-pic.shape-animation-4,
  .about-img-col .profile-pic.shape-animation-5 {
    animation-duration: 12s; /* Slower on mobile for better performance */
  }
}

@media (max-width: 480px) {
  /* Extra small devices */
  .about-wide-section {
    padding: 4rem 0 15px 0; /* Keep significant top padding on extra small devices */
    margin-top: 2rem; /* Keep significant margin on very small screens */
  }
  
  .about-wide-wrapper {
    padding: 0 10px;
    gap: 15px;
  }
  
  .about-img-col .profile-pic {
    width: 100px;
    height: 100px;
    border-width: 2px;
  }
  
  .about-content-col .about-title {
    font-size: 1.6rem;
  }
  
  .about-content-col .profile-title {
    font-size: 1rem;
  }
  
  .about-content-col .about-intro {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .about-wide-section {
    padding: 15px 0;
  }
  
  .about-wide-wrapper {
    flex-direction: row;
    gap: 15px;
    align-items: center;
  }
  
  .about-img-col .profile-pic {
    width: 80px;
    height: 80px;
  }
  
  .about-content-col .about-title {
    font-size: 1.4rem;
  }
  
  .about-content-col .profile-title {
    font-size: 1rem;
  }
  
  .about-content-col .about-intro {
    font-size: 0.9rem;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .about-img-col .profile-pic:hover {
    transform: none;
  }
  
  .about-img-col .profile-pic:active {
    transform: scale(0.95);
  }
}

/* Performance optimizations */
@media (max-width: 768px) {
  .about-wide-section {
    background-attachment: scroll;
  }
  
  .about-content-col {
    transition-duration: 0.5s;
  }
  
  /* Reduce text shadow for better performance */
  .about-content-col .about-title {
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  }
  
  .about-content-col .about-intro {
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
  }
}

/* Accessibility improvements */
@media (max-width: 768px) {
  .about-content-col .about-title {
    color: #ffffff;
  }
  
  .about-content-col .profile-title {
    color: #cbd5e1;
  }
  
  .about-content-col .about-intro {
    color: #f1f5f9;
  }
  
  /* Better focus indicators */
  .about-img-col .profile-pic:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
  }
} 