
@font-face {
  font-family: 'Outfit';
  src: url('/fonts/Outfit-VariableFont_wght.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* Optional - add more weights if you have them */
@font-face {
  font-family: 'Outfit';
  src: url('/fonts/Outfit-VariableFont_wght.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* Apply it globally */
body {
  font-family: 'Outfit', sans-serif;
}

/* scroll effect*/
html {
  scroll-behavior: smooth;
}

/* Navigation Bar Styles */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px 20px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
}

.nav-link.active-page {
  font-weight: bold;
  font-size: 20px; 
  color: #f96c85 !important; 
}

.nav-link {
  font-size: 18px;
}

.navbar-nav {
  --bs-nav-link-padding-y: 0.7rem;
}

.navbar-brand span.text-orange {
  color: #ff7b54;
  font-size: 1.25rem;
}

.nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ff7b54;
}


.btn-primary {
  background: linear-gradient(45deg, #ff7b54, #ffb26b);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(45deg, #ff6633, #ffaa55);
}

.gradient-border {
  position: relative;
  z-index: 1;
}

.gradient-border::before,
.gradient-border::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(to right, #ff6633, #9071ef);
  z-index: -1;
}

.gradient-border::before {
  top: 0;
}

.gradient-border::after {
  bottom: 0;
}

.btn {
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Container that holds the breadcrumb */
.breadcrumb-container {
  position: sticky;
  top: 0;
  width: 100%;
  padding: 5px 2rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}

.breadcrumb {
  background-color: transparent;
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: #999;
  font-weight: bold;
  margin: 0 0.5rem;
}

.breadcrumb a {
  color: #ff5f06;
  text-decoration: none;
}

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

/* Sticky effect on scroll */
.sticky-breadcrumb {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.7); /* transparent */
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Footer styles */
.footer {
  background-color: white;
  font-family: Arial, sans-serif;
  position: relative;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  margin-top: 60px;
}

.footer-top-border,
.footer-bottom-border {
  height: 10px;
  background: linear-gradient(to right, #ff6633, #9071ef);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 40px 60px 40px 60px;
  align-items: flex-start;
}

.footer-left img.logo {
  width: 140px;
  margin-bottom: 10px;
}

.footer-center {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  text-align: left;
}

.footer-center a {
  color: black;
  text-decoration: none;
  font-weight: 300;
  font-size: 16px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.footer-right i {
  margin-right: 8px;
}

.footer-right a {
  color: black;
  text-decoration: none;
}

.social-icons a {
  margin-right: 12px;
  font-size: 20px;
  color: black;
}

/* Back to top button styles */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  background-color: #d191ff;
  color: white;
  border: none;
  padding: 16px 24px;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}

#backToTop:hover {
  background-color: #9351d1;
}

.legal-section {
  text-align: left;
  padding: 10px 60px;
  font-size: 12px;
  color: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  /* Navigation responsive */
  nav {
    padding: 0.5rem 1rem;
  }

  /* Footer responsive */
  .footer-left {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
  }

  .footer-left img.logo {
    margin: 0 auto;
  }

  .footer-content {
    flex-direction: column;
    padding: 2rem 1.5rem;
    text-align: left;
  }

  .footer-center {
    flex-direction: column;
    gap: 1rem;
    text-align: left;
  }

  .footer-right {
    margin-top: 16px;
  }

  .legal-section {
  text-align: left;
  padding: 10px 16px;
  font-size: 11px;
  color: #333;
}
}

@media (max-width: 480px) {
  /* Navigation mobile */
  nav {
    padding: 0.375rem 0.75rem;
  }

  /* Footer mobile */
  .footer-content {
    padding: 1.5rem 1rem;
  }

  /* Back to top mobile */
  #backToTop {
    bottom: 1rem;
    right: 2.5rem;
    padding: 0.75rem 1rem;
  }
}
