.about-me-section {
  margin-top: 1200px;
  width: 100%;
}

.about-me-section p {
  transition: all 0.7s ease; 
}


.about-me-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 18px;
  row-gap: 48px;
  width: 100%;
  justify-items: center;
  margin-bottom: 62vw;
}

.about-me-title:hover, .about-me-description:hover {
  color: #ffffff;
  transform: scale(1.03);
  transition: all 0.7s ease; 
  text-shadow: 2px 2px 5px rgb(255, 255, 255);
}

.about-me-title {
  font-size: clamp(30px, 3.4vw, 65px);
  color: #fff;
  text-shadow: 2px 2px 5px rgb(255, 255, 255);
  text-align: center;
  margin-bottom: 0.2em;
  text-decoration: underline;
  text-decoration-thickness: clamp(2px, 0.3vw, 5px);
}

.about-me-description {
  font-size: clamp(1rem, 2vw, 2rem);
  color: #fff;
  text-shadow: 2px 2px 5px rgb(255, 255, 255);
  text-align: center;
  margin-bottom: 2em;
  margin-top: 0.2em;
}
.about-me-box {
  margin-top: 200px;
  display: flex;
  justify-content: center;
  width: clamp(200px, 40vw ,700px);
  height: clamp(200px, 40vw ,700px);
  background-color: rgba(65, 13, 13, 0.8);
  grid-column: 2;
  position: relative;
  border-radius: 50px;
  overflow: visible;
}

.text-box {
  font-weight: 600;
  display: flex;
  color: rgb(204, 231, 238, 0.8);
  font-size: clamp(9px, 1.8vw, 40px);
  margin: clamp(25px, 4vw ,70px);
}

.album {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -2;
  transition: 0.5s ease;

  width: clamp(250px, 50vw, 850px);
  height: clamp(250px, 50vw, 850px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.album:hover {
  box-shadow: 0 45px 85px rgba(0, 0, 0, 0.5);
  transition: 0.5s ease;
}

.record {
  position: absolute;
  top: 50%;
  transform: translate(25vw, -50%);
  width: clamp(220px, 32vw, 1200px);    
  height: auto;
  z-index: -3;
  pointer-events: none;
  object-fit: contain;
}

@media (min-width: 1600px) {
  .record {
    transform: translate(25vw, -50%);
    width: clamp(320px, 40vw, 1600px);
  }
}
@media (max-width: 1200px) {
  .record {
    transform: translate(25vw, -50%);
    width: clamp(180px, 36vw, 700px);
  }
}
@media (max-width: 900px) {
  .record {
    transform: translate(25vw, -50%);
    width: clamp(140px, 44vw, 480px);
  }
}
@media (max-width: 600px) {
  .record {
    transform: translate(25vw, -50%);
    width: clamp(200px, 20vw, 300px);
  }
}

.end-flowers {
  bottom: 0;
  display: flex;
  width: 100%;
  filter: brightness(10);
  opacity: 0.8;
  position: absolute;
  z-index: -2;
  height: 29vw;
}

.pos {
  width: 100%;
  position: relative;
  left: 0;
  bottom: -300px;
  background: transparent;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-bar {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  background-color: rgba(36, 8, 8, 0.877);
}


.contact-bar img {
  margin-bottom: 0.5vw;
  filter: invert();
  height: clamp(32px, 10vw, 100px);
  width: clamp(32px, 10vw, 100px);
  transition: 0.5s ease;
  align-self: top;
  object-fit: cover;
}

.contact-bar img:hover {
  transform: scale(1.05);
  transition: 0.5s ease;
  cursor: pointer;
}


.tooltip {
  position: relative;
  display: inline-block;
  transition: 0.5s ease;
}

.tooltip-text {
  visibility: hidden;
  max-width: 90vw;
  width: auto;
  margin-left: 1vw;

  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 10;
  bottom: 0; /* Position above the image */
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  font-size: clamp(7px, 2vw, 20px);
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.contact-text {
  font-size: clamp(7px, 2vw, 18px);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  text-decoration: underline;
  margin-top: 12px;
}
