/* =============================
   AllureNotes Modern Color Palette
   ============================= */

/* --- Body --- */
body {
  background-color: #f8f4f0; /* soft cream background */
  color: #2b2b2b;            /* dark gray text for readability */
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* --- Links --- */
a {
  color: #ff5a5f;            /* coral links */
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #ff7f81;            /* lighter coral on hover */
  text-decoration: underline;
}

/* --- Header --- */
header {
  background-color: #ff5a5f; /* coral header */
  color: #ffffff;
  padding: 20px 0;
  text-align: center;
}

/* --- Navigation (if any) --- */
nav a {
  color: #ffffff;
  margin: 0 15px;
  font-weight: bold;
}

nav a:hover {
  color: #ffe6e5;
}

/* --- Buttons --- */
button, .btn {
  background-color: #ff5a5f;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

button:hover, .btn:hover {
  background-color: #ff7f81;
}

/* --- Footer --- */
footer {
  background-color: #2b2b2b; /* dark footer */
  color: #ffffff;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
}

/* --- Sections / Containers --- */
section {
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Headings --- */
h1, h2, h3, h4, h5, h6 {
  color: #2b2b2b;
  margin-bottom: 20px;
}

/* --- Highlights --- */
.highlight {
  color: #ff5a5f;
  font-weight: bold;
}

/* --- Cards / Panels --- */
.card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  margin-bottom: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
