/*
Theme Name: The Oracle's Eye
Theme URI: https://example.com/oracles-eye
Author: The Dark Web Studio
Author URI: https://example.com
Description: A terrifying fortune teller theme. Gaze into the abyss. The Oracle knows all.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: oracles-eye
Tags: dark, horror, fortune-teller, single-page, custom-colors, custom-fonts
*/

/* ===================================================
   THE ORACLE'S EYE — SACRED HORROR THEME
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Crimson+Text:ital,wght@0,400;0,600;1,400;1,600&family=UnifrakturMaguntia&display=swap');

:root {
  --void: #000000;
  --abyss: #050508;
  --shadow: #0d0d15;
  --dark-blood: #1a0505;
  --blood: #6b0000;
  --deep-crimson: #8b0000;
  --crimson: #cc0000;
  --gore: #ff1a1a;
  --dim-gold: #5a4a00;
  --gold: #b8860b;
  --pale-gold: #d4af37;
  --bone: #e8dcc8;
  --ghost: #c8bfb0;
  --fog: rgba(200, 191, 176, 0.15);
  --smoke: rgba(200, 191, 176, 0.05);
  --font-display: 'Cinzel Decorative', serif;
  --font-gothic: 'UnifrakturMaguntia', cursive;
  --font-body: 'Crimson Text', serif;
}

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

html {
  scroll-behavior: smooth;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='3' fill='%23cc0000'/%3E%3Cpath d='M12 2 L12 7 M12 17 L12 22 M2 12 L7 12 M17 12 L22 12' stroke='%23cc0000' stroke-width='1.5'/%3E%3C/svg%3E") 12 12, crosshair;
}

body {
  background-color: var(--abyss);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: var(--deep-crimson); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--crimson); }

/* ===== SELECTION ===== */
::selection {
  background: var(--deep-crimson);
  color: var(--bone);
}

/* ===== NOISE TEXTURE OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ===== FLICKERING VIGNETTE ===== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center,
    transparent 40%,
    rgba(0,0,0,0.4) 70%,
    rgba(0,0,0,0.85) 100%
  );
  pointer-events: none;
  z-index: 9998;
  animation: vignette-flicker 8s ease-in-out infinite;
}

@keyframes vignette-flicker {
  0%, 100% { opacity: 1; }
  47% { opacity: 1; }
  48% { opacity: 0.7; }
  49% { opacity: 1; }
  82% { opacity: 1; }
  83% { opacity: 0.8; }
  84% { opacity: 1; }
}

/* ===== HEADER ===== */
.site-header {
  position: relative;
  text-align: center;
  padding: 60px 20px 40px;
  border-bottom: 1px solid rgba(107,0,0,0.4);
  background: linear-gradient(180deg, rgba(6,0,0,0.95) 0%, transparent 100%);
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--deep-crimson), var(--pale-gold), var(--deep-crimson), transparent);
  animation: border-pulse 3s ease-in-out infinite;
}

@keyframes border-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.site-title {
  font-family: var(--font-gothic);
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--pale-gold);
  text-shadow:
    0 0 20px rgba(212,175,55,0.5),
    0 0 60px rgba(139,0,0,0.4),
    2px 2px 0px rgba(0,0,0,0.8);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 8px;
  animation: title-breathe 4s ease-in-out infinite;
}

@keyframes title-breathe {
  0%, 100% { text-shadow: 0 0 20px rgba(212,175,55,0.5), 0 0 60px rgba(139,0,0,0.4), 2px 2px 0px rgba(0,0,0,0.8); }
  50% { text-shadow: 0 0 40px rgba(212,175,55,0.8), 0 0 100px rgba(139,0,0,0.6), 2px 2px 0px rgba(0,0,0,0.8); }
}

.site-tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1rem;
  color: var(--ghost);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ===== NAVIGATION ===== */
.site-nav {
  text-align: center;
  padding: 16px 20px;
  background: rgba(5,0,0,0.6);
  border-bottom: 1px solid rgba(107,0,0,0.2);
}

