* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(#f3efee);
  color: #651826;
  overflow-x: hidden;
}

.container {
  margin: 0 auto;
  position: relative;
}

/* Header */
header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #661826 !important;
  color: #fff !important;
  padding: 20px;
  position: sticky;
  top: 0;
  z-index: 101;
}

.logo {
  font-size: 20px;
  font-weight: 400;
  font-family: "Times New Roman", Times, serif;
  display: block;
  letter-spacing: 1px;
}

.menu-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  z-index: 102;
}

/* Mobile Menu */
/* Mobile Menu (fixed slide-in) */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: #661826; /* ensure visible background */
  padding: 80px 30px 30px;
  transition: right 0.3s ease;
  z-index: 200; /* higher than overlay and header */
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mobile-menu.active {
  right: 0;
}

/* Dark background overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 150;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Close button inside menu */
.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  z-index: 201; /* stay above other menu items */
}

.menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-items li {
  margin-bottom: 24px;
}

.menu-items a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-family: "Georgia", serif;
  font-style: italic;
  display: block;
  padding: 12px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-items a:hover {
  color: #dfa1ad;
  padding-left: 10px;
}

/* Hero Section */
.hero {
  padding: 80px 28px 50px;
  text-align: center;
  animation: fadeIn 1s ease-out;
  position: relative;
  z-index: 1;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-banner-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#banner_logo {
  width: 100%;
  height: 100%;
  max-width: 400px;
}

/* Logo Description */

.logo-description p {
  font-size: 1.7rem;
}

.cta-btn {
  background: #661826;
  color: #fff;
  border: 2px solid #661826;
  padding: 16px 44px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(102, 24, 38, 0.3);
  transition: all 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0.5px;
}

.cta-btn:active {
  transform: translateY(2px);
  box-shadow: 0 4px 12px rgba(102, 24, 38, 0.3);
}

/* About Us Section */
.about-section {
  padding: 80px 28px;
  position: relative;
  z-index: 1;
  min-height: 60vh;
}

.about-split {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  animation: slideUp 0.8s ease-out;
}

.about-content {
  width: 100%;
  max-width: 800px;
}

.about-content h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: #661826;
  font-family: "Georgia", serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.5px;
  text-align: center;
}

.about-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #661826;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  margin-bottom: 12px;
  text-align: justify;
}

.about-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  width: 100%;
}

.about-logo img {
  width: 100%;
  max-width: 300px;
  height: auto;
}

/* GSAP Horizontal Gallery */
.section,
section {
  position: relative;
  overflow: hidden;
}

.container-fluid {
  width: 100%;
  padding: 0;
  margin: 0;
}

.horiz-gallery-wrapper {
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.horiz-gallery-strip {
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
  position: relative;
}

.project-wrap {
  width: 33vw;
  min-width: 300px;
  padding: 2rem;
  box-sizing: content-box;
  flex-shrink: 0;
}

.project-wrap img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 20px;
  /* box-shadow: 0 20px 60px rgba(102, 24, 38, 0.25); */
  transition: transform 0.3s ease;
}

.project-wrap:hover img {
  transform: scale(1.05);
}

.gallery-intro {
  padding: 100px 28px;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.gallery-intro h2 {
  font-size: 48px;
  color: #661826;
  font-family: "Georgia", serif;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.5px;
}

.gallery-intro p {
  font-size: 18px;
  color: #661826;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  max-width: 600px;
}

/* Footer CTA */
.footer-cta {
  padding: 100px 28px 80px;
  text-align: center;
  position: relative;
  z-index: 1;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.footer-cta h2 {
  font-size: 36px;
  margin-bottom: 12px;
  color: #661826;
  font-family: "Georgia", serif;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.5px;
}

.footer-cta p {
  font-size: 16px;
  margin-bottom: 40px;
  color: #661826;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  font-weight: 300;
  max-width: 600px;
}

/* Linktree-style Links */
.links-container {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.link-button {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 2px solid #661826;
  border-radius: 50px;
  padding: 18px 32px;
  text-decoration: none;
  color: #661826;
  font-size: 18px;
  font-weight: 500;
  font-family: "Georgia", serif;
  font-style: italic;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(102, 24, 38, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

/* .link-button::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: #661826;
        transition: width 0.3s ease;
        z-index: -1;
      } */

/* .link-button:hover::before {
        width: 100%;
      } */

.link-button:hover {
  color: #fff;
  background: #661826;
  box-shadow: 0 8px 24px rgba(102, 24, 38, 0.3);
}

.link-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(102, 24, 38, 0.2);
}

.link-icon {
  font-size: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .project-wrap {
    width: 80vw;
    min-width: 250px;
    padding: 1rem;
  }

  .gallery-intro h2 {
    font-size: 32px;
  }

  .gallery-intro p {
    font-size: 16px;
  }

  .about-content h2 {
    font-size: 28px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}
/* Fixed Pill Navigation */
.badge-nav {
  position: fixed;
  width: 100%;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 200;
  opacity: 0;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.badge-nav.visible {
  opacity: 1;
  pointer-events: auto;
}

.badge-link {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #661826;
  border-radius: 50px;
  padding: 10px 20px;
  text-decoration: none;
  color: #661826;
  font-size: 15px;
  font-family: "Georgia", serif;
  font-style: italic;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(102, 24, 38, 0.15);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-link:hover {
  background: #661826;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 24, 38, 0.3);
}

/* Make it responsive */
@media (max-width: 768px) {
  .badge-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    top: 10px;
  }

  .badge-link {
    padding: 8px 16px;
    font-size: 14px;
  }
}
/* Light Box Modal */
.img-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.img-modal img {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  transition: 0.3s;
}

.close-modal:hover {
  color: #ccc;
}

.project-wrap img {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.project-wrap img:hover {
  transform: scale(1.05);
}

/* Inform Scroll */
.gallery-scroll-hint {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 95vh;
  text-align: center;
  color: #651826;
}

.scroll-hint-content h2 {
  /* font-size: 2.5rem; */
  font-size: 180%;
  margin-bottom: 0.5rem;
  font-weight: 300;
  font-style: italic;
  font-weight: normal;
}

.scroll-hint-content p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.scroll-indicator {
  font-size: 2rem;
  animation: bounce 1.5s infinite;
}

/* Simple bouncing arrow animation */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(8px);
  }
  60% {
    transform: translateY(4px);
  }
}
