/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Montserrat', sans-serif; 
    background: #000; 
    color: #eee; 
    line-height: 1.6; 
    text-align: center;
}

/* Gothic Headline Font */
h1, h2, .tagline { font-family: 'UnifrakturMaguntia', cursive; }

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../img/hell-bg.jpg') center/cover no-repeat; /* optional subtle flame texture */
    padding: 2rem;
}
.logo { max-width: 300px; margin-bottom: 2rem; }
h1 { font-size: 5rem; color: #D4AF37; margin-bottom: 1rem; }
.tagline { font-size: 2.5rem; color: #fff; margin-bottom: 3rem; }
.cta-button {
    background: #D4AF37;
    color: #000;
    padding: 1rem 2rem;
    font-size: 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}
.cta-button:hover { color: #000; background: #D4AF37; outline: 2px solid #D4AF37; }

/* Fix visited links staying white on mobile */
.cta-button:visited {
  color: #000 !important; 
}

/* Optional: smoother focus outline for accessibility */
.cta-button:focus {
  outline: 2px solid #D4AF37;
  outline-offset: 2px;
}

/* Sections */
.about, .products {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Quote Section */
.quote {
  background: #111 !important;
  padding: 4rem 2rem;
  text-align: center;
  font-style: italic;
  font-size: 1.5rem;
  font-style: italic;
  color: #D4AF37;
  margin: 2rem 0;
  padding: 4rem 2rem;
  width: 100%;
  margin: 0 auto;
  
}

/* Product Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.product img { width: 100%; border: 2px solid #D4AF37; }
.product h3 { margin: 1rem 0; color: #D4AF37; }
.buy-btn {
    display: inline-block;
    background: #D4AF37;
    color: #000;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}
.buy-btn-button:hover { color: #000; background: #D4AF37; outline: 2px solid #D4AF37; }

/* Fix visited links staying white on mobile */
.buy-btn:visited {
  color: #000 !important; 
}

/* Optional: smoother focus outline for accessibility */
.buy-btn:focus {
  outline: 2px solid #D4AF37;
  outline-offset: 2px;
}

/* Footer */
footer {
    background: #111;
    padding: 2rem;
    font-size: 0.9rem;
}

.footer img { max-width: 180px; margin-bottom: 2rem; }

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 3.5rem; }
    .tagline { font-size: 1.8rem; }
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
  border-bottom: 1px solid #D4AF37;
}

.nav-logo-img {
  height: 50px;
}

.nav-links a {
  color: #D4AF37;
  margin-left: 2rem;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
}

.nav-links a:hover {
  color: #fff;
}

.nav-dispatches {
  font-family: 'UnifrakturMaguntia', cursive;
  font-size: 1.4rem;
}

/* Push hero down to avoid overlap */
.hero {
  margin-top: 80px; /* height of nav */
}

/* Mobile */
@media (max-width: 768px) {
  .nav {
    padding: 1rem;
  }
  .nav-links a {
    margin-left: 1rem;
    font-size: 1rem;
  }
  .nav-dispatches {
    font-size: 1.2rem;
  }
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Montserrat', sans-serif; 
    background: #000; 
    color: #eee; 
    line-height: 1.6; 
    text-align: center;
}

/* Gothic Headline Font */
h1, h2, .tagline { font-family: 'UnifrakturMaguntia', cursive; }

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../img/hell-bg.jpg') center/cover no-repeat; /* optional subtle flame texture */
    padding: 2rem;
}
.logo { max-width: 300px; margin-bottom: 2rem; }
h1 { font-size: 5rem; color: #D4AF37; margin-bottom: 1rem; }
.tagline { font-size: 2.5rem; color: #fff; margin-bottom: 3rem; }
.cta-button {
    background: #D4AF37;
    color: #000;
    padding: 1rem 2rem;
    font-size: 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}
.cta-button:hover { color: #000; background: #D4AF37; outline: 2px solid #D4AF37; }

/* Fix visited links staying white on mobile */
.cta-button:visited {
  color: #000 !important; 
}

/* Optional: smoother focus outline for accessibility */
.cta-button:focus {
  outline: 2px solid #D4AF37;
  outline-offset: 2px;
}

/* Sections */
.about, .products {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Quote Section */
.quote {
  background: #111 !important;
  padding: 4rem 2rem;
  text-align: center;
  font-style: italic;
  font-size: 1.5rem;
  font-style: italic;
  color: #D4AF37;
  margin: 2rem 0;
  padding: 4rem 2rem;
  width: 100%;
  margin: 0 auto;
  
}

/* Product Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.product img { width: 100%; border: 2px solid #D4AF37; }
.product h3 { margin: 1rem 0; color: #D4AF37; }
.buy-btn {
    display: inline-block;
    background: #D4AF37;
    color: #000;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}
.buy-btn-button:hover { color: #000; background: #D4AF37; outline: 2px solid #D4AF37; }

/* Fix visited links staying white on mobile */
.buy-btn:visited {
  color: #000 !important; 
}

/* Optional: smoother focus outline for accessibility */
.buy-btn:focus {
  outline: 2px solid #D4AF37;
  outline-offset: 2px;
}

/* Footer */
footer {
    background: #111;
    padding: 2rem;
    font-size: 0.9rem;
}

.footer img { max-width: 180px; margin-bottom: 2rem; }

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 3.5rem; }
    .tagline { font-size: 1.8rem; }
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
  border-bottom: 1px solid #D4AF37;
}

.nav-logo-img {
  height: 50px;
}

.nav-links a {
  color: #D4AF37;
  margin-left: 2rem;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
}

.nav-links a:hover {
  color: #fff;
}

.nav-dispatches {
  font-family: 'UnifrakturMaguntia', cursive;
  font-size: 1.4rem;
}

/* Push hero down to avoid overlap */
.hero {
  margin-top: 80px; /* height of nav */
}

/* Mobile */
@media (max-width: 768px) {
  .nav {
    padding: 1rem;
  }
  .nav-links a {
    margin-left: 1rem;
    font-size: 1rem;
  }
  .nav-dispatches {
    font-size: 1.2rem;
  }
}

/* Blog Post Text – Clean Justified with Padding */
.blog-posts .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.2rem; /* adds space on left/right */
}

.post-content {
  text-align: justify;
  hyphens: auto;           /* better word breaks */
  line-height: 1.8;
  font-size: 1.1rem;
  padding: 0 1rem;         /* extra inner padding for breathing room */
  margin: 1.2rem 0;
}

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

/* Optional: nicer first paragraph */
.post-content p:first-of-type {
  font-size: 1.2rem;
  margin-top: 0;
}
.post-title {
  font-size: 2rem;
  color: #D4AF37;
  margin: 2rem 0 1rem;
  text-align: center;
}

.post-date {
  text-align: center;
  color: #888;
  font-style: italic;
  margin-bottom: 3rem;
}

.post-link {
  color: #D4AF37;
  margin-left: 2rem;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
}
