.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(238, 87, 188, 0.3);
}

.navbar a.logo img {
  height: 70px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  color: #fcb7ce;
  text-decoration: none;
  font-weight: 600;
  font-size: medium;
  font-family: "Arial", sans-serif;
  transition:
    color 0.3s,
    transform 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a:focus {
  color: #f96395;
  transform: scale(1.05);
}

.nav-menu li a.active {
  border-bottom: 2px solid #fcb7ce;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 10px;
  }
  .nav-menu {
    flex-direction: column;
    gap: 15px;
  }
}

.cake-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px 0;
  justify-content: center;
}

.cake-buttons button {
  background-color: #fcb7ce;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 10px 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(238, 87, 188, 0.3);
}

.cake-buttons button:hover,
.cake-buttons button:focus {
  background-color: #f96395;
  box-shadow: 0 6px 15px rgba(238, 87, 188, 0.5);
}

.cake-category {
  display: none;
}

.cake-category.active {
  display: block;
}

.cake-category p {
  font-family: "Georgia", serif;
  font-size: 20px;
  font-weight: 400;
  color: #333333;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 25px auto;
  line-height: 1.6;
}

.cake-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 20px;
  margin-top: 15px;
}

.cake-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  cursor: pointer;
}

.cake-grid img:hover,
.cake-grid img:focus {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.site-footer {
  background: #fff0f5;
  margin-top: 20px;
  padding-top: 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 40px;
  /* padding: 20px; */
}

.site-footer h2 {
  color: #FCB7CE;
}

.site-footer h3 {
  color: #FCB7CE;
  margin-bottom: 10px;
}

.site-footer p {
  color: #555;
  margin-bottom: 6px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  font-size: 22px;
  color: #FCB7CE;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ff6fa3;
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  border-top: 1px solid #f3d3dd;
  margin-top: 20px;
  font-size: 14px;
}
