/* canvas.css — light pink & white theme with black text */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Raleway:wght@400;700&display=swap');

body {
  margin: 0;
  padding: 0;
  background-color: #fff0f5; /* light pink */
  color: #111; /* black text */
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  line-height: 1.7;
}

header {
  background-color: #ffe4e1; /* soft blush */
  padding: 30px;
  text-align: center;
  border-bottom: 2px solid #ff69b4; /* hot pink accent */
}

header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5em;
  color: #ff69b4;
  margin: 0;
}

nav {
  background-color: #fff5f5;
  text-align: center;
  padding: 15px;
  border-bottom: 1px solid #ff69b4;
}

nav a {
  color: #111;
  text-decoration: none;
  margin: 0 20px;
  font-weight: bold;
  font-size: 1.1em;
}

nav a:hover {
  color: #ff69b4;
}

main {
  padding: 40px;
  max-width: 1000px;
  margin: auto;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2em;
  color: #ff69b4;
  text-align: center;
  margin-top: 40px;
}

p {
  margin-bottom: 25px;
}

img {
  max-width: 100%;
  height: auto;
  border: 2px solid #ff69b4;
}

/* Side-by-side images */
.image-pair {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
}

/* Gallery */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 50px;
}

.gallery img {
  width: 220px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px #ff69b4;
}

/* Canvas */
.canvas-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
}

canvas {
  border: 4px solid #ff69b4;
  background-color: #fff;
  box-shadow: 0 0 15px #ff69b4;
}

/* Footer */
footer {
  background-color: #ffe4e1;
  color: #111;
  text-align: center;
  padding: 25px;
  border-top: 2px solid #ff69b4;
  font-size: 1.1em;
}

/* Goodbye image */
.goodbye {
  background-color: #fff0f5;
  text-align: center;
  padding: 40px;
}

.goodbye img {
  border: 5px solid #ff69b4;
  width: 420px;
}

.goodbye p {
  color: #ff69b4;
  font-size: 1.3em;
  margin-top: 15px;
  font-family: 'Playfair Display', serif;
}

.about-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.enlarge-on-hover {
  transition: transform 0.3s ease;
}

.enlarge-on-hover:hover {
  transform: scale(1.2);
  z-index: 1;
}


