* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
  }
  
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px 50px 40px;
  background: rgba(0, 0, 0, 0); 
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10; 
  font-family: "Syne Mono", monospace;
}

  
  .nav-left,
  .nav-right {
    display: flex;
    gap: 20px;
  }
  
  .nav-left a,
  .nav-right a {
    text-decoration: none;
    color: black;
    font-weight: 400;
    font-size: 20px;
    position: relative;
  }
  
  .nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .nav-center h1 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
  }
  
  .dropdown {
    position: relative;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 160px;
    background-color: white;
    border: 1px solid #ddd;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
  .dropdown-content a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: black;
    font-size: 14px;
  }
  
  .dropdown-content a:hover {
    background-color: #f2f2f2;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }


  .dropdown-item {
  position: relative;
}

/* FIRST LEVEL (Room) */
.dropdown-level-1 {
  position: absolute;
  top: 100%;
  left: 0;
  width: 260px;
}

/* SECOND LEVEL (Living Room, etc) */
.dropdown-level-2 {
  position: absolute;
  top: 0;
  left: 100%;
  width: 260px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Show second dropdown on hover */
.dropdown-item:hover > .dropdown-level-2 {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

  .logo{
    height: 50px; 
    object-fit: contain;
  }

.furniture-gallery {
  padding: 60px 40px;
  background-color: #fafafa;
  text-align: center;
}

.furniture-gallery h2 {
  font-size: 32px;
  margin-bottom: 40px;
  font-family: "Syne Mono", monospace;
}

.furniture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
}

.furniture-item {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  padding: 20px;
  text-align: left;
  max-width: 350px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.furniture-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.furniture-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.furniture-item p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #444;
}

.furniture-item button {
  background-color: #a0281d;
  color: white;
  padding: 10px 16px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.2s ease;
}

.furniture-item button:hover {
  background-color: #811f14;
}


/* footer */
  .contact-section {
  background-color: #111;
  color: white;
  padding: 60px 20px;
  margin-top: 80px;
}

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  font-family: "Syne Mono", monospace;
}

.contact-wrapper h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.contact-details p {
  margin: 5px 0;
  font-size: 16px;
}

.contact-description {
  margin-top: 20px;
  font-size: 15px;
  opacity: 0.8;
}

.socials {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.socials a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}

.socials a:hover {
  border-bottom: 1px solid white;
}

.footer-bottom {
  margin-top: 40px;
  font-size: 14px;
  opacity: 0.6;
}