/* Basic site-wide styles for Montana Flower */
/* You can change colors, fonts, and spacing here. */

:root {
  --bg: #f7f4ef;
  --bg-dark: #000000;
  --text-main: #222222;
  --accent: #f4c15f;
  --accent-dark: #c98a24;
  --max-width: 960px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
}

/* Landing / hero */

body.landing {
  background-color: #000000;
  color: #ffffff;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 40px 16px;
}

.hero-logo {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin-bottom: 32px;
}

.btn-primary {
  display: inline-block;
  padding: 12px 32px;
  font-size: 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #221400;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary:hover {
  background: #ffdd89;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
  transform: translateY(-1px);
}

/* Main site layout */

body:not(.landing) {
  background: var(--bg);
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e2ded5;
  padding: 12px 16px;
}

.brand {
  display: flex;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto 8px auto;
}

.brand-logo {
  width: 64px;
  height: auto;
  margin-right: 12px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.4rem;
  font-weight: 600;
}

.brand-tagline {
  font-size: 0.9rem;
  color: #666666;
}

/* Navigation */

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav a {
  padding: 6px 10px;
  text-decoration: none;
  color: #333333;
  border-radius: 999px;
  font-size: 0.95rem;
}

.nav a.active,
.nav a:hover {
  background: var(--accent);
  color: #221400;
}

/* Page content */

.page {
  max-width: var(--max-width);
  margin: 32px auto;
  padding: 0 16px 40px 16px;
}

.page h1 {
  margin-top: 0;
}

/* Footer */

.site-footer {
  border-top: 1px solid #e2ded5;
  padding: 12px 16px 24px 16px;
  font-size: 0.85rem;
  text-align: center;
  color: #666666;
}
