@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;1,300&display=swap');

.footer-container {
  background-color: #1A0A0D;
  /* color: #d82424; */
  padding: 40px 60px 30px;
  
  /* PERBAIKAN 1: Bikin footer full 100% dari kiri ke kanan */
  width: 100%;
  box-sizing: border-box; 
  border-top: 3px solid #C8943B;
  
  /* Wajib relatif agar .footer-ornament berpijak ke footer ini */
  position: relative; 
  overflow: hidden; 
}

/* Flexbox untuk layout Atas (Brand + Links) */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 30px;
  padding-right: 300px; 
}

/* Brand Section */
.footer-brand {
  max-width: 320px;
}

.brand-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.brand-title h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.brand-title h2 span {
  color: #C8943B;
}

.brand-description {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #a39696;
  margin: 0;
}

/* Links Section */
.footer-links {
  display: flex;
  gap: 50px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 100px;
}

.footer-col h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.footer-col a {
  color: #a39696;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #C8943B;
}

/* Divider Line */
.footer-divider {
  width: 90%;
  height: 1px;
  background-color: #ffffff;
  opacity: 80%;
  margin-bottom: 24px;
}

/* Copyright Section */
.footer-bottom p {
  font-size: 0.85rem;
  color: #ffffff;
  opacity: 70%;
  margin: 0;
}

/* Ornamen Lingkaran Vektor */
.footer-ornament {
  position: absolute;
  right: 25px;
  top: 14px;   
  width: 230px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    padding: 40px 24px 24px;
  }
  .footer-top {
    flex-direction: column;
    padding-right: 0;
    gap: 30px;
  }
  .footer-brand {
    max-width: 100%;
  }
  .footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
  }
  .footer-ornament {
    display: none;
  }
  .footer-divider {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 32px 18px 20px;
  }
  .footer-links {
    gap: 24px 70px;
  }
  .footer-col {
    min-width: 0;
  }
  .footer-col a {
    font-size: 0.8rem;
  }
}