body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  background: #F3F7F2;
  color: #2D2D2A;
  line-height: 1.7;
  text-align: justify;
  animation: fadeInBody 1s ease-in;
}

@keyframes fadeInBody {
  from { opacity: 0; }
  to { opacity: 1; }
}

html, body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
  transform: scale(1.02);
  box-shadow: 0 0 15px rgba(59,107,53,0.3);
}

.site-header {
  position: relative;
  text-align: center;
  background: #3B6B35;
  height: 200px;
  border-bottom: 3px solid #F5C85C;
  animation: slideDown 1s ease;
}

@keyframes slideDown {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.header-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
}

.logo-container {
  position: relative;
  z-index: 2;
  padding-top: 30px;
  padding-left: 30px;
  animation: fadeIn 2s ease;
}

.logo {
  height: 150px;
}

.nav {
  position: absolute;
  top: 15px;
  right: 25px;
  z-index: 3;
}

.nav a {
  color: #F3F7F2;
  background: #3B6B35;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav a:hover {
  background: #E1A6B5;
  color: #2D2D2A;
  box-shadow: 0 0 10px #F5C85C;
}

.container {
  display: flex;
  max-width: 1200px;
  margin: auto;
  padding: 30px 20px;
  gap: 20px;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.content {
  flex: 3;
  padding: 20px;
  text-align: justify;
  background: #C9C6E1;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(59,107,53,0.15);
  transition: transform 0.3s ease;
}

.content:hover {
  transform: translateY(-5px);
}

.sidebar {
  flex: 1;
  padding: 20px;
  background: linear-gradient(160deg, #3B6B35, #4A8350);
  border-radius: 15px;
  border: 3px solid transparent;
  border-image: linear-gradient(to right, #F5C85C, #3B6B35) 1;
  box-shadow: 0 0 20px rgba(59,107,53,0.2);
  color: #F3F7F2;
  text-align: justify;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInRight 1.2s ease;
}

@keyframes fadeInRight {
  from { transform: translateX(50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.sidebar:hover {
  transform: scale(1.003);
  box-shadow: 0 0 25px rgba(245,200,92,0.4);
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  animation: fadeIn 1.5s ease;
}

.sidebar img {
  width: 40px;
  height: 40px;
  margin-right: 12px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(245,200,92,0.3);
  transition: transform 0.3s ease;
}

.sidebar img:hover {
  transform: rotate(5deg) scale(1.1);
}

.site-footer {
  background: #3B6B35;
  color: #F5C85C;
  text-align: center;
  padding: 25px 0;
  margin-top: 50px;
  border-top: 3px solid #E1A6B5;
  animation: fadeIn 2s ease;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #3B6B35;
  color: #F3F7F2;
  border: 2px solid #F5C85C;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-size: 26px;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
}

.back-to-top:hover {
  background: #E1A6B5;
  color: #2D2D2A;
  box-shadow: 0 0 15px #F5C85C;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Sidebar links */
.sidebar a {
  color: #F3F7F2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sidebar a:hover {
  color: #F5C85C;
}

hr {
  border: none;
  border-top: 1px solid #2D2D2A;
  opacity: 0.2;
  margin: 40px 0;
}

/* Metrolagu Network Footer Section (GardenBloom Theme) */
.metrolagu-network {
  background: none; /* use footer’s main background */
  color: #F6F3E7; /* soft ivory text for readability */
  text-align: left;
  padding: 20px 0;
}

.network-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.metrolagu-network h3 {
  font-size: 1.2em;
  margin-bottom: 8px;
  color: #F5C85C; /* natural leaf-green accent for header */
  font-weight: 600;
  text-align: center;
}

.metrolagu-network p {
  color: #F6F3E7; /* soft ivory text tone */
  margin-bottom: 10px;
  line-height: 1.7;
  text-align: center;
}

.network-links {
  text-align: center;
}

.network-links a {
  color: #F6F3E7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.network-links a:hover {
  color: #A3C585; /* gentle green highlight on hover */
  text-decoration: none;
}

/* Footer copyright link styling */
.site-footer .copyright a,
.site-footer .copyright a:link,
.site-footer .copyright a:visited,
.site-footer .copyright a:hover,
.site-footer .copyright a:active {
  color: #F5C85C !important; /* green accent for the Metrolagu.vin link */
  text-decoration: none !important;
  transition: opacity 0.3s ease;
}


/* Distinct styling for the copyright line */
.site-footer .copyright {
  font-weight: 600;            /* Thicker to stand out */
  font-size: 0.95rem;          /* Slightly smaller for visual contrast */
  letter-spacing: 0.4px;       /* Tight, elegant spacing */
  margin-top: 12px;            /* Small gap from footer paragraph */
  border-top: 1px solid rgba(8, 8, 8, 0.25); /* Subtle cocoa divider */
  padding-top: 20px;
  color: #F5C85C;              /* Slightly deeper tone for distinction */
}