/* ========================
   Meyer Reset
======================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote::before, blockquote::after,
q::before, q::after {
  content: '';
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ========================
   Global Styles
======================== */
body {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  background-color: #faf7f2;
  color: #2c2c2c;
  line-height: 1.6;
}

nav a, h1, h2, h3 {
  font-family: "Montserrat", "Arial Black", Arial, sans-serif;
}

/* ========================
   Header & Nav
======================== */
header {
  background-color: #d9c6b0;
  text-align: center;
  border-bottom: 3px solid #bda58b;
  padding: 10px 0; 
  position: relative; 
}

header img {
  position: absolute;
  left: 20px; 
  top: 50%;
  transform: translateY(-50%); 
  display: block;
  margin: 0 auto 1px auto;
}

header h1 {
  font-size: 2.2em;
  color: #2b2b2b;
}

nav {
  margin-top: 10px;
}

nav ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0;
  margin: 0;
}

nav li {
  list-style: none;
}

nav a {
  display: inline-block;
  margin: 0 10px;
  text-decoration: none;
  color: #2b2b2b;
  font-weight: bold;
}

nav a:hover {
  color: #725e43;
}

/* ========================
   Main
======================== */
main {
  max-width: 900px;
  margin: 30px auto;
}


h2 {
  font-size: 2em;
  color: #3b3b3b;
  margin-bottom: 15px;
}

p {
  font-size: 1.1em;
  color: #3b3b3b;
  margin-bottom: 20px;
}

/* ========================
   cards of the objects
======================== */
section {
  background-color: #fffdf9;
  border: 1px solid #e2d5c3;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

section img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 15px;
}

section h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #4a3f35;
}

section a {
  text-decoration: none;
  color: #725e43;
  font-weight: bold;
}

section a:hover {
  text-decoration: underline;
}

/* ========================
   Footer
======================== */
footer {
  text-align: center;
  padding: 20px 0;
  color: #6a5c4f;
  border-top: 2px solid #bda58b;
  font-size: 0.9em;
}
