:root {
  --main-bg: #fffdf7;
  --accent-color: #6f42c1;
  --accent-dark: #563d7c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--main-bg);
  scroll-behavior: smooth;
}

/* Hero Section with Background Image */
.hero {
  min-height: 100vh;
  background: url('images/pexels-sylwester-ficek-154797634-12861927.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 60px 15px;
  overflow: hidden;
}



.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding-top: 100px; /* ✅ Adjustable space instead of margin-top on h1 */
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
  margin-bottom: 20px;
  margin-top: 97px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #e0e0e0;
}

/* Navbar */
.navbar {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 1rem 1.5rem;
  transition: background-color 0.3s ease;
  font-size: 1rem;
  font-weight: 400;
  z-index: 10;
}

.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.95);
}

.navbar-brand {
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar-brand:hover {
  color: var(--accent-color);
}

.nav-link {
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
  text-decoration: none;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--accent-color);
}

.social-icons a {
  color: #fff;
  margin-left: 10px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--accent-color);
}

/* Responsive Navbar Collapse (Mobile) */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: rgb(120, 109, 122);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 0;
    transition: max-height ease-out, background-color;
    max-height: 0;
    overflow: hidden;
  }

  .navbar-collapse.show {
    max-height: 500px;
  }
}

/* Button Glow Effect */
.btn-glow {
  background-color: #ffffff;
  color: var(--accent-color);
  border: none;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.btn-glow:hover {
  background-color: #e0d6f3;
  color: #4a2e91;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
  transform: scale(1.05);
}

/* Product Section */
.product-section {
  background-color: #f8f9fa;
  padding: 40px 15px;
}

.product-img {
  max-width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
  display: block;
  margin: 0 auto;
}

.product-img:hover {
  transform: scale(1.05);
}

/* Product Categories */
.product-category-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 10px 0;
}

.product-category-list .badge {
  background-color: #e6e6ff;
  color: #333;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
}

.product-category-list .badge:hover,
.product-category-list .badge:focus {
  background-color: var(--accent-color);
  color: #fff;
  text-decoration: none;
}

/* Footer */
.footer {
  background-color: #343a40;
  color: #fff;
  padding: 60px 15px 30px;
}

.footer h5 {
  color: var(--accent-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer a {
  color: #fff;
  text-decoration: none;
  transition: text-decoration 0.3s ease;
}

.footer a:hover,
.footer a:focus {
  text-decoration: underline;
  outline: none;
}

.btn-contact {
  background-color: var(--accent-color);
  color: #fff;
  font-weight: 700;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  cursor: pointer;
  user-select: none;
}

.btn-contact:hover,
.btn-contact:focus {
  background-color: var(--accent-dark);
  outline: none;
}

ul.quick-links {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

ul.quick-links li {
  margin-bottom: 10px;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .hero {
    padding: 40px 15px;
    min-height: auto;
  }

  .hero-content {
    padding-top: 60px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .navbar-nav {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
    margin-top: 15px;
  }

  .product-section {
    padding: 30px 15px;
  }
}