body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

/* load-section */
.load-section {
  height: 100vh;
  width: 100%;
  background-color: #F3F3F3;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  animation: fadeOut 0.5s ease forwards;
  animation-delay: 1.5s;
}

.amelia {
  height: 40px;
  width: auto;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.3s ease-out forwards;
}

/* Animations */
@keyframes slideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
  }
}


/* navbar */
.navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1000;
  height: 100px;
}

.navbar {
  max-width: 1200px;
  width: 100%;
  padding: 20px 125px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #F3F3F3;
}
.navbar-wrapper {
  transition: height 0.3s ease;
}

.navbar {
  transition: padding 0.3s ease;
}

/* When scrolled past 100vh */
.navbar-wrapper.shrink {
  height: 70px;
}

.navbar-wrapper.shrink .navbar {
  padding: 0px 160px;
}


.logo {
  height: 30px;
  width: auto;
}

.nav-menubar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.menu {
  position: relative;
  font-family: Barlow, sans-serif;
  font-size: 17px;
  font-weight: 200;
  color: #000;
  margin: 0;
  cursor: pointer;
  display: inline-block;
}
.menu a{
  color: #000;
}

/* underline element */
.menu::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 0.5px;
  width: 100%;
  background-color: black;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s ease;
}

/* on hover, grow the underline left to right */
.menu:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* on hover out, shrink it again from left to right */
.menu:not(:hover)::after {
  transform: scaleX(0);
  transform-origin: right;
}
.mobile-menu {
  position: fixed;
  top: 70px; /* just below navbar */
  left: 0;
  width: 100%;
  height: 0; /* hidden initially */
  background-color: #F3F3F3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: height 0.3s ease;
  z-index: 999; /* under navbar-wrapper */
}

.mobile-menu.show {
  height: calc(100vh - 70px); /* full screen minus navbar height */
}

.mobile-menu .menu {
  display: block;
  font-size: 24px;
  font-weight: 200;
  margin: 15px 0;
  cursor: pointer;
  color: black;
}
.mobile-menu .nav-mid {
  display: flex;
  width: 80%;
  max-width: 400px;
  margin-bottom: 30px;
  gap: 10px;
  align-items: center;
  padding-top: 20px;
}

.mobile-menu .input-box {
  width: 100%;
  opacity: 1;
  padding: 15px 15px;
  background-color: #F3F3F3;
  font-family: Barlow, sans-serif;
  letter-spacing: 1px;
  border: none;
  border-bottom: 0.5px solid #000;
}

.mobile-menu .search {
  height: 24px;
  width: auto;
  cursor: pointer;
}


.nav-mid {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 20%;
  position: relative;
}


/* Hide input initially */
.input-box {
  width: 0;
  opacity: 0;
  padding: 2px 0;
  margin-right: 10px;
  background-color: #F3F3F3;
  border: none;
  border-bottom: 0.5px solid transparent;
  font-family: Barlow, sans-serif;
  letter-spacing: 1px;
  transition:
    width 0.4s ease,
    opacity 0.4s ease,
    border-bottom 0.2s ease 0.4s;
  outline: none;
  overflow: hidden;
}
.nav-mid:hover .input-box {
  width: 150px;
  opacity: 1;
  padding: 2px 5px;
  border-bottom: 0.5px solid #000;
}


/* Active: Show input and border after width animation */
.input-box.active {
  width: 150px;
  opacity: 1;
  padding: 2px 5px;
  border-bottom: 0.5px solid #000;
}


.search {
  height: 20px;
  width: auto;
  cursor: pointer;
}

