body {
  margin: 0;
  font-family: "abc-repro", sans-serif;
}

/* Header */
header {
  background: transparent;
  z-index: 1000;
  width: 100%;
 
}

/* Logo behavior */
#logo {
  transition: all 0.4s ease;
}
#logo.hidden {
  opacity: 0;
  transform: translateY(-10px);
}
#logo.small {
  transform: scale(0.95);
  opacity: 1;
}

/* Right menu background */
.menu-container {
  background-color: #F4E4C5;
  /* border: 1px solid #7f011e;*/
  
}

/* Bounce animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
  60% { transform: translateY(-3px); }
}

/* Menu links */
.nav-link {
  color: #4b000b !important;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: 0.3s;
}
.nav-link:hover {
  color: #800020 !important;
  animation: bounce 0.6s;
}

/* Contact button */
.contact-btn {
  background-color: #800020;
  color: #fff !important;
  padding: 6px 18px;
  border-radius: 6px;
  transition: 0.3s;
}
.contact-btn:hover {
  background-color: #a83246;
  animation: bounce 0.6s;
}

/* --- MOBILE MENU --- */
.navbar-toggler {
  border: none;
  background: transparent !important;
  filter: invert(25%);
}

/* Hamburger icon styling (black lines) */
.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(0,0,0,0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  height: 100vh;
  background-color: #F4E4C5;
  transition: right 0.4s ease;
  z-index: 2000;
  padding: 2rem;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu .close-btn {
  font-size: 2rem;
  cursor: pointer;
  text-align: right;
  margin-bottom: 1.5rem;
  color: #800020;
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
}
.mobile-menu ul li {
  margin-bottom: 1rem;
}
.mobile-menu ul li a {
  color: #4b000b;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.mobile-menu ul li a:hover {
  color: #800020;
  animation: bounce 0.6s;
}

/*Our services*/




/*Footer*/

body {
  background-color: #f8eddc;
  font-family: 'ABC Repro', sans-serif !important;
  color: #3a2a2a;
}

.footer-section {
  background-color: #f8eddc;
}

.footer-line {
  width: 60%;
  border-top: 1px solid #3a2a2a;
  opacity: 0.6;
  margin-top: 15px;
}

/* Quote */
.footer-quote {
  font-family: 'Awesome Serif', serif;
  font-size: 1.6rem;
  color: #8b0000;
  line-height: 1.6;
  opacity: 0;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  transition: opacity 0.5s ease-in-out;
  white-space: normal;
}

/* Hover Links */
.footer-link {
  color: #3a2a2a;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-family: 'ABC Repro', sans-serif;
}

.footer-link:hover {
  color: #a10000;
  transform: translateY(-2px);
}

/* Button */
.btn-danger {
  background-color: #a10000;
  border: none;
  transition: 0.3s ease;
}

.btn-danger:hover {
  background-color: #7a0000;
}

/* Footer Layout */
.footer-section .row {
  text-align: center;
}

.footer-section .row > .col-lg-4 {
  text-align: left; /* only the left column */
}
/* Add this at the bottom of your CSS */
.footer-section h5 {
  font-family: 'Awesome Serif', serif;
  font-weight: 600;
  color: #8b0000;
  letter-spacing: 0.5px;
}

@media (min-width: 768px) {
  .footer-section .row .col-lg-3,
  .footer-section .row .col-lg-4 {
    text-align: left !important; /* desktop */
  }
}



/* Responsive */
@media (max-width: 768px) {
  .footer-section {
    text-align: center;
    padding: 50px 25px;
  }

  .footer-quote {
    font-size: 1.25rem;
    margin: 30px 10px;
    max-width: 90%;
  }

  .footer-section .row > .col-lg-4 {
    text-align: center; /* center again on mobile */
  }

  .footer-line {
    width: 85%;
  }
}
