@font-face {
  font-family: 'CustomFont';
  src: url('/black-chancery.ttf') format('truetype');
}

@font-face {
  font-family: 'CustomBodyFont';
  src: url('/Niramit-Regular.ttf') format('truetype');
}

body {
    font-family: 'CustomBodyFont', serif; /* A more fantasy-like font */
    margin: 0;
    padding: 0;
    background-color: #211f18; /* Dark grey background */
    color: #d4d4dc; /* Softer light text for contrast */
}

/* Apply the custom font to h1 and h2 */
h1, h2 {
  font-family: 'CustomFont', serif; /* Use your custom font with a fallback */
  text-shadow: 2px 2px 6px #000; /* Keep the glowing effect */
  color: #d4d4dc; /* Light text for contrast */
}

header {
    background-color: #332e24; /* Dark grey header for a grungy feel */
    color: #d4d4dc;
    padding: 1.5rem;
    text-align: center;
    border-bottom: 2px solid #C19846; /* Deep blood-red border */
}

header a img {
    border: 2px solid #C19846; /* Blood-red glowing border */
    border-radius: 50%; /* Make the logo circular */
    padding: 0.5rem;
    background-color: #1e1e1e;
    box-shadow: 0 0 10px #C19846; /* Subtle glowing effect */
}

header p {
    font-size: 1.2rem;
    font-style: italic;
    color: #d4d4dc;
    text-shadow: 1px 1px 3px #000; /* Subtle shadow for depth */
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 2rem;
    justify-content: center;
}

.product-card {
    background-color: #332e24; /* Dark grey card background */
    border: 1px solid #1e1e1e;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7); /* Stronger shadow for depth */
    width: 300px;
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: scale(1.05); /* Slight zoom effect */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.9); /* Stronger shadow on hover */
}

.product-card img {
    height: 350px;
    width: auto;
    max-width: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #C19846; /* Blood-red glowing border */
    box-shadow: 0 0 15px #C19846; /* Glowing effect for images */
}

.product-card h2 {
    font-size: 1.8rem;
    margin: 0.5rem 0;
    color: #d4d4dc;
    text-shadow: 2px 2px 6px #000; /* Stronger glowing text effect */
}

.product-card p {
    color: #a8a8b3; /* Softer gray for text */
}

.product-card .price {
    font-size: 1.6rem; /* Slightly larger font size */
    font-weight: bold;
    color: #C19846; /* Blood-red for mystical feel */
    margin: 0.5rem 0;
    text-shadow: 2px 2px 5px #000; /* Stronger glowing effect */
}

.product-card button {
    background-color: #C19846; /* Blood-red button */
    color: #fff;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px #C19846; /* Glowing button effect */
}

.product-card button:hover {
    background-color: #ab832d; /* Brighter red on hover */
    transform: translateY(-3px); /* Slight lift effect */
    box-shadow: 0 0 15px #ab832d; /* Stronger glow on hover */
}

footer {
    background-color: #332e24; /* Dark grey footer background */
    color: #d4d4dc; /* Light text for contrast */
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
    border-top: 2px solid #C19846; /* Blood-red border for a mystical feel */
}

footer a {
    color: #C19846; /* Blood-red link color */
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    color: #ab832d; /* Brighter red on hover */
    text-decoration: underline;
}


.new-product-banner {
  display: flex;
  flex-direction: column; /* Stack content vertically */
  align-items: center;
  justify-content: center;
  background-color: #332e24; /* Dark grey background to match the theme */
  padding: 30px;
  margin-bottom: 20px;
  border: 2px solid #C19846; /* Blood-red border for consistency */
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7); /* Stronger shadow for depth */
  text-align: center; /* Center-align text */
}

.banner-content {
  display: flex;
  flex-direction: column; /* Stack content vertically */
  align-items: center;
  gap: 20px;
}

.banner-image {
  max-width: 300px; /* Make the image more prominent */
  border-radius: 8px;
  border: 2px solid #C19846; /* Blood-red glowing border */
  box-shadow: 0 0 15px #C19846; /* Glowing effect for images */
}

.banner-text {
  max-width: 800px; /* Allow more space for text */
}

.banner-text h1 {
  font-size: 2.4rem; /* Slightly larger font for emphasis */
  color: #d4d4dc; /* Light text for contrast */
  text-shadow: 2px 2px 6px #000; /* Stronger glowing text effect */
}

.banner-text p {
  margin: 10px 0;
  color: #a8a8b3; /* Softer gray for text */
}

.banner-text .price {
  font-size: 1.8rem; /* Larger font size for emphasis */
  font-weight: bold;
  color: #C19846; /* Blood-red for mystical feel */
  margin: 0.5rem 0;
  text-shadow: 2px 2px 5px #000; /* Stronger glowing effect */
}

.banner-button {
  background-color: #C19846; /* Blood-red button */
  color: #fff;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2rem; /* Slightly larger font for the button */
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px #b89144; /* Glowing button effect */
}

.banner-button:hover {
  background-color: #ab832d; /* Brighter red on hover */
  transform: translateY(-3px); /* Slight lift effect */
  box-shadow: 0 0 15px #ab832d; /* Stronger glow on hover */
}