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

body {
  font-family: Arial, sans-serif;
  background-color: #111;
  color: white;
  text-align: center;
}

/* Header */
header a {
  color: white;          /* link color */
  text-decoration: none; /* remove underline */
  padding: 0 10px;       /* spacing between links */
}

header a:hover {
  color: #ff0000;        /* change color on hover */
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 120px 20px;
  position: relative;
  min-height: 100vh; /* fills the whole screen height */

  /* Background image */
  background: url('crying-angel.jpg') no-repeat center center/cover;
  color: white;
}

/* Dark overlay + blur for readability */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6); /* darker filter */
  backdrop-filter: blur(4px);
}

/* Keeps text above the overlay */
.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #ff5050;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 5px;
  color: white;
}

.hero-content img {
  width: 250px;
  margin-top: 20px;
  border-radius: 8px;
  border: 2px solid #ff5050;
  box-shadow: 0 0 10px rgba(255, 80, 80, 0.3);
}

/* Footer */
footer {
  background-color: #000;
  padding: 15px 0;
  font-size: 14px;
  margin-top: 30px;
}

/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply the animation */
.hero-content h2,
.hero-content p,
.hero-content img {
  opacity: 0; /* start hidden */
  animation: fadeIn 1.5s ease forwards;
}

/* Different delays for a nice sequence */
.hero-content h2 {
  animation-delay: 0.3s;
}

.hero-content p {
  animation-delay: 0.6s;
}

.hero-content img {
  animation-delay: 0.9s;
}
/* Slogan Section */
.slogan {
  text-align: center;
  padding: 60px 20px;
  
}

/* Optional glowing effect */
.slogan h2 {
  text-shadow: 0 0 10px rgba(255, 80, 80, 0.5);
}

/* Fade-in animation keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Shop Section */
.shop {
  text-align: center;
  padding: 60px 20px;
}

/* Logo hover glow */
.logo {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.logo:hover {
  color: #ff5050; /* red glow */
  text-shadow: 0 0 10px #ff5050, 0 0 20px #ff5050, 0 0 30px #ff5050;
}
.product-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.product {
  background: #111;
  border: 2px solid #ff5050;
  border-radius: 10px;
  padding: 20px;
  width: 220px;
  transition: transform 0.3s;
  cursor: pointer;
}

.product:hover {
  transform: scale(1.05);
}



/* Modal (Pop-up) */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  max-width: 400px;
  text-align: center;
  border: 2px solid #ff5050;
  position: relative;
}

.modal-content img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #ff5050;
  cursor: pointer;
}

button {
  background: #ff5050;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

button:hover {
  background: #ff7373;
}

.order-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff0000; /* button color */
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.order-btn:hover {
  background-color: #cc0000; /* hover color */
}
.product img {
  width: 100%;   /* image takes full width of container */
  max-width: 300px; /* limits maximum size */
  height: auto;  /* keeps aspect ratio */
  display: block; /* removes extra space under image */
  margin: 0 auto; /* centers the image */
}
.main-product-img {
  display: block;       /* ensures block behavior */
  width: 500px;         /* larger default width on desktop */
  max-width: 95%;       /* scales down on smaller screens */
  height: auto;         /* maintains aspect ratio */
  margin: 20px auto;    /* centers image */
}

/* Sizes image default (mobile-friendly) */
.sizes-img {
  display: block;
  width: 300px;       /* current size for mobile */
  max-width: 90%;
  height: auto;
  margin: 20px auto;
}

/* Desktop larger size */
@media screen and (min-width: 768px) {
  .sizes-img {
    width: 450px;     /* larger on desktop */
  }




.product-name {
  font-size: 30px;
  text-align: center;
  color: #fff;
}

.price {
  font-size: 25px;
  text-align: center;
  color: #fff;
}

.description {
  font-size: 20px;
  text-align: center;
  color: #ccc;
  margin-bottom: 20px;
}

/* See Details / Order button */
.order-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff7f7f; /* light red */
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: 0.3s;
}

.order-btn:hover {
  background-color: #ff4c4c;
  color: #fff;
}

/* Mobile adjustments */
@media screen and (max-width: 600px) {
  .main-product-img {
    max-width: 90%;
  }
  .order-btn {
    font-size: 14px;
    padding: 8px 16px;
  }
}
body.soul-truth-page {
  background-image: url('background.jpg'); /* exact filename */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: white; /* optional, for text contrast */
}
.description {
  text-align: center;    /* center the text */
  font-size: 24px;       /* larger font size */
  font-weight: bold;     /* bold text */
  color: #ffffff;        /* white text */
  margin-bottom: 20px;
}
.modal-content {
  background: #1a1a1a; /* this is the black box background */
  padding: 30px;
  border-radius: 10px;
  max-width: 400px;
  text-align: center;
  border: 2px solid #ff5050;
  position: relative;
}
/* Make sidebar text always visible */
.sidebar {
  background-color: rgba(0,0,0,0.7); /* 70% dark see-through */
  backdrop-filter: blur(6px); /* frosted effect */
}
}
