#site-footer {
  background: var(--cream-main);
  padding: 50px 20px 30px;
  font-family: var(--text);
  color: black;
}

/* ===================== CONTAINER ===================== */

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 30px;

  background-image: url("/images/bubbles_background/background3.png");
  background-size: 350px;
  
  border-radius: 20px;

  padding: 20px;
  
}

/* ===================== BRAND ===================== */
#logo-footer {
  width: 150px;
  margin-bottom: 20px;
}

.footer-brand h2 {
  font-family: var(--title);
  font-size: 28px;
  margin: 0;
}

.footer-brand span {
  display: block;
  color: var(--purple-main);
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.5;
}

/* ===================== SECTIONS ===================== */

.footer-section h3 {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--purple-main);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.footer-section a {
  display: block;
  text-decoration: none;
  color: black;
  font-size: 14px;
  margin-bottom: 8px;
  opacity: 0.8;
  transition: 0.2s ease;
}

.footer-section a:hover {
  color: var(--purple-main);
  opacity: 1;
  transform: translateX(3px);
}

/* ===================== BOTTOM ===================== */

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.08);
  text-align: center;
  font-size: 12px;
  opacity: 0.7;
}

.made-by {
  margin-top: 8px;
}

.author {
  color: var(--purple-main);
  font-weight: bold;
}

/* ===================== TABLET ===================== */

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer-brand {
    max-width: 250px;
  }

  .footer-section {
    min-width: 140px;
  }
}

/* ===================== DESKTOP ===================== */

@media (min-width: 1024px) {
  #site-footer {
    padding: 70px 80px 40px;
  }

  .footer-container {
    gap: 50px;
  }
}