/* ======================
   RESET & BASE
====================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Quicksans", sans-serif;
  margin: 0;
  font-size: 16px; /* 1rem = 16px */
}

/* ======================
   HEADER
====================== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 2rem;
  box-sizing: border-box;
}

header nav {
  display: flex;
  gap: 0.625rem; /* 10px */
}

header .nav-item {
  color: #fff;
  background-color: rgba(255, 228, 196, 0.25);
  text-decoration: none;
  font-family: "Titillium Web", sans-serif;
  font-size: 2.125rem; /* ~34px */
  margin: 0.625rem; /* 10px */
  cursor: pointer;
  text-shadow: 0.063rem 0.063rem 0.125rem rgba(0, 0, 0, 0.2); /* ~1px 1px 2px */
  border-radius: 0.375rem; /* 6px */
  padding: 0.25rem 0.5rem;
  transition: color 0.3s ease;
}

header .nav-item:hover {
  color: rgba(129, 74, 111, 0.843);
}

#site-logo {
  width: 10rem; /* 160px */
  height: 10rem;
  border-radius: 0.625rem; /* 10px */
}

/* ===========================
   FOOTER
=========================== */
footer {
  background: linear-gradient(351deg, rgb(129, 74, 111), rgba(129, 74, 111, 0.43));
  color: #fff;
  padding: 2rem 0; /* Aumento el padding para darle más espacio */
  text-align: center;
}

footer address {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 2rem; /* Espaciado entre dirección y redes sociales */
}

footer .social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem; /* Añadí más espacio entre los íconos */
  margin-top: 1.5rem;
}

footer .social-links a {
  display: block;
  width: 3rem; /* Reducido el tamaño de los íconos */
  height: 3rem;
}

footer .social-links img {
  width: 100%;
  height: 100%;
  border-radius: 50%; /* Aseguramos que los íconos sean circulares */
  object-fit: cover;
  transition: 0.3s;
}

footer .social-links a:hover img {
  transform: scale(1.1); /* Efecto de hover para hacer los íconos más interactivos */
}

footer .social-links a:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(228, 143, 209, 0.7);
}
/* ======================
   WELCOME SECTION
====================== */
#welcome {
  height: 62.5rem; /* 1000px */
  background-image: url("./images/site-background.jpg");
  background-position: center;
  background-size: cover;
}

#welcome-content {
  display: flex;
  position: relative;
  top: 12.75rem; /* 204px */
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  text-align: center;
  border-radius: 0.5rem; /* 8px */
  padding: 0;
  margin: 0 0.125rem; /* 2px */
}

#welcome-text {
  font-family: "Dancing Script", sans-serif;
  font-size: 2.25rem; /* 36px */
  padding: 3.75rem; /* 60px */
  color: #fff;
  border-radius: 0.625rem; /* 10px */
  background-color: rgba(129, 74, 111, 0.19);
}

/* ======================
   CAKES SECTION
====================== */
#categories-cakes {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-bottom: 0;
  gap: 1.5625rem; /* 25px */
}

.category-cakes {
  text-align: center;
}

.category-cakes p {
  font-family: "Dancing Script", sans-serif;
  font-size: 1.5rem; /* 24px */
  margin: 1.25rem 0; /* 20px */
  color: #fff;
}

.category-cakes img {
  width: 18.75rem; /* 300px */
  height: 18.75rem;
  border-radius: 4rem;
  object-fit: cover;
}

#cakes {
  background: linear-gradient(351deg, rgb(129 74 111), rgba(129, 74, 111, 0.43));
  padding: 1.5rem 0; /* opcional */
}

#cakes h2 {
  font-family: "Titillium Web", sans-serif;
  text-transform: uppercase;
  text-align: center;
  font-size: 2.5rem; /* 40px */
  color: #fff;
  margin: 0;
  padding: 1.5rem; /* 24px */
}
 