body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  background: #FFF8EB; /* Vanilla Cream background */
  color: #6B3E26; /* Cocoa Brown text */
  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(230, 181, 102, 0.4); /* Caramel Gold glow */
}

.site-header {
  position: relative;
  text-align: center;
  background: #E9C4B8; /* Blush Rose header */
  height: 200px;
  border-bottom: 3px solid #E6B566; /* Caramel Gold accent */
  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: 10px;
  padding-left: 30px;
  animation: fadeIn 2s ease;
}

.logo {
  height: 180px;
}

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

.nav a {
  color: #6B3E26; /* Cocoa Brown */
  background: #C7D3A5; /* Pistachio Sage */
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.nav a:hover {
  background: #E6B566; /* Caramel Gold hover */
  color: #FFF8EB; /* Vanilla text */
  box-shadow: 0 0 10px rgba(230, 181, 102, 0.7);
}

.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: #FFF8EB; /* Vanilla Cream content background */
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(230, 181, 102, 0.25);
  transition: transform 0.3s ease;
  color: #6B3E26;
}

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

/* Sidebar - adjusted to soft harmony */
.sidebar {
  flex: 1;
  padding: 20px;
  background: #E9C4B8; /* Blush Rose sidebar */
  border-radius: 15px;
  border: 1px solid #E6B566;
  box-shadow: 0 0 20px rgba(199, 211, 165, 0.3);
  color: #6B3E26;
  text-align: justify;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInRight 1.2s ease;
  transform-origin: center top;
}

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

.sidebar:hover {
  transform: scale(1.002);
  box-shadow: 0 0 22px rgba(230, 181, 102, 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(199, 211, 165, 0.4); /* Pistachio highlight */
  transition: transform 0.3s ease;
}

.sidebar img:hover {
  transform: rotate(3deg) scale(1.05);
}

.site-footer {
  background: #E6B566; /* Caramel Gold footer */
  color: #6B3E26;
  text-align: center;
  padding: 25px 0;
  margin-top: 50px;
  border-top: 3px solid #C7D3A5; /* Pistachio border */
  animation: fadeIn 2s ease;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #E6B566; /* Caramel Gold */
  color: #6B3E26;
  border: 2px solid #C7D3A5;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-size: 26px;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(230, 181, 102, 0.5);
}

.back-to-top:hover {
  background: #C7D3A5; /* Pistachio hover */
  color: #6B3E26;
  box-shadow: 0 0 15px rgba(199, 211, 165, 0.8);
}

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

/* Sidebar links */
.sidebar a {
  color: #6B3E26; /* Cocoa link */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.sidebar a:hover {
  color: #FFF8EB; /* Vanilla hover */
}

hr {
  border: none;
  border-top: 1px solid #E6B566;
  opacity: 0.3;
  margin: 40px 0;
}

/* Read More Button - Compact Version */
.btn {
  display: inline-block;
  background: #E6B566; /* Caramel Gold */
  color: #6B3E26;
  padding: 6px 14px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(230, 181, 102, 0.25);
  margin-top: 8px;
  letter-spacing: 0.4px;
}

.btn:hover {
  background: #C7D3A5; /* Pistachio hover */
  color: #6B3E26;
  box-shadow: 0 0 10px rgba(199, 211, 165, 0.5);
  transform: translateY(-1px);
}

.post-preview {
  border-bottom: 2px solid rgba(230, 181, 102, 0.5);
  padding-bottom: 25px;
  margin-bottom: 30px;
}

.post-preview:last-child {
  border-bottom: none;
}

/* Metrolagu Network Footer Section (SweetAlchemy Theme) */
.metrolagu-network {
  background: none; /* inherit the footer’s caramel gold tone */
  color: #6B3E26; /* cocoa brown 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: #6B3E26;; /* cocoa brown accent for heading */
  font-weight: 600;
  text-align: center;
}

.metrolagu-network p {
  color: #6B3E26; /* cocoa brown paragraph tone */
  margin-bottom: 10px;
  line-height: 1.7;
  text-align: center;
}

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

.network-links a {
  color: #6B3E26; /* cocoa link */
  text-decoration: none;
  transition: color 0.3s ease;
}

.network-links a:hover {
  color: #FFF8EB; /* vanilla cream 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: #6B3E26 !important; /* cocoa brown for the Metrolagu.vin link */
  text-decoration: none !important;
  transition: opacity 0.3s ease;
}

/* Distinct, pill-styled copyright design */
.site-footer .copyright {
  display: inline-block;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  color: #5A2F1C;
  background: #FFF8EB;
  padding: 8px 22px;
  border: 1.5px solid rgba(107, 62, 38, 0.3);
  border-radius: 999px;
  margin-top: 12px;              /* slightly reduced top spacing */
  margin-bottom: 4px;            /* brings it closer to bottom edge */
  box-shadow: 0 2px 6px rgba(230, 181, 102, 0.3);
  transition: all 0.3s ease;
}

/* Subtle hover effect */
.site-footer .copyright:hover {
  background: #E9C4B8;
  color: #6B3E26;
  box-shadow: 0 3px 10px rgba(230, 181, 102, 0.45);
  transform: translateY(-1px);
}

/* Adjust footer padding for tighter balance */
.site-footer {
  padding: 18px 0;               /* reduced from 25px */
}



