section#about.about-me > h2.section-title {
  font-size: 2rem;
  font-weight: 200;
  margin-bottom: 40px;
  font-family: 'Bangers', cursive;
  color: var(--color-header-primary);
  transition: color 0.3s ease;
}

/* =============  ABOUT ME SECTION ============= */
.about-me{
  width: 100%;
  max-width: clamp(300px, 90vw, 1000px);
  margin: 0 auto;
  background: transparent;
  position: relative;
  z-index: 4; /* above dust */
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  text-align: left;
  font-size: 1rem;
  line-height: 1.6;
  justify-content: center;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 40px;
  font-family: 'Bangers', cursive;
  color: var(--color-header-primary);
  transition: color 0.3s ease;
}

.content-wrapper {
  display: flex;
  gap: clamp(0px, 5vw, 150px); /* Increased gap: 50px minimum, 150px maximum */
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: clamp(300px, 95vw, 1200px);
}

/* Mobile responsive - vertical layout under 768px */
@media (max-width: 767px) {
  .content-wrapper {
    flex-direction: column;
    gap: 4rem; /* Increased mobile gap from 20px to 40px */
    align-items: center;
  }
  
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
}

/* Polaroid Photo */
.polaroid {
  background: #f8f8f8;
  padding: 15px 15px 60px 15px;
  border-radius: 3px;
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.3),
    0 6px 20px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: rotate(-5deg);
  transition: all 0.3s ease;
  position: relative;
  flex-shrink: 0;
  /* Prevent user selection of the element */
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;

  /* Prevent dragging the element */
  -webkit-user-drag: none;
}

.polaroid img {
  width: 100%; 
  max-width: 280px; 
  aspect-ratio: 7 / 8;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
  display: block;

  /* Prevent image selection and dragging */
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-drag: none;
}


/* Tape effects for polaroid */
.tape-top {
  position: absolute;
  width: 90px;
  height: 40px;
  background: rgba(255, 255, 255, 0.7);
  top: -12px;
  right: -35px;
  transform: rotate(45deg);
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.tape-bottom {
  position: absolute;
  width: 90px;
  height: 40px;
  background: rgba(255, 255, 255, 0.8);
  bottom: -12px;
  left: -35px;
  transform: rotate(45deg);
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}


/* Paper-style text */
.paper-text {
  background: linear-gradient(135deg, #f9f7f4 0%, #f0ede8 100%);
  padding: 20px 13px;
  border-radius: 8px;
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  width: 100%;
  flex: 1;
  transform: rotate(1deg);
  transition: transform 0.3s ease;
  margin-left: 20px; /* Additional margin for extra spacing */
}

.paper-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50px;
  width: 2px;
  height: 100%;
  background: #e8b4b4;
  opacity: 0.3;
}

.paper-text::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: repeating-linear-gradient(
    transparent,
    transparent 38px,
    #e8b4b4 38px,
    #b4b9e8 40px
  );
  opacity: 0.15;
  pointer-events: none;
}

/* Mobile adjustments for paper text */
@media (max-width: 767px) {
  .paper-text {
    transform: rotate(0.5deg);
    padding: 18px 12px;
    max-width: 90vw;
    margin-left: 0; /* Remove left margin on mobile */
  }
  
  .polaroid {
    margin-right: 0; /* Remove right margin on mobile */
  }
}

.handwritten-text {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: #33497f;
  line-height: 1.8;
  position: relative;
  z-index: 2; /* above dust */
  padding-left: 2.5rem;
  padding-top: 10px;
}

.handwritten-text h3 {
  font-size: 28px;
  color: #c0392b;
  margin-bottom: 20px;
  font-weight: 700;
}

.handwritten-text p {
  margin-bottom: 15px;
}

/* Mobile adjustments for handwritten text */
@media (max-width: 767px) {
  .handwritten-text {
    font-size: 20px;
    padding-left: 2rem;
  }
  
  .handwritten-text h3 {
    font-size: 26px;
    margin-bottom: 15px;
  }
}

.highlight {
  background: linear-gradient(120deg, transparent 0%, #ffcccc 30%, #ffcccc 70%, transparent 100%);
  padding: 2px 4px;
  border-radius: 3px;
}