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: #f8eddc !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;
}





/*Project Description*/

/* === TITLE STYLE (same as your About section) === */

.section-title {
  font-size: 4rem;
  font-weight: 700;
  color: #800020;
  position: relative;
  display: inline-block;
  font-family: "Awesome Serif", serif;
  transition: transform 0.3s ease-in-out;
  margin-bottom: 15px;
  cursor: pointer;
}

.section-title::after {
  content: "";
  width: 15px;
  height: 15px;
  background-color: #800020;
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
  border-radius: 3px;  /* optional: if you want square dot sharp remove this */
}

/* Bounce hover animation */
@keyframes bounceHover {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-20px); }
  50%  { transform: translateY(0); }
  70%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.section-title:hover {
  animation: bounceHover 0.8s ease-in-out;
  transform: scale(1.05);
}

/* Mobile size fix */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.4rem;
  }
}


/* Whole section */
#pinned-section {
  width: 100%;
  position: relative;
}

/* Parent gets pinned */
.pinned-wrapper {
  display: flex;
  gap: 40px;
  padding: 0 120px;
  height: 100vh;
  background: #f8eddc;
}

/* LEFT PANEL */
.left-pane {
  flex: 1;
  height: 100vh;
  overflow: hidden;
  position: relative;
  padding-top: 100px;  /* <-- ALIGNMENT FIX */
}

.scroll-images {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.scroll-images img {
  width: 100%;
  border-radius: 12px;
}

/* RIGHT PANEL */
.right-pane {
  flex: 1;
  height: fit-content;
  margin-top: 100px;
}

.content-img {
  width: 100%;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .pinned-wrapper {
    flex-direction: column;
    padding: 20px;
    height: auto;
  }

  .right-pane {
    position: relative;
    top: 0;
  }
}



/* MOBILE FIX */
@media (max-width: 768px) {

  /* Stop GSAP pinned layout */
  #pinned-section {
    height: auto !important;
  }

  .pinned-wrapper {
    flex-direction: column;
    padding: 20px !important;
    height: auto !important;
    gap: 30px;
  }

  /* Right content first */
  .right-pane {
    order: 1;
    margin-top: 0;
    text-align: center;
  }

  .section-title {
    text-align: center;
    margin-bottom: 10px;
  }

  .desc {
    text-align: center;
    font-size: 16px;
  }

  .content-img {
    width: 100%;
    margin: 10px auto 20px auto;
    display: block;
  }

  /* Left images become normal */
  .left-pane {
    order: 2;
    height: auto !important;
    padding-top: 0 !important;
    overflow: visible !important;
  }

  .scroll-images {
    gap: 20px;
  }

  .scroll-images img {
    border-radius: 12px;
    width: 100%;
  }
}


/*Project description End*/


/*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%;
  }
}
