/* ================= Reset ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f6fa; /* matches About Me */
  text-align: center;
  line-height: 1.6;
  color: #333;
}

/* ================= Header & Footer ================= */
header, footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
}

footer {
  margin-top: 20px;
  font-size: 0.9rem;
}

/* ================= Navigation ================= */
nav {
  background-color: #555;
  padding: 10px 0;
  margin: 15px 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  transition: color 0.3s, text-decoration 0.3s;
}

nav a:hover {
  color: #ff9a9e;
  text-decoration: underline;
}

/* ================= Intro Section ================= */
#intro {
  background-color: #e0f7fa; /* soft, welcoming color */
  color: #004d40; /* dark teal for contrast */
  padding: 40px 20px;
  margin: 20px auto;
  width: 80%;
  max-width: 1000px;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

#intro:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

#intro h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

#intro p {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ================= Sections ================= */
section {
  width: 80%;
  max-width: 1000px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  border: 2px solid #000;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

section:hover {
  transform: translateY(-5px);
}

/* ================= Buttons ================= */
.btn {
  padding: 12px 25px;
  margin: 10px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 5px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.btn.red { background-color: crimson; color: #fff; }
.btn.green { background-color: seagreen; color: #fff; }
.btn.shadow { background-color: steelblue; color: #fff; box-shadow: 2px 2px 5px rgba(0,0,0,0.4); }

/* ================= Image Hover ================= */
.hover-img {
  width: 250px;
  border-radius: 10px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hover-img:hover {
  transform: scale(1.1);
  opacity: 0.85;
}

/* ================= Quote Section ================= */
#quote {
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  padding: 30px 15px;
  border-radius: 10px;
}

blockquote {
  font-style: italic;
  font-size: 1.2rem;
  padding: 15px 20px;
  border-left: 5px solid #333;
  background: rgba(255, 255, 255, 0.85);
  display: inline-block;
  margin-top: 15px;
}

