/* =============================
   BASE STYLES
============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #f8f7f5;
  color: #333;
  line-height: 1.7;
  font-size: 1rem;
}

/* =============================
   CONTAINER
============================= */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* =============================
   TYPOGRAPHY
============================= */
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #4a4034;
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #4a4034;
  margin: 2rem 0 1rem;
}

p {
  margin-bottom: 1rem;
}

ul {
  margin-left: 1.2rem;
  margin-bottom: 1.5rem;
}

ul li {
  margin-bottom: 0.5rem;
}

/* =============================
   LINKS
============================= */
a {
  color: #b19882;
  text-decoration: none;
  font-weight: 600;
}

a:hover,
a:focus {
  text-decoration: underline;
}

/* =============================
   BLOCKQUOTE
============================= */
blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: #7c6f61;
  border-left: 4px solid #b19882;
  padding-left: 1rem;
  margin: 1.5rem 0;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1.2rem;
  }

  body {
    font-size: 0.95rem;
  }
}
/* =============================
   HEADER
============================= */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e0dedb;
  padding: 1rem 0;
  justify.content:center;
  text-align: center;
}

.site-header .logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #4a4034;
  text-decoration: none;
}
.logo {
  justify-content:center;
}


.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  justify-content:center;
}

.main-nav a {
  color: #4a4034;
  font-weight: 600;
  text-decoration: none;
}

.main-nav a:hover {
  color: #b19882;
}

/* =============================
   FOOTER
============================= */
.site-footer {
  background: #f1f0ed;
  padding: 2rem 0;
  margin-top: 3rem;
  text-align: center;
  font-size: 0.9rem;
  color: #4a4034;
}

.site-footer .footer-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.site-footer .footer-nav a {
  color: #4a4034;
  text-decoration: none;
}

.site-footer .footer-nav a:hover {
  color: #b19882;
}

