:root {
  --canva-purple: #7d2ae8;
  --canva-blue: #00c4cc;
  --canva-pink: #ff4dff;
  --canva-orange: #ff6600;
  --text-dark: #0e1217;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
}

.navbar {
  transition: all 0.4s ease-in-out;
  padding-top: 20px;
  padding-bottom: 20px;
}

.navbar.navbar-shrink {
  background-color: white !important;
  padding-top: 12px;
  padding-bottom: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar.navbar-shrink .nav-link, .navbar.navbar-shrink .navbar-brand {
  color: var(--text-dark) !important;
}

.navbar.navbar-shrink .navbar-toggler-icon {
  filter: invert(1);
}

.navbar.navbar-shrink .btn.text-white {
  color: var(--text-dark) !important;
}

/* Make sure the white logo is visible on the white background by darkening it */

.navbar.navbar-shrink img[src*="white"] {
  filter: invert(1) brightness(0.2);
}

.hero-section {
  background: linear-gradient(149deg, var(--bs-primary-text-emphasis), var(--bs-link-hover-color)), var(--bs-primary-text-emphasis);
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background-image: url("../../assets/img/bg-pattern.png");*/
  background-repeat: repeat;
  opacity: 1;
  z-index: -1;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  text-shadow: 3px 3px 4px rgba(14, 18, 23, 0.61);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.05;
  color: white;
}

/* Mobile (XS Viewport) */

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 44px;
    padding: 0 10px;
  }
}

.hero-btn {
  background: white;
  color: var(--canva-purple);
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: bold;
  border: none;
  margin-top: 20px;
}

.floating-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.floating-icons div {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-icons div:hover {
  transform: translateY(-10px) rotate(5deg);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
}

.custom-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  color: white;
  background: #f0f0f0;
}

.card-purple {
  background: linear-gradient(135deg, #7d2ae8, #ff4dff);
}

.card-blue {
  background: linear-gradient(135deg, #00c4cc, #2590fe);
}

.card-orange {
  background: linear-gradient(135deg, #ff6600, #ffcc00);
}

.card-teal {
  background: #00d2d3;
}

.template-gallery {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding: 20px;
  scrollbar-width: none;
}

.template-gallery::-webkit-scrollbar {
  display: none;
}

.template-item {
  min-width: 200px;
  height: 120px;
  background: #eee;
  border-radius: 8px;
  flex-shrink: 0;
}

.cta-banner {
  background: linear-gradient(90deg, #00c4cc 0%, #7d2ae8 100%);
  padding: 80px 20px;
  color: white;
  text-align: center;
}

.accordion-button:not(.collapsed) {
  background-color: #efefef;
  color: var(--bs-accordion-active-color);
}

.footer-links h6 {
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #666;
}

.ps-10.pe-10.hero-title {
}

@media (min-width: 300px) {
  .hero-title {
  }
}

@media (min-width: 576px) {
  .hero-title {
    font-size: 100px;
  }
}

