body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fff0f5;
  color: #333;
}

header {
  background-color: #ffa0c4;
  color: white;
  padding: 20px;
  text-align: center;
}

.main-title {
  font-family: 'Cinzel', cursive;
  font-size: 40px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 10px;
}

section {
  padding: 20px;
  background-color: white;
  color: #1b1b1b;
  margin: 20px auto;
  border-radius: 10px;
  max-width: 900px;
  text-align: center;
}

.profile-img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 20px;
}

.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.gallery-container img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 2px solid #ffa0c4;
  border-radius: 10px;
  transition: transform 0.3s;
  cursor: pointer;
}

.gallery-container img:hover {
  transform: scale(1.05);
}

.featured-gallery img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border: 3px solid #ffa0c4;
  border-radius: 10px;
}

button {
  background-color: #ffa0c4;
  color: white;
  border: none;
  padding: 12px 25px;
  margin: 10px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}

button:hover {
  background-color: #ff69b4;
}

.hidden {
  display: none;
}

.gallery-section {
  margin-top: 20px;
}

footer {
  background-color: #ffa0c4;
  color: white;
  padding: 30px;
  text-align: center;
}

footer a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}

.single-image-section img.pricing-img {
  width: 400px;
  max-width: 90%;
  border: 3px solid #ffa0c4;
  border-radius: 10px;
  margin-top: 15px;
  object-fit: contain;
}

.reminder-list {
  list-style-type: "💖 ";
  padding-left: 20px;
  text-align: left;
  margin: 0 auto;
  max-width: 600px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 30px;
  right: 45px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

#polish-me-pretty h2 {
  font-family: 'WindSong', cursive;
  font-size: 64px;
  color: #ff69b4;
}

.dream-nails-title {
  color: #9d7f39;
}

.intro-text {
  font-family: 'Sono', sans-serif;
  font-size: 14px;
  color: #000000;
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

#nail-pricing h2,
#reminders h2 {
  font-family: 'Montez', serif;
  font-size: 45px;
  color: #9d7f39;
  margin-bottom: 15px;
}

.floating-message-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ff69b4;
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 999;
  transition: background-color 0.3s, transform 0.2s;
}

.floating-message-btn:hover {
  background-color: #ffa0c4;
  transform: scale(1.05);
}
