:root {
  --bg: #f8f5f1;
  --light: #fff;
  --text: #2b2b2b;
  --accent: #bda67a;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Open Sans', sans-serif;
}

/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* BODY */
body {
  background: var(--bg);
  font-family: var(--sans);
  color: var(--text);
  scroll-behavior: smooth;
  line-height: 1.7;
}

/* NAVIGATION */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
}
.nav-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}
.logo {
  font-family: var(--serif);
  color: var(--text);
  font-size: 1.4rem;
  text-decoration: none;
  font-weight: 600;
}
.nav-links { list-style: none; display: flex; gap: 1.5rem; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 400; }
.nav-links a:hover { color: var(--accent); }

/* HERO */
.hero {
  height: 80vh;
  background: url('download%20(4).jpeg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  color: #fff;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}
.hero-text { position: relative; z-index: 1; }
.hero h1 { font-family: var(--serif); font-size: 3rem; }
.hero p { font-size: 1.2rem; margin-top: 0.5rem; }

/* SECTIONS */
.section { padding: 6rem 1.5rem; }
.section.light { background: var(--light); }
.container { max-width: 1000px; margin: 0 auto; text-align: center; }
h2 { font-family: var(--serif); color: var(--accent); margin-bottom: 2rem; font-size: 2rem; }
p { margin-bottom: 1rem; }

/* RITUAL CARDS */
#rituals .grid { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
#rituals .card {
  flex: 0 1 200px; height: 350px;
  background: linear-gradient(135deg, #fef3e0, #fdd9b5);
  border: 2px solid #f5d6b0; border-radius: 12px;
  box-shadow: 0 4px 12px rgba(205,185,160,0.3);
  padding: 1.5rem; text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#rituals .card:hover { transform: translateY(-6px); box-shadow: 0 8px 20px rgba(205,185,160,0.4); }
#rituals h3 { color: #d79f65; font-family: var(--serif); font-size: 1.4rem; margin-bottom: 1rem; }
#rituals p { color: #6b4f3c; font-size: 1rem; line-height: 1.4; }

/* ZĀR SPIRIT CARDS */
.spirits-section { text-align: center; padding: 60px 20px; }
.spirit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 40px; }
.spirit-card {
  border-radius: 16px; padding: 30px 20px;
  text-align: center; font-family: var(--serif);
  box-shadow: 0 0 10px rgba(255,255,255,0.1); transition: all 0.4s ease;
}
.spirit-card h3 { margin-bottom: 10px; font-weight: 600; }

/* ZĀR COLOURS */
.spirit-card.red { background: #ff4c4c; border: 2px solid #ff0000; color: #fff; }
.spirit-card.white { background: #ffffff; border: 2px solid #ccc; color: #333; }
.spirit-card.green { background: #4caf50; border: 2px solid #2e7d32; color: #fff; }
.spirit-card.blue { background: #2196f3; border: 2px solid #0d47a1; color: #fff; }
.spirit-card.yellow { background: #ffeb3b; border: 2px solid #fbc02d; color: #333; }
.spirit-card.black { background: #333; border: 2px solid #000; color: #fff; }
.spirit-card.brown { background: #a0522d; border: 2px solid #5d3314; color: #fff; }

.spirit-card:hover { transform: scale(1.05); box-shadow: 0 0 20px 5px rgba(255,255,255,0.2); }

/* CONTACT */
form { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
input, textarea { padding: 1rem; border: 1px solid #ddd; border-radius: 0.5rem; font-family: var(--sans); width: 100%; }
button { background: var(--accent); border: none; color: white; border-radius: 2rem; padding: 1rem; cursor: pointer; }
button:hover { background: #a48e68; }

/* FOO*
.card {
  display: block;
  padding: 1.5rem;
  border: 2px solid var(--accent-color);
  border-radius: 1rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}


