/* A Little Corner of Me — Final Style */

body {
  background: linear-gradient(180deg, #fff4e6 0%, #ffe6cc 100%);
  font-family: 'Playfair Display', serif;
  color: #4a2f18;
  margin: 0;
  padding: 0;
  line-height: 1.8;
  background-attachment: fixed;
}

/* ---------- Header ---------- */
header {
  text-align: center;
  background: rgba(255, 220, 180, 0.7);
  padding: 25px;
  border-bottom: 2px solid rgba(255, 180, 100, 0.4);
  box-shadow: 0 4px 20px rgba(255, 180, 100, 0.25);
}

header h1 {
  font-family: 'Caveat', cursive;
  color: #8b3a11;
  font-size: 2.7em;
  margin: 0;
  letter-spacing: 1px;
  text-shadow: 1px 1px 3px rgba(255, 210, 150, 0.8);
}

/* ---------- Navigation ---------- */
nav {
  margin-top: 10px;
}

nav a {
  color: #8b3a11;
  text-decoration: none;
  margin: 0 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -3px;
  background-color: #d97742;
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: #b24e16;
}

/* ---------- Intro Section ---------- */
.intro {
  max-width: 750px;
  margin: 60px auto;
  background: #fffaf4;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  text-align: center;
  transition: 0.3s ease;
}

.intro:hover {
  transform: scale(1.01);
  box-shadow: 0 10px 30px rgba(255, 190, 120, 0.25);
}

.intro h2 {
  font-family: 'Caveat', cursive;
  color: #a84416;
  font-size: 2.3em;
  margin-bottom: 10px;
}

.intro p {
  font-size: 1.05em;
  color: #5a4232;
}

/* ---------- Info Box ---------- */
.info {
  margin-top: 30px;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  text-align: left;
}

.info p {
  margin: 8px 0;
}

/* ---------- Footer ---------- */
footer {
  text-align: center;
  background-color: #ffd9b3;
  padding: 15px;
  font-size: 0.95em;
  color: #5a3214;
  border-top: 2px solid rgba(255, 180, 100, 0.4);
  font-family: 'Caveat', cursive;
}
