@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wdth,wght@0,75..100,100..900;1,75..100,100..900&display=swap");
body {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
}
.bg-af {
  background: #612e31;
}
.text-af {
  color: #612e31;
}
.nav-link {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}
.header {
  padding: 20px 0px;
}
.mainLogo {
  max-width: 650px;
  width: 100%;
}
.square-img-container {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 aspect ratio */
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  overflow: hidden;
}

.square-img-container img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 16px); /* Subtract padding (8px per side) */
  height: calc(100% - 16px); /* Subtract padding (8px per side) */
  object-fit: contain; /* Image fits inside without cropping */
  max-width: 100%;
  max-height: 100%;
}

.furniture-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
}

.furniture-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.card-text {
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer {
  margin-top: 100px;
  border-top: 4px solid #612e31; /* Brand color border-top */
  background: #fff9f9;
}

.footer-logo {
  width: 90%;
  height: auto;
}

.footer h5 {
  color: #612e31; /* Yellow for headings */
  font-weight: 600;
}

.footer p,
.footer a {
  color: #1b1b1b;
  font-size: 0.9rem;
}

.footer a:hover {
  color: #ffd700;
  text-decoration: underline;
}

.footer ul li {
  margin-bottom: 0.5rem;
}
