:root {
  --bg: #0f0c07;                /* Deep almost-black for temple night feel */
  --bg-card: #1a140f;           /* Slightly lighter dark for cards */
  --text: #f5f0e6;              /* Warm off-white / parchment */
  --gold: #d4af37;              /* Classic warm gold */
  --gold-dark: #b8972e;
  --gold-light: #e8c670;
  --border: rgba(212, 175, 55, 0.25);  /* Subtle gold border */
}

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

body {
  font-family: 'EB Garamond', serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
}

header {
  text-align: center;
  padding: 120px 20px 60px;
}

.logo {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 4.2rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(212,175,55,0.3);
}

.logo span {

  @media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg);
    padding: 25px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 15px 40px;
    font-size: 1.2rem;
  }
}
  color: var(--gold-light);
}

.subtitle {
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 6px;
  opacity: 0.9;
  margin-bottom: 40px;
}

.divider {
  width: 70%;
  max-width: 500px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto 30px;
}

.gold-line {
  width: 240px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto;
  box-shadow: 0 0 15px rgba(212,175,55,0.4);
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(15,12,7,0.92);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-toggle {
  font-size: 2.4rem;
  color: var(--gold);
  cursor: pointer;
  display: none;
}

.nav-links {
  display: flex;
  gap: 60px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 1.15rem;
  letter-spacing: 1.5px;
  transition: color 0.4s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  text-shadow: 0 0 8px rgba(212,175,55,0.5);
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 30px;
}

section {
  padding: 100px 0;
  text-align: center;
}

h2 {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 3.2rem;
  color: var(--gold);
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.hero p {
  font-size: 1.4rem;
  max-width: 800px;
  margin: 0 auto 50px;
  font-style: italic;
  opacity: 0.92;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 50px;
  margin-top: 40px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(212,175,55,0.12);
  border-color: var(--gold);
}

.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.1);
}

.card-content {
  padding: 30px;
}

.card h3 {
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.card p {
  font-size: 1.15rem;
  color: var(--text);
  opacity: 0.88;
}

.about-content {
  max-width: 720px;
  margin: 0 auto;
}

.profile {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  margin: 0 auto 30px;
  display: block;
  box-shadow: 0 0 20px rgba(212,175,55,0.25);
}

.about h3 {
  font-size: 2.6rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.about p {
  font-size: 1.25rem;
  margin-bottom: 25px;
}

.email-link {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 500;
}

.email-link:hover {
  text-decoration: underline;
  text-shadow: 0 0 8px var(--gold);
}

.comments-form {
  max-width: 640px;
  margin: 60px auto 100px;
  text-align: left;
}

input, textarea {
  width: 100%;
  padding: 14px 18px;
  margin: 14px 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1.1rem;
  background: rgba(26,20,15,0.6);
  color: var(--text);
}

input:focus, textarea:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 12px rgba(212,175,55,0.3);
}

button {
  background: var(--gold);
  color: #0f0c07;
  border: none;
  padding: 16px 50px;
  font-size: 1.15rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
}

button:hover {
  background: var(--gold-light);
  box-shadow: 0 0 20px rgba(212,175,55,0.5);
}

.comment-list {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.comment {
  background: var(--bg-card);
  padding: 24px;
  margin-bottom: 30px;
  border-radius: 6px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

.comment-header {
  font-weight: bold;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.comment-email {
  color: #c9b29c;
  font-size: 0.98rem;
  margin-bottom: 12px;
}

.comment-text {
  color: var(--text);
}

footer {
  text-align: center;
  padding: 60px 20px;
  color: #a08c6e;
  font-size: 1rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block !important;
    font-size: 2.5rem;
    padding: 10px 15px;
    cursor: pointer;
    user-select: none;
    touch-action: manipulation;   /* Important for mobile */
  }

  .nav-links {
    display: none !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg);
    padding: 30px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    z-index: 999;
  }

  .nav-links.active {
    display: flex !important;
  }

  .nav-links a {
    padding: 18px 40px;
    font-size: 1.25rem;
  }
  /* ==================== PURE CSS HAMBURGER MENU ==================== */
@media (max-width: 768px) {
  .nav-container {
    position: relative;
  }

  .menu-toggle {
    display: block !important;
    font-size: 2.5rem;
    padding: 8px 15px;
    cursor: pointer;
    user-select: none;
    z-index: 1100;
  }

  /* Hide the real checkbox */
  #menu-checkbox {
    display: none;
  }

  .nav-links {
    display: none !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg);
    padding: 25px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    z-index: 1000;
  }

  /* Show menu when checkbox is checked */
  #menu-checkbox:checked ~ .nav-links {
    display: flex !important;
  }

  .nav-links a {
    padding: 18px 40px;
    font-size: 1.25rem;
  }
}
}
