@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+Pro:wght@300;400;600&display=swap');

:root {
  --bg-dark: #1a1410;
  --bg-card: #2a1f18;
  --wood-primary: #3d2b1f;
  --wood-light: #5c4033;
  --amber: #d4a84b;
  --amber-glow: #e8c46e;
  --cream: #f5efe6;
  --cream-muted: #c9bfb0;
  --text-primary: #f5efe6;
  --text-secondary: #a89888;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 18px;
}

body {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
}

/* Subtle wood grain texture overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.01) 2px,
      rgba(255, 255, 255, 0.01) 4px
    );
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Home Page Styles */
.home-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 40px 24px;
}

.title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
  margin-bottom: 3rem;
  position: relative;
}

.title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  margin: 1rem auto 0;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.nav-link {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--cream-muted);
  text-decoration: none;
  padding: 0.75rem 2rem;
  border: 1px solid var(--wood-light);
  border-radius: 4px;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--wood-primary) 100%);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 75, 0.1), transparent);
  transition: left 0.5s ease;
}

.nav-link:hover {
  color: var(--amber-glow);
  border-color: var(--amber);
  box-shadow: 0 4px 20px rgba(212, 168, 75, 0.15);
  transform: translateY(-2px);
}

.nav-link:hover::before {
  left: 100%;
}

/* Interior Page Styles */
.page-container {
  padding: 60px 24px;
  max-width: 800px;
  margin: 0 auto;
  min-height: 100vh;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 3rem;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: var(--amber);
}

.back-link::before {
  content: '←';
  font-size: 1.1rem;
}

.page-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.page-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--amber);
  margin-top: 1rem;
}

.page-subtitle {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 3rem;
}

.content {
  color: var(--cream-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.content p {
  margin-bottom: 1.5rem;
}

.placeholder-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--wood-primary) 100%);
  border: 1px solid var(--wood-light);
  border-radius: 6px;
  padding: 2rem;
  margin-top: 2rem;
}

.placeholder-card p {
  color: var(--text-secondary);
  font-style: italic;
  margin: 0;
}

/* Warm glow effect */
.glow {
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(212, 168, 75, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* Responsive */
@media (max-width: 600px) {
  .title {
    font-size: 2.75rem;
  }

  .nav-link {
    font-size: 1.15rem;
    padding: 0.65rem 1.5rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .page-container {
    padding: 40px 20px;
  }
}
