/* =========================
   GLOBAL STYLES
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fffaf7;
  color: #222;
  line-height: 1.8;
}

/* =========================
   CONTAINER
========================= */
main {
  width: 100%;
  padding: 20px 0;
}

article {
  width: 90%;
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* =========================
   HEADINGS
========================= */
h1 {
  font-size: 34px;
  margin-bottom: 20px;
  color: #b76e79;
  font-weight: 700;
}

h2 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #222;
  border-left: 4px solid #b76e79;
  padding-left: 10px;
}

/* =========================
   PARAGRAPH
========================= */
p {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

/* =========================
   LISTS
========================= */
ul {
  margin: 15px 0 20px 20px;
}

ul li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #444;
}

/* =========================
   HEADER / FOOTER PLACEHOLDER
========================= */
#header-placeholder,
#footer-placeholder {
  width: 100%;
}

/* =========================
   ARTICLE SPACING
========================= */
section {
  margin-bottom: 25px;
}

/* =========================
   HOVER TEXT EFFECT
========================= */
article p:hover {
  color: #333;
  transition: 0.3s;
}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 768px) {
  article {
    padding: 25px;
  }

  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 18px;
  }

  p {
    font-size: 15px;
  }
}

/* =========================
   PREMIUM LOOK IMPROVEMENTS
========================= */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection color */
::selection {
  background: #b76e79;
  color: #fff;
}

/* Links (if added later) */
a {
  color: #b76e79;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}