@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

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

:root {
  --primary-color: #f0f8ff;
  --heading-main-bg-color: #5d4f41;
  --primary-font-color-black: #000000;
  --products-background-color: #faf1e8;
  --ad-heading-color: rgb(191, 191, 191, 0.8);
}

.main-logo-navbar {
  height: 65px;
}

.navbar ul {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  list-style: none;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.wooden-kitchen-pp {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  display: block;
}

.nav-links > a {
  text-decoration: none;
  font-family: Inter;
  color: var(--primary-color);
  font-weight: 300;
}

.cart-items > a {
  font-family: Inter;
  text-decoration: none;
  color: var(--primary-color);
}

.main-heading {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-heading-center {
  position: absolute;
  text-align: center;
  background-color: rgb(93, 79, 65, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  width: 90;
  max-width: 850px;
  padding: 60px 80px;
  font-family: Inter;
  font-weight: 200;
  font-size: large;
  color: var(--primary-color);
}

.button-order-now {
  padding: 20px 40px;
  border-radius: 5px;
  border: 0px;
  font-family: Inter;
  font-weight: 700;
  font-size: medium;
  margin-top: 5px;
}

.products-showcase {
  text-align: center;
  width: 100%;
  padding-bottom: 50px;
}

.products-showcase h1 {
  font-family: inter;
  font-size: 2.5rem;
  margin-top: 50px;
  margin-bottom: 30px;
  color: var(--primary-font-color-black);
  padding-top: 20px;
  padding-bottom: 20px;
}

.furniture-showcase {
  display: flex;
  justify-content: center;
  gap: 100px;
}

.furniture-showcase img {
  width: 280px;
  height: 350px;
  border-radius: 10px;
}

.product-bg-check {
  background-color: var(--products-background-color);
}

.product-title,
.product-price {
  font-family: inter;
  font-weight: 500;
}

.product-price {
  color: #8c8c8c;
  font-weight: 400;
  margin-top: 5px;
}

.products-botton1 {
  padding: 20px 40px;
  font-family: inter;
  font-weight: 700;
  font-size: medium;
  border-radius: 5px;
  background-color: var(--primary-font-color-black);
  color: #f0f8ff;
  border: 0px;
  margin-top: 40px;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background-color: #fff;
  padding: 40px 0;
  border-bottom: 1px solid #eee;
}

.marquee-content {
  display: flex;
  width: max-content;
  gap: 80px;
  animation: scroll-text 20s linear infinite;

  /* Stilul textului tău */
  color: var(--ad-heading-color);
  font-family: "Inter", sans-serif;
  font-size: 100px;
  font-weight: 500;
}

@keyframes scroll-text {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.ad-image {
  width: 100%;
  height: auto;
  display: block;
}

.ad-section-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ad-header-2nd {
  position: absolute;
  top: 30%;
  right: 10%;
  background-color: rgba(51, 47, 43, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  width: 40%;
  max-width: 600px;
  padding: 60px;
  font-family: inter;
}

.ad-header-2nd > h1 {
  color: var(--primary-color);
}

.ad-header-2nd > p {
  color: #988e86;
}

.products-button2 {
  padding: 20px 40px;
  font-family: inter;
  font-weight: 700;
  font-size: medium;
  border-radius: 5px;
  background-color: var(--products-background-color);
  color: #000000;
  border: 0px;
  margin-top: 40px;
}

.copyright-tag {
  color: #988e86;
  font-family: inter;
  font-size: x-small;
  bottom: 0;
  width: 100%;
  text-align: center;
}


::-webkit-scrollbar {
  width: 10px; 
  height: 10px; 
}


::-webkit-scrollbar-track {
  background: #3e342b; 
  border-radius: 1px;
}


::-webkit-scrollbar-thumb {
  background: linear-gradient(180px, #5d4f41, #8b735b); 
  border-radius: 10px;
  border: 2px solid #000000; 
  transition: all 0.3s ease;
}


::-webkit-scrollbar-thumb:hover {
  background: #3e342b; 
}