.cart-section {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.count {
  background-color: black;
  font-size: 28px;
  font-weight: 500;
  font-family: Barlow, sans-serif;
  color: white;
  padding: 0px 10px;
  border-radius: 50%;
  padding-bottom: 2px;
}

.count:hover {
  background-color: #484848;
}

 .line-container {
      display: none; /* FIX: was display: none */
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
      background: #f2f2f2;
      padding: 20px;
      cursor: pointer;
    }

    .line {
      width: 20px;
      height: 2px;
      background-color: black;
      border-radius: 1px;
    }

    .line.shorter {
      width: 16px;
      transition: width 0.3s ease;
    }

    .line.shorter.expand {
      width: 20px;
    }



/* header-section */
.header-section {
  background-color: #F3F3F3;
  padding: 40px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
  height: 100vh;
}


.main-head {
  font-size: 60px;
  margin: 0;
  font-family: Julius Sans One, sans-serif;
  font-weight: 200;
  width: 70%;
  text-align: center;
  padding: 70px 0px;
  opacity: 0;
  transform: translateY(50px);
  transition: transform 1s ease, opacity 1s ease;
}

@keyframes slideUpHold {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  80% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-head.animate {
  animation: slideUpHold 1s ease forwards;
}


.header-second-section {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 30px 0px;
  margin-top: 50px;
  opacity: 0;
  transform: translateY(50px);
  transition: transform 1s ease, opacity 1s ease;
  
}

/* This class triggers the animation */
.header-second-section.animate {
  opacity: 1;
  transform: translateY(0);
  width: 100%;
}

.grid-lr {
  width: 10%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.unique {
  font-family: Barlow, sans-serif;
  margin: 0;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 200;
  color: #000;

  writing-mode: vertical-rl;
  /* vertical text from bottom to top */
  transform: rotate(180deg);
  /* flip the text direction */
}

.grid-mid {
  width: 80%;
}

.image-wrap {
  height: 70vh;
  width: 100%;
  overflow: hidden;
}

.hanging-bulb {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease-out;
  /* smooth zoom transition */
}




/* gallery-section */
.gallery-section {
  background-color: #ffffff;
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 350px;
  padding-bottom: 200px;
}

.gallery-section-head {
  font-size: 56px;
  margin: 0;
  font-family: Julius Sans One, sans-serif;
  font-weight: 400;
  width: 60%;
  text-align: center;
  padding: 40px 0px;
}

.paragraph-section {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.number {
  font-family: Barlow, sans-serif;
  font-size: 24px;
  color: #000;
  font-weight: 400;
  margin: 0;
}
.paragraph-grid{
  width: 100%;
}

.paragraph {
  font-family: Barlow, sans-serif;
  font-size: 18px;
  margin: 0;
  font-weight: 100;
  padding: 20px 0px;
  line-height: 25px;
}


/* project-section */
.project-section {
  padding: 60px 0px;
  background-color: #F3F3F3;
}

.first-project {
  display: flex;
  padding: 100px 100px;
}

.first-project-left {
  width: 30%;
}

.first-project-right {
  width: 70%;
  display: flex;
  gap: 100px;
  padding: 40px 0px;
}

.image-section {
  display: flex;
  gap: 30px;
}

.color {
  width: 450px;
  height: auto;
}


.review {
  font-family: Barlow, sans-serif;
  margin: 0;
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 200;
  color: #000;
  font-family: Julius Sans One, sans-serif;
  writing-mode: vertical-rl;
  /* vertical text from bottom to top */
  transform: rotate(180deg);
  /* flip the text direction */
  margin-bottom: -40px
}


.second-project {
  display: flex;
  padding: 150px 0px;
}

.second-project-left {
  width: 60%;
  position: relative;
  /* for absolute positioning of .review */
  display: flex;
  gap: 30px;
  flex-direction: column;
}

.second-project-right {
  width: 40%;
}

.hall {
  width: 100%;
  height: 80vh;
  overflow: visible;
  position: relative;
  /* anchor for .review absolute */
}

.scroll-zoom {
  display: inline-block;
  overflow: hidden;
  width: 100%;
  height: 80vh;
}

.scroll-zoom img {
  transform: scale(1.2);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
  will-change: transform, opacity;
}

.scroll-zoom.visible img {
  transform: scale(1);
  opacity: 1;
}


.hall-image {
  width: 95%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.second-review {
  position: absolute;
  right: 0;
  top: -50px;
  /* adjust if needed */
  margin: 0;
  padding: 10px;
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 200;
  color: #000;
  font-family: Julius Sans One, sans-serif;

  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.paragraph {
  font-family: Barlow, sans-serif;
  font-size: 17px;
  margin: 0;
  font-weight: 300;
  padding: 20px 0px;
  line-height: 25px;
}

.left-paragraph-section {
  text-align: right;
}

.para {
  font-family: Barlow, sans-serif;
  font-size: 17px;
  margin: 0;
  font-weight: 300;
  padding: 20px 0;
  line-height: 25px;
  width: 70%;
  margin-left: auto;
  padding-right: 40px;
  /* pushes the block to the right */
}

.third-project {
  padding: 80px 120px;
  gap: 0px;
  display: flex;
  padding-bottom: 100px;
}

.third-project-left {
  width: 40%;
  text-align: left;
}

.third-project-right {
  width: 60%;
  display: flex;
}

.image-zoom {
  display: flex;
  /* change from inline-block to flex */
  justify-content: flex-end;
  /* align content to right */
  overflow: hidden;
}

.image-zoom img {
  transform: scale(1.2);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
  will-change: transform, opacity;
}

.image-zoom.visible img {
  transform: scale(1);
  opacity: 1;
}

.third-para {
  font-family: Barlow, sans-serif;
  font-size: 17px;
  margin: 0;
  font-weight: 300;
  line-height: 25px;
  margin-left: auto;
  text-align: right;
}

.blue-wall {
  width: 80%;
  height: auto;
}

.third-review {
  margin-bottom: -50px;
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 200;
  color: #000;
  font-family: Julius Sans One, sans-serif;

  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.zoom-wrapper {
  display: inline-block;
  overflow: hidden;
}


.zoom-wrapper img {
  transform: scale(1.2);
  /* zoom-out starts here */
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
  will-change: transform, opacity;
}

.zoom-wrapper.visible img {
  transform: scale(1);
  /* end zoom-out */
  opacity: 1;
}

.fourth-project {
  padding: 150px 180px;
  gap: 50px;
  display: flex;
}


.layer-color {
  width: 70%;
  height: auto;
  transition: transform 0.3s ease-out;
  position: relative;
}

.fourth-para {
  font-family: Barlow, sans-serif;
  font-size: 17px;
  margin: 0;
  font-weight: 300;
  line-height: 25px;
  margin-left: auto;
  text-align: left;
}

.fourth-project-left {
  width: 60%;
  text-align: left;
}

.fourth-project-right {
  width: 40%;
  display: flex;
  gap: 30px;
}

/* grid-section */
.grid-section {
  padding: 80px 125px;
  background-color: #ffffff;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  margin: 40px auto;
  border: 1px solid #777;
}

.grid-item {
  border: 1px solid #777;
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 14px;
}

.grid-head {
  font-size: 32px;
  line-height: 35px;
  margin: 0;
  color: #000;
  font-family: Julius Sans One, sans-serif;
  font-weight: 400;
  width: 85%;
  padding-bottom: 30px;
}

.grid-para {
  font-family: Barlow, sans-serif;
  font-size: 17px;
  margin: 0;
  font-weight: 300;
  line-height: 25px;
  text-align: left;
  width: 95%;
}

.banner-wrapper {
  border-top: 1px solid #777;
  border-bottom: 1px solid #777;
  padding: 20px 0;
  text-align: center;
  width: 60%;
  margin: 80px auto;
  margin-bottom: 0;
  /* ✅ this centers it horizontally */
}

.banner {
  overflow: hidden;
  width: 100%;
  position: relative;
}


@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}


.marquee {
  display: flex;
  gap: 40px;
  animation: scroll-left 10s linear infinite;
  white-space: nowrap;
  /* ✅ Prevent line breaks */
  flex-wrap: nowrap;
  /* ✅ Force all items to stay in one line */
}

.item {
  display: inline-flex;
  /* ✅ Prevent div from breaking */
  align-items: center;
  font-family: Barlow, sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  color: #000;
  white-space: nowrap;
  /* ✅ Prevent item text from wrapping */
}

.dot {
  width: 8px;
  height: 8px;
  background-color: #000;
  border-radius: 50%;
  margin-right: 10px;
}


/* overlaping-section */
.overlaping-section {
  position: relative;
  z-index: 0;
}

/* box-section */
.box-section {
  position: relative;
  background-color: #F3F3F3;
  padding: 80px 125px;
  display: flex;
  gap: 30px;
  height: auto;
  z-index: 1; /* Ensure it appears above the support section */
}


.box-grid {
  width: 35%;
  gap: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.box {
  width: 70%;
  background-color: white;
  padding: 30px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.grid-hall {
  height: 200px;
}

.star-section {
  display: flex;
  justify-content: center;
  gap: 5px;
  padding: 30px 0px;
}

.star {
  height: 10px;
  width: 10px;
}

.box-head {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 2px;
  font-family: Julius Sans One, sans-serif;
  text-align: center;
  width: 75%;
}

.alina {
  font-family: Barlow, sans-serif;
  margin: 0;
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 200;
  padding: 20px 0px;
}

/* support-section */
.support-section {
  position: sticky;
  bottom: 0;
  background-color: #ffffff;
  padding: 0px 125px;
  display: flex;
  height: 100vh;
  width: 100%;
  box-sizing: border-box;
  z-index: 0; /* Ensure it stays behind the box section */
}
.vertical-line {
  width: 1px;               /* thin vertical line */
  height: 90%;            /* adjust height as needed */
  background-color: #ccc;  /* or any color */
  margin: 20px;             /* optional spacing */
}

.support-section-grid {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 40px;
}


.support-img {
  width: 150px;
  height: auto;
  margin: 0 auto;
}

.support-head {
  text-align: center;
  text-transform: uppercase;
  font-size: 20px;
  font-family: Julius Sans One, sans-serif;
  font-weight: 400;
  letter-spacing: 2px;
}

.support-para {
  margin: 0;
  text-align: center;
  font-family: Barlow, sans-serif;
  font-size: 18px;
  font-weight: 200;
  line-height: 1.4;
  padding: 10px 0px;
}

.btn {
  text-align: center;
  font-size: 12px;
  font-family: Barlow, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  background-color: #000;
  border-radius: 5px;
  padding: 20px 50px;
}

/* bottom-grid-section */
.bottom-grid-section {
  background-color: #D1D1CF;
  padding: 80px 125px;
  display: flex;
}

.bottom-grid {
  width: 50%;
}

.bottom-links {
  display: flex;
  gap: 80px;
  padding: 0px 0;
  font-family: Barlow, sans-serif;
}

.link-column h4 {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.link-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-column li {
  font-size: 10px;
  line-height: 2;
  text-transform: uppercase;
  color: #000;
  font-weight: 200;
}

.bottom-right {
  width: 100%;
  display: flex;
  height: 50%;
}

.bottom-img {
  width: 160px;
  height: 180px;
}


/* footer */
.footer {
  background-color: #000;
  color: #fff;
  padding: 40px 125px;
  font-family: Barlow, sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 40px;
}

.subscribe-form {
  width: 70%;
}

.subscribe-form .input-group {
  display: flex;
  width: 100%;
  max-width: 600px;
  gap: 30px;
}

.submit {
  font-size: 15px;
  font-weight: 400;
}

.subscribe-form input[type="email"] {
  flex: 1;
  width: 300px;
  padding: 18px;
  background-color: #999;
  border: none;
  font-size: 16px;
  min-width: 0;
  /* ensures proper shrinking in flex */
}

.subscribe-form button {
  padding: 12px 20px;
  background-color: #f1f1f1;
  border: none;
  font-size: 14px;
  letter-spacing: 2px;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 5px;
}


.privacy-text {
  font-size: 12px;
  color: #888;
  margin-top: 10px;
}

.privacy-text a {
  color: #ccc;
  text-decoration: underline;
}

.social-section {
  width: 10%;
}


.social-section h4 {
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 5px;
  margin-top: 0;
}

.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-links li {
  margin-bottom: 1px;

}

.social-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 10px;
}

.brand-logo {
  text-align: right;
  width: 20%;
}

.footer-logo {
  width: 100px;
  height: auto;
}

.footer-bottom {
  text-align: center;
  font-size: 10px;
  color: #ccc;
  margin-top: 30px;
}

.footer-bottom a {
  color: #87CEFA;
  text-decoration: none;
}