/*
====================================
1. GLOBAL STYLES & LAYOUT
====================================
*/
:root {
  --primary-color: #ff4d6d; /* Bright Pink/Red */
  --secondary-color: #c9184a; /* Deep Rose */
  --background-color: #fff0f3; /* Very Light Pink */
  --text-color: #590d22; /* Dark Wine (for readability) */
  --card-bg: #ffffff; /* White for the card body */
}

body {
  font-family: "Merriweather", serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;

  /* This creates the "Card" look */
  max-width: 600px;
  margin: 50px auto;
  padding: 40px;
  background-color: var(--card-bg);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Adds a soft shadow */
  text-align: center;
}

/* 
====================================
2. HEADER & TITLES
====================================
*/

h1 {
  font-size: 2.2em;
  color: var(--secondary-color);
  padding-bottom: 10px;
  border-bottom: 3px dashed var(--primary-color); /* Dashed line for a craft feel */
  margin-bottom: 20px;
}

h2 {
  color: var(--primary-color);
  padding-top: 20px;
  font-style: italic;
}

.bigbold {
  background-color: var(--background-color);
  border: 2px solid var(--primary-color);
  padding: 15px;
  font-weight: 700;
  font-size: 1.2rem;
  display: inline-block;
  border-radius: 50px; /* Makes the box pill-shaped */
  margin-bottom: 20px;
}

/* 
====================================
3. IMAGES & LISTS
====================================
*/
img {
  border: 8px solid white;
  outline: 2px solid var(--primary-color); /* Double border effect */
  border-radius: 15px;
  display: block;
  margin: 20px auto;
  max-width: 100%;
  height: auto;
  /* Rotation makes it look like a scrapbooked photo */
  transform: rotate(-2deg);
  transition: transform 0.3s; /* Smooth movement when hovering */
}

img:hover {
  transform: rotate(0deg) scale(1.05); /* Straightens and grows when hovered */
}

ul {
  list-style-type: "❤️ "; /* Changes bullets to hearts! */
  padding-left: 20px;
  text-align: left;
  display: inline-block; /* Helps center the list block */
}

ul li {
  padding: 8px 0;
}

ul a {
  color: var(--secondary-color);
  font-weight: 700;
  text-decoration: underline;
}

ul a:hover {
  color: var(--primary-color);
  text-decoration: none;
}
