/* =========================
   RESET & GLOBALS
   ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: #00eaff;
  text-decoration: none;
}

a:hover {
  color: #ff00cc;
}

/* =========================
   HEADER / NAV
   ========================= */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.85);
  border-bottom: 2px solid #ff00cc;
}

.logo img {
  height: 36px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-menu a {
  font-weight: bold;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* =========================
   HERO
   ========================= */

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem 1rem;
  background: 
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
    url("../images/background.jpg") no-repeat center center;
  background-size: cover;
  background-blend-mode: darken; /* blends the gradient with the image */
  border-bottom: 3px solid #ff00cc;
  color: #fff;
}

.hero h1 {
  font-size: 2.5rem;
  color: #00eaff;
  text-shadow: 0 0 15px #00eaff;
}

.hero p {
  margin-top: 1rem;
  color: #ddd;
}

.hero-small {
  min-height: 35vh;
}

/* =========================
   PRODUCTS / CARDS
   ========================= */
.products {
  padding: 3rem 1rem;
  text-align: center;
}

.product-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

.product-card {
  background: rgba(0,0,0,0.85);
  border: 2px solid #00eaff;
  border-radius: 12px;
  padding: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px #00eaff;
}

.product-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

.product-card h3 {
  margin: 0.8rem 0 0.4rem;
  color: #00eaff;
}

.product-card button {
  margin-top: 0.8rem;
  padding: 0.5rem 1rem;
  background: #ff00cc;
  border: none;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}

.product-card button:hover {
  background: #00eaff;
}

/* =========================
   BLOG STYLES
   ========================= */
.blog-container {
  max-width: 900px;
  margin: 3rem auto;
  padding: 2rem;
  background: rgba(0,0,0,0.8);
  border-radius: 12px;
}

.blog-meta {
  font-size: 0.85rem;
  color: #aaa;
  margin-bottom: 1.5rem;
}

.blog-container h1 {
  font-size: 2.3rem;
  color: #00eaff;
  margin-bottom: 1.5rem;
}

.blog-container h2 {
  font-size: 1.5rem;
  color: #ff00cc;
  margin: 2.5rem 0 0.8rem;
}

.blog-container p,
.blog-container li {
  font-family: 'Inter', 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #eaeaea;
  margin-bottom: 1rem;
}

.blog-container ul {
  margin-left: 1.5rem;
}

.blog-cta {
  margin-top: 3rem;
  padding: 1.5rem;
  background: rgba(255,0,204,0.1);
  border-left: 4px solid #ff00cc;
}

/* =========================
   FOOTER
   ========================= */
.site-footer {
  margin-top: auto;
  padding: 1rem;
  text-align: center;
  background: rgba(0,0,0,0.85);
  border-top: 2px solid #ff00cc;
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .blog-container {
    margin: 2rem 1rem;
    padding: 1.5rem;
  }
}


.breadcrumbs {
  margin: 1rem 2rem;
  font-size: 0.9rem;
  color: #ccc;
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.breadcrumbs li + li::before {
  content: ">";
  padding: 0 0.5rem;
  color: #ff00cc;
}

.breadcrumbs a {
  color: #00eaff;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}