.site-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.site-nav a {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ghost);
  text-decoration: none;
  transition: color 0.3s, text-shadow 0.3s;
  padding: 4px 0;
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--crimson);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.site-nav a:hover {
  color: var(--pale-gold);
  text-shadow: 0 0 15px rgba(212,175,55,0.6);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

/* ===== MAIN ORACLE SECTION ===== */
.oracle-chamber {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  min-height: 85vh;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(107,0,0,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 20%, rgba(5,4,15,0.8) 0%, transparent 50%);
}

/* Floating candle particles */
.oracle-chamber::before {
  content: '✦ ✧ ✦ ✧ ✦';
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  color: var(--pale-gold);
  letter-spacing: 1rem;
  opacity: 0.3;
  animation: float-runes 6s ease-in-out infinite;
}

@keyframes float-runes {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.3; }
  50% { transform: translateX(-50%) translateY(-10px); opacity: 0.6; }
}

.oracle-intro {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ghost);
  text-align: center;
  max-width: 500px;
  margin-bottom: 50px;
  opacity: 0.75;
  letter-spacing: 0.05em;
}

/* ===== THE ORB ===== */
.oracle-orb-wrapper {
  position: relative;
  width: 320px;
  height: 320px;
  margin-bottom: 50px;
  cursor: pointer;
}

.oracle-orb {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(80,0,0,0.9) 0%, rgba(10,0,0,0.98) 60%, rgba(0,0,0,1) 100%);
  box-shadow:
    0 0 40px rgba(107,0,0,0.5),
    0 0 80px rgba(107,0,0,0.3),
    0 0 160px rgba(107,0,0,0.15),
    inset 0 0 60px rgba(0,0,0,0.9),
    inset 0 0 20px rgba(107,0,0,0.3);
  position: relative;
  transition: box-shadow 0.5s ease, transform 0.3s ease;
  animation: orb-pulse 5s ease-in-out infinite;
  overflow: hidden;
}

.oracle-orb:hover {
  transform: scale(1.03);
  box-shadow:
    0 0 60px rgba(139,0,0,0.7),
    0 0 120px rgba(139,0,0,0.4),
    0 0 200px rgba(139,0,0,0.2),
    inset 0 0 60px rgba(0,0,0,0.9),
    inset 0 0 30px rgba(139,0,0,0.4);
}

@keyframes orb-pulse {
  0%, 100% {
    box-shadow:
      0 0 40px rgba(107,0,0,0.5),
      0 0 80px rgba(107,0,0,0.3),
      0 0 160px rgba(107,0,0,0.15),
      inset 0 0 60px rgba(0,0,0,0.9),
      inset 0 0 20px rgba(107,0,0,0.3);
  }
  50% {
    box-shadow:
      0 0 60px rgba(139,0,0,0.7),
      0 0 120px rgba(139,0,0,0.4),
      0 0 240px rgba(139,0,0,0.2),
      inset 0 0 60px rgba(0,0,0,0.9),
      inset 0 0 35px rgba(139,0,0,0.5);
  }
}

/* Eye inside the orb */
.oracle-eye {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
}

.eye-outer {
  width: 120px;
  height: 60px;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}

.eye-outer::before,
.eye-outer::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(212,175,55,0.6);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.eye-pupil {
  width: 50px;
  height: 50px;
  background: radial-gradient(circle at 40% 35%, rgba(60,0,0,0.8) 0%, rgba(0,0,0,1) 70%);
  border-radius: 50%;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(139,0,0,0.8), inset 0 0 15px rgba(0,0,0,1);
  animation: eye-dart 7s ease-in-out infinite;
}

@keyframes eye-dart {
  0%, 100% { transform: translate(-50%, -50%); }
  15% { transform: translate(calc(-50% + 8px), calc(-50% - 5px)); }
  30% { transform: translate(calc(-50% - 10px), calc(-50% + 3px)); }
  45% { transform: translate(calc(-50% + 5px), calc(-50% + 8px)); }
  60% { transform: translate(-50%, -50%); }
  75% { transform: translate(calc(-50% - 8px), calc(-50% - 8px)); }
  90% { transform: translate(-50%, -50%); }
}

