.block-number {
  text-align: center;
  font-weight: bold;
  font-size: 0.8125em;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #191919;
  transition: 0.3s ease-out; }
  .block-number:hover {
    opacity: 1; }
  .block-number::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    margin-bottom: 2px;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 3px solid #191919; }
  .block-number a:hover,
  .block-number a:focus {
    color: #191919; }

.demo-section .main-content .section,
.demo-topbar .main-content .topbar,
.demo-navbar .main-content .navbar,
.demo-header .main-content .header,
.demo-footer .main-content .footer {
  margin: 30px 20px 100px;
  border: 1px solid #f5f6f7;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05); }

.demo-topbar .main-content .topbar,
.demo-navbar .main-content .navbar {
  position: static;
  margin: 0; }

.sample-blocks img {
  border-radius: 0.25rem; }
  .sample-blocks img.aos-animate {
    opacity: 0.5 !important; }
  .sample-blocks img:hover {
    opacity: 1 !important;
    transition: 0.7s !important; }

.sample-blocks a {
  position: absolute; }

.sample-blocks a:nth-child(1) {
  -webkit-animation: wobble 4s infinite;
          animation: wobble 4s infinite;
  right: 15px;
  bottom: -20px; }

.sample-blocks a:nth-child(2) {
  -webkit-animation: wobble 8s infinite;
          animation: wobble 8s infinite;
  right: 320px;
  bottom: 30px; }

.sample-blocks a:nth-child(3) {
  -webkit-animation: wobble 5s infinite;
          animation: wobble 5s infinite;
  right: 0px;
  bottom: 190px; }

.sample-blocks a:nth-child(4) {
  -webkit-animation: wobble 6s infinite;
          animation: wobble 6s infinite;
  right: 280px;
  bottom: 180px; }

.sample-blocks a:nth-child(5) {
  -webkit-animation: wobble 9s infinite;
          animation: wobble 9s infinite;
  right: 270px;
  bottom: 320px; }

.sample-blocks a:nth-child(6) {
  -webkit-animation: wobble 7s infinite;
          animation: wobble 7s infinite;
  right: 20px;
  bottom: 370px; }

.sample-blocks a:nth-child(7) {
  -webkit-animation: wobble 5s infinite;
          animation: wobble 5s infinite;
  right: 200px;
  bottom: 470px; }

.sample-blocks a:nth-child(8) {
  -webkit-animation: wobble 8s infinite;
          animation: wobble 8s infinite;
  right: 10px;
  bottom: 470px; }

.sample-blocks a:nth-child(9) {
  -webkit-animation: wobble 9s infinite;
          animation: wobble 9s infinite;
  right: 0px;
  bottom: 570px; }

@-webkit-keyframes wobble {
  0% {
    transform: rotate(-1deg) translate(-5px, -5px); }
  50% {
    transform: rotate(1deg) translate(5px, 5px); }
  100% {
    transform: rotate(-1deg) translate(-5px, -5px); } }

@keyframes wobble {
  0% {
    transform: rotate(-1deg) translate(-5px, -5px); }
  50% {
    transform: rotate(1deg) translate(5px, 5px); }
  100% {
    transform: rotate(-1deg) translate(-5px, -5px); } }

@media (max-width: 400px) {
  body > .footer .social a:last-child,
  body > .footer .nav a:last-child {
    display: none; } }

/* Custom navbar enhancements for ChicBySally */
.navbar {
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar-left {
  display: flex;
  align-items: center;
  flex: 1;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.navbar-light .nav-link {
  color: #191919 !important;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-dark .nav-link:hover,
.navbar-dark .nav-link:focus {
  color: #f59e0b !important;
}

.navbar-light .nav-link:hover,
.navbar-light .nav-link:focus {
  color: #f59e0b !important;
}

.navbar-dark .navbar-brand {
  color: #ffffff !important;
}

.navbar-light .navbar-brand {
  color: #191919 !important;
}

/* Ensure proper contrast for social icons */
.navbar-dark .nav-link svg {
  color: #ffffff;
  transition: color 0.3s ease;
}

.navbar-light .nav-link svg {
  color: #191919;
  transition: color 0.3s ease;
}

.navbar-dark .nav-link:hover svg,
.navbar-light .nav-link:hover svg {
  color: #f59e0b;
}

/* Mobile menu styling */
.navbar-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  z-index: 1040;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  padding: 1rem;
}

.navbar-mobile.show {
  transform: translateX(0);
}

.navbar-mobile .nav-link {
  color: #191919 !important;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}

.navbar-mobile .nav-link:hover {
  color: #f59e0b !important;
  background-color: #f8f9fa;
}

.navbar-mobile .navbar-brand {
  margin-right: 0;
}

.navbar-mobile .navbar-toggler {
  border: none;
  background: none;
  padding: 0.5rem;
}

/* Dropdown styling */
.dropdown .nav {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  min-width: 200px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.dropdown .nav.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown .nav-link {
  color: #191919 !important;
  padding: 0.75rem 1rem;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}

.dropdown .nav-link:hover {
  color: #f59e0b !important;
  background-color: #f8f9fa;
}

.dropdown .arrow {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.5rem;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.3s ease;
}

.dropdown.show .arrow {
  transform: rotate(180deg);
}

/* Ensure proper backdrop */
.backdrop-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1030;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.backdrop-navbar.show {
  opacity: 1;
  visibility: visible;
}

/* Show backdrop when mobile menu is open */
.navbar-mobile.show + .backdrop-navbar {
  opacity: 1;
  visibility: visible;
}

/* Navbar toggler styling */
.navbar-toggler {
  border: none;
  background: none;
  padding: 0.5rem;
  margin-right: 1rem;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

/* Hamburger menu icon colors */
.navbar-dark .navbar-toggler svg {
  color: #ffffff;
  transition: color 0.3s ease;
}

.navbar-light .navbar-toggler svg {
  color: #191919;
  transition: color 0.3s ease;
}

.navbar-dark .navbar-toggler:hover svg,
.navbar-light .navbar-toggler:hover svg {
  color: #f59e0b;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .navbar-left {
    flex: 1;
  }
  
  .navbar-right {
    display: none !important;
  }
  
  .navbar-mobile .nav-navbar {
    margin-bottom: 1rem;
  }
  
  .navbar-mobile .border-top {
    border-color: #e9ecef !important;
  }
}

/* Scrolled navbar styling */
.navbar-scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-scrolled.navbar-dark .nav-link {
  color: #191919 !important;
}

.navbar-scrolled.navbar-dark .navbar-brand {
  color: #191919 !important;
}

.navbar-scrolled.navbar-dark .nav-link svg {
  color: #191919;
}

/* Button styling */
.btn-round {
  border-radius: 2rem;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-success {
  background-color: #f59e0b;
  border-color: #f59e0b;
  color: #ffffff;
}

.btn-success:hover {
  background-color: #d97706;
  border-color: #d97706;
  color: #ffffff;
}

/* Scroll to top button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #f59e0b;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background-color: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.4);
}

.scroll-to-top:active {
  transform: translateY(0);
}

/*# sourceMappingURL=style.css.map */
