/* CSS Variables for the Theme */
:root {
  --primary-color: #d9c797;
  --bg-color: #fcfcfc;
  --text-color: #333333;
  --font-family: 'Cormorant Garamond', serif;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* Header & Navigation */
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--primary-color);
  padding: 20px 0;
  margin-bottom: 60px;
}

.header-left {
  flex-shrink: 0;
}

.logo-img {
  width: 200px;
  height: auto;
  object-fit: contain;
}

.nav-container {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  border: none;
}

.nav-menu { list-style: none; padding: 0; margin: 0; display: flex; gap: 40px; }
.nav-item { position: relative; }
.nav-link { font-size: 1.2rem; letter-spacing: 1px; text-transform: uppercase; transition: opacity 0.3s ease; }
.nav-link:hover { opacity: 0.7; }
.nav-item.active .nav-link { font-weight: bold; }
.nav-item.active::after {
  content: ''; position: absolute; bottom: -10px; left: 50%;
  transform: translateX(-50%); width: 6px; height: 6px;
  background-color: var(--primary-color); border-radius: 50%;
}

.page-title { text-align: center; font-size: 2.5rem; font-weight: normal; margin-bottom: 40px; }
.beige-line { height: 1px; background-color: var(--primary-color); border: none; margin: 40px 0; }
.footer { text-align: center; padding: 60px 0; font-size: 0.9rem; opacity: 0.6; }

@media (max-width: 768px) {
  .nav-menu { flex-wrap: wrap; gap: 20px; justify-content: center; }
  .container { padding: 0 20px; }
  .header { padding: 30px 0 10px 0; }
  .page-title { font-size: 2rem; }
}