.eye-shine {
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, rgba(255,200,200,0.8) 0%, transparent 70%);
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 18px);
  left: calc(50% + 5px);
  animation: eye-dart 7s ease-in-out infinite;
}

/* Mist inside orb */
.orb-mist {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 80%, rgba(30,0,0,0.6) 0%, transparent 60%);
  animation: mist-swirl 8s ease-in-out infinite;
}

@keyframes mist-swirl {
  0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.6; }
  33% { transform: rotate(120deg) scale(1.1); opacity: 0.8; }
  66% { transform: rotate(240deg) scale(0.9); opacity: 0.5; }
}

/* Reflection highlight */
.orb-shine {
  position: absolute;
  top: 15%; left: 20%;
  width: 80px;
  height: 40px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
  transform: rotate(-30deg);
}

/* Orb ring */
.oracle-orb-wrapper::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(107,0,0,0.3);
  animation: ring-rotate 20s linear infinite;
}

.oracle-orb-wrapper::after {
  content: '';
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  border: 1px dashed rgba(184,134,11,0.15);
  animation: ring-rotate 35s linear infinite reverse;
}

@keyframes ring-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===== FORTUNE DISPLAY ===== */
.fortune-display {
  min-height: 100px;
  width: 100%;
  max-width: 600px;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.fortune-text {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--bone);
  line-height: 1.6;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 0 30px rgba(139,0,0,0.4);
  transition: opacity 0.5s ease;
  padding: 20px;
}

.fortune-text.hidden { opacity: 0; }
.fortune-text.visible { opacity: 1; }

.fortune-text::before,
.fortune-text::after {
  content: '❧';
  color: var(--deep-crimson);
  font-style: normal;
  margin: 0 12px;
  opacity: 0.6;
}

.fortune-attribution {
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.8s ease 0.5s;
  margin-top: 8px;
}

.fortune-attribution.visible { opacity: 0.6; }

/* ===== CONSULT BUTTON ===== */
.consult-button {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pale-gold);
  background: transparent;
  border: 1px solid rgba(184,134,11,0.5);
  padding: 16px 40px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
}

.consult-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(107,0,0,0.1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.consult-button:hover::before { transform: scaleX(1); }

.consult-button:hover {
  border-color: var(--pale-gold);
  box-shadow: 0 0 30px rgba(184,134,11,0.3), inset 0 0 20px rgba(107,0,0,0.2);
  color: var(--bone);
}

.consult-button:active {
  transform: scale(0.97);
}

/* ===== DECORATIVE DIVIDER ===== */
.sacred-divider {
  width: 100%;
  max-width: 600px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 60px auto;
  padding: 0 20px;
}

.sacred-divider::before,
.sacred-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107,0,0,0.6));
}

.sacred-divider::after {
  background: linear-gradient(90deg, rgba(107,0,0,0.6), transparent);
}

.sacred-divider span {
  color: var(--deep-crimson);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ===== OMENS SECTION (Blog Posts) ===== */
.omens-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.3rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pale-gold);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title::before {
  content: '— ';
  color: var(--deep-crimson);
}
.section-title::after {
  content: ' —';
  color: var(--deep-crimson);
}

/* Post Grid */
.omens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.omen-card {
  background: linear-gradient(135deg, rgba(13,0,0,0.9) 0%, rgba(5,5,13,0.9) 100%);
  border: 1px solid rgba(107,0,0,0.25);
  padding: 30px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.omen-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--deep-crimson);
  transition: height 0.4s ease;
}

.omen-card:hover {
  border-color: rgba(107,0,0,0.6);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 30px rgba(107,0,0,0.15);
}

.omen-card:hover::before { height: 100%; }

.omen-number {
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--deep-crimson);
  margin-bottom: 12px;
  display: block;
}

.omen-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 14px;
}

