@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;600&family=Baloo+2&display=swap');

/* ========== GLOBAL STYLES ========== */
body {
  font-family: 'Fredoka', sans-serif;
  background: linear-gradient(135deg, #ffe0f0, #e0f7ff);
  margin: 0;
  padding: 0;
  color: #4d4d4d;
  line-height: 1.6;
  min-height: 100vh;
}

/* ========== MAIN CONTAINER ========== */
main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: white;
  border-radius: 2rem;
  box-shadow: 0 0 20px #ffc0cb;
}

/* ========== HEADINGS ========== */
h1, h2, h3 {
  font-family: 'Baloo 2', cursive;
  text-shadow: 1px 1px 2px #ffb6c1;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 1rem;
}

/* ========== LINKS ========== */
a {
  color: #ff69b4;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: underline;
}

/* ========== IMAGES ========== */
img {
  border: 5px solid #ffb6c1;
  border-radius: 2rem;
  box-shadow: 0 8px 15px rgba(255, 105, 180, 0.3);
  transition: transform 0.3s ease;
  max-width: 100%;
}

img:hover {
  transform: scale(1.05) rotate(1deg);
}

/* ========== LISTS ========== */
ul, ol {
  background-color: #fff0f5;
  padding: 1rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

/* OPTIONAL: Custom heart bullets for unordered list */
ul li {
  list-style: none;
  position: relative;
  padding-left: 1.5rem;
}

ul li::before {
  content: "💗";
  position: absolute;
  left: 0;
  top: 0;
}

/* ========== BUTTONS ========== */
button {
  background-color: #ff69b4;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 2rem;
  box-shadow: 0 4px 8px rgba(255, 105, 180, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
}

button:hover {
  background-color: #ff1493;
  box-shadow: 0 6px 12px rgba(255, 105, 180, 0.7);
  transform: scale(1.05);
}

button:focus {
  outline: 2px solid #ffb6c1;
}

/* ========== FORM INPUTS ========== */
input[type="text"],
input[type="url"],
textarea {
  border: 2px solid #ffb6c1;
  border-radius: 1rem;
  padding: 0.5rem 1rem;
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  margin-top: 0.5rem;
  box-shadow: 0 2px 6px rgba(255, 182, 193, 0.5);
  transition: border-color 0.3s ease;
  width: 100%;
}

input[type="text"]:focus,
input[type="url"]:focus,
textarea:focus {
  border-color: #ff69b4;
  outline: none;
}
