/* Logo wrapper */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}


.logo img {
  height: 65px;
  width: auto;
  object-fit: contain;
  display: block; 
  transform: scale(2.5);    /* scales image visually without increasing height box */
  transform-origin: center;
}

/* Navbar links (default white) */
.navbar {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.navbar .nav-link {
  color: #ffffff !important;
  transition: color 0.3s ease;
  font-weight: 500;
}

/* Hover & active state */
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #20c997 !important; /* cool accent color */
}

/* Change navbar toggler (hamburger) icon to white */
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255,1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* General Catalog Styling */
.catalog-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0a192f; /* matches navbar bg for harmony */
}

.catalog-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
}

.category-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #333;
}

.price-tag {
  font-size: 1rem;
  background: #20c997; /* teal for professional vibe */
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

/* Template Cards */
.template-card {
  border: none;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.template-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15); /* deeper hover shadow */
}

.template-card img {
  width: 100%;
  height: 200px; /* bigger cards */
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.template-card .card-body {
  padding: 0.5rem;
}

.template-card .card-title {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #212529;
}

.template-card .btn {
  margin: 0.25rem;
  border-radius: 20px;
  padding: 0.4rem 1rem;
  transition: all 0.3s ease;
}

.template-card .btn:hover {
  background-color: #8A2BE2;
  color: #fff;
}

/* Navbar active link */
.navbar .nav-link.active {
  font-weight: 600;
  color: #20c997 !important; /* teal accent */
}

/* Smooth rotation */
.bi-chevron-down {
  transition: transform 0.3s ease;
}

/* Rotate when expanded */
a[aria-expanded="true"] .bi-chevron-down {
  transform: rotate(180deg);
}

/* FEATURES LIST RESET */
.features-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.25rem;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0.65rem 0.75rem;
  margin-bottom: 0.4rem;

  font-size: 0.9rem;
  line-height: 1.5;
  color: #374151;

  background: #f9fafb;
  border-radius: 10px;
  border: 1px solid #eef2f7;

  transition: all 0.25s ease;
}

.features-list li::before {
  content: "✓";
  font-weight: 700;
  color: #20c997; /* your teal accent */
  margin-top: 2px;
  flex-shrink: 0;
}

.features-list li:hover {
  background: #ffffff;
  border-color: #20c997;
  transform: translateX(4px);
}

.template-card .card-text {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 0.75rem;
}

.template-card .collapse {
  margin-top: 0.5rem;
  text-align: left;
}


@media (max-width: 576px) {
  .features-list li {
    font-size: 0.88rem;
    padding: 0.6rem 0.7rem;
  }
}