.omen-title a {
  color: var(--bone);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.05em;
}

.omen-title a:hover { color: var(--pale-gold); }

.omen-excerpt {
  font-size: 0.95rem;
  color: var(--ghost);
  line-height: 1.7;
  opacity: 0.8;
}

.omen-meta {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(107,0,0,0.2);
  font-family: var(--font-display);
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.5;
  text-transform: uppercase;
}

/* ===== SIDEBAR ===== */
.oracle-sidebar .widget {
  margin-bottom: 40px;
  padding: 24px;
  background: rgba(5,0,0,0.5);
  border: 1px solid rgba(107,0,0,0.2);
}

.widget-title {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pale-gold);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(107,0,0,0.3);
}

/* ===== SINGLE POST ===== */
.oracle-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}

.post-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.3;
  color: var(--bone);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.post-meta {
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  opacity: 0.6;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.post-content {
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(232,220,200,0.85);
}

.post-content p { margin-bottom: 1.5em; }

.post-content h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--pale-gold);
  margin: 2em 0 1em;
}

.post-content blockquote {
  border-left: 2px solid var(--deep-crimson);
  padding-left: 20px;
  font-style: italic;
  color: var(--ghost);
  margin: 2em 0;
}

.post-content a {
  color: var(--pale-gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(212,175,55,0.3);
  transition: border-color 0.3s;
}

.post-content a:hover { border-color: var(--pale-gold); }

/* ===== FOOTER ===== */
.site-footer {
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid rgba(107,0,0,0.2);
  background: rgba(5,0,0,0.7);
  position: relative;
}

.footer-symbol {
  font-size: 2rem;
  color: var(--deep-crimson);
  margin-bottom: 12px;
  display: block;
  opacity: 0.4;
}

.footer-text {
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--ghost);
  opacity: 0.3;
  text-transform: uppercase;
}

/* ===== LOADING RITUAL ===== */
.oracle-loading {
  position: fixed;
  inset: 0;
  background: var(--void);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 99999;
  transition: opacity 1s ease, visibility 1s ease;
}

.oracle-loading.done {
  opacity: 0;
  visibility: hidden;
}

.loading-eye {
  width: 60px;
  height: 30px;
  background: transparent;
  border: 2px solid var(--deep-crimson);
  border-radius: 50% 50% 50% 50% / 100% 100% 0% 0%;
  position: relative;
  margin-bottom: 20px;
  animation: blink 1.5s ease-in-out infinite;
}

.loading-eye::after {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--deep-crimson);
  border-radius: 50%;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: pupil-beat 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 90%, 100% { transform: scaleY(1); }
  95% { transform: scaleY(0.1); }
}

@keyframes pupil-beat {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(0.7); }
}

.loading-text {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  color: var(--ghost);
  text-transform: uppercase;
  opacity: 0.5;
  animation: text-fade 1.5s ease-in-out infinite;
}

@keyframes text-fade {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .oracle-orb-wrapper {
    width: 240px;
    height: 240px;
  }

  .oracle-chamber { padding: 50px 16px; }

  .site-nav ul { gap: 20px; }
}

/* ===== WIDGET AREA ===== */
.wp-block-image img,
.post-content img {
  max-width: 100%;
  height: auto;
  border: 1px solid rgba(107,0,0,0.3);
  filter: brightness(0.85) contrast(1.1) sepia(0.1);
}

/* ===== COMMENTS ===== */
.comments-area {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.comment-form label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.comment-form input,
.comment-form textarea {
  background: rgba(5,0,0,0.7);
  border: 1px solid rgba(107,0,0,0.3);
  color: var(--bone);
  padding: 10px 14px;
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: rgba(107,0,0,0.7);
}

.comment-form .submit {
  background: transparent;
  border: 1px solid rgba(184,134,11,0.4);
  color: var(--pale-gold);
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 30px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
}

.comment-form .submit:hover {
  border-color: var(--pale-gold);
  background: rgba(107,0,0,0.15);
}
