/* CSS is how you can add@import url('https://fonts.googleapis.com/css2?family=Cherry+Bomb+One&family=Fredoka:wght@400;600&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Fredoka', sans-serif;
  background-color: #FFE5EC;
  color: #4a1a2c;
}

h1, h2, h3 {
  font-family: 'Cherry Bomb One', cursive;
  color: #A0004D;
  text-align: center;
}

section {
  padding: 30px 20px;
  background-color: #FFC2D1;
  border-radius: 20px;
  margin: 30px auto;
  width: 90%;
  max-width: 700px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

input, select, textarea, button {
  display: block;
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0 20px 0;
  border-radius: 15px;
  border: none;
  font-size: 16px;
  font-family: 'Fredoka', sans-serif;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  box-shadow: 0 0 5px #FFB3C6;
}

button {
  background-color: #FFB3C6;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

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

.title-icon {
  font-size: 1.5em;
  margin-right: 10px;
}

.kiss-title {
  font-family: 'Cherry Bomb One', cursive;
  font-size: 1.8em;
  text-align: center;
  color: #A0004D;
  margin-bottom: 10px;
}

.card {
  background-color: #fff;
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.map-img {
  max-width: 100%;
  border-radius: 10px;
  margin-top: 10px;
}

.kiss-cursor {
  cursor: url('images/kiss-cursor.png'), auto;
}