:root {
  --primary-danger: #ff1515;
  --secondary-danger: #c82333;
  --bg-light: #f8f9fa;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --text-dark: #2d3436;
  --text-muted: #636e72;
  --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.08);
  --border-radius-lg: 24px;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Header & Typography */
h2, h3 {
  font-weight: 800;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 4px;
  background: var(--primary-danger);
  border-radius: 2px;
}

/* Main Container */
main {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

/* Section Styling */
#about-me {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

article {
  padding: 3rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: slideUp 0.8s ease-out backwards;
}

article:nth-child(2) { animation-delay: 0.2s; }
article:nth-child(3) { animation-delay: 0.4s; }

article:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Hero Image Container */
.hero-image-container {
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.aboutme-hero-img {
  width: 100%;
  height: auto;
  min-height: 400px;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.33, 1, 0.68, 1);
}

.hero-image-container:hover .aboutme-hero-img {
  transform: scale(1.05);
}

/* Hover Lift Effect for Buttons/Cards */
.hover-lift {
  transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
}

.hover-lift:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(255, 21, 21, 0.25);
}

/* Image Row (Disabled) */
.aboutme-img {
  display: none;
}

/* Achievement Highlight */
.achievement-card {
  background: linear-gradient(135deg, var(--primary-danger), #ff4757);
  color: white;
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  margin: 2rem 0;
  box-shadow: 0 10px 20px rgba(255, 21, 21, 0.2);
}

.achievement-card h3 {
  color: white;
}

.achievement-card p {
  opacity: 0.9;
  font-size: 1.1rem;
}

/* Aside / Contact */
aside {
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  border: none;
  box-shadow: var(--shadow-premium);
  text-align: center;
}

aside h3 { margin-bottom: 1.5rem; }

aside ul {
  list-style: none;
  padding: 0;
  font-size: 1.2rem;
  color: var(--primary-danger);
  font-weight: 600;
}

/* Buttons */
#myBtn {
  background: var(--primary-danger);
  border-radius: 50px;
  padding: 1rem 2rem;
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

#myBtn:hover {
  background: var(--secondary-danger);
  transform: translateY(-3px) scale(1.05);
}

/* Animations */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  main { padding: 1.5rem; margin: 2rem auto; }
  article { padding: 2rem; }
  .aboutme-img { height: 200px; }
}
