/* Presentation */

.presentation-div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  min-height: 100vh;
  padding: 2rem;
}

/* Presentation music note */
#presentationSection {
  position: relative;
}

.music-note {
  width: 64px;
  height: 64px;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
  position: absolute;
  background-image: url("../images/musicNote.svg");
  background-repeat: no-repeat;
}

/* Float them around the perimeter to avoid the central text/img area */
.note1 {
  top: 15%;
  left: 10%;
  transform: rotate(15deg);
}

.note2 {
  top: 75%;
  left: 15%;
  transform: rotate(-15deg);
}

.note3 {
  top: 25%;
  right: 15%;
  left: auto;
  transform: rotate(15deg);
}

.note4 {
  top: 80%;
  right: 20%;
  left: auto;
  transform: rotate(15deg);
}

.note5 {
  top: 45%;
  left: 5%;
  transform: rotate(-15deg);
}

.note6 {
  top: 60%;
  right: 5%;
  left: auto;
  transform: rotate(-15deg);
}

.note7 {
  top: 5%;
  left: 45%;
  transform: rotate(15deg);
}

.note8 {
  top: 90%;
  left: 50%;
  transform: rotate(-15deg);
}

.note8 {
  top: 10%;
  left: 95%;
  transform: rotate(-15deg);
}

/* Adjust distribution slightly for mobile */
@media (max-width: 768px) {
  .note2 {
    top: 85%;
  }
  .note3 {
    top: 15%;
    right: 10%;
  }
  .note6 {
    top: 50%;
    right: 5%;
  }
  .note8 {
    top: 95%;
  }

  .presentation-div {
    flex-direction: column-reverse;
    height: auto;
    margin-top: 2rem;
  }
}

.greating-p {
  font-size: 1.5rem;
  color: var(--clr-secondary);
}

.title-name {
  font-size: 3rem;
  color: var(--clr-secondary);
  font-family: var(--font-signature);
}

.sub-title {
  font-size: 1.5rem;
  color: var(--clr-text-muted);
}

.main-presentation {
  font-size: 1.2rem;
  color: var(--clr-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.presentation-btn-div {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn-contact,
.btn-lessons {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  z-index: 10;
  transition: all 0.3s ease-in-out;
}

.btn-lessons {
  background-color: #ffffff;
  border: 2px solid var(--clr-secondary);
  color: var(--clr-secondary);
}

.btn-lessons:hover {
  background-color: var(--clr-secondary-hover);
  color: #ffffff;
}

.btn-contact:hover {
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .title-name {
    font-size: 2.2rem;
  }
  .sub-title {
    font-size: 1.2rem;
  }
  .main-presentation {
    font-size: 1rem;
  }
}

.main-img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: var(--clr-background, #ffffff);
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
}

@media (max-width: 768px) {
  .main-img {
    width: 250px;
    height: 250px;
  }
}
