* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body
{
    font-family: 'inter';
    background-color: white;
}

.main-header
{
    font-size: 1.5rem;
    text-align: center;
    background-color: bisque;
    padding: 5rem;
}

.navbar-active
{
  background-color: rgb(255, 0, 106);
}

.main-navbar {
  background-color:darksalmon; /* merah khas portal berita */
  padding: 15px 30px;
  z-index: 999;
  box-shadow: 0 0 10px #ddd;
    border: 1px solid #b9b9b9;
}

.main-navbar ul {
  list-style: none;
  display: flex;
  justify-content: center; /* tengahin isi navbar */
  flex-wrap: wrap; /* biar responsif kalau sempit */
  gap: 25px;
}

.main-navbar ul li a {
  color: black;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 15px;
}

.leftbar {
  background-color: beige;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 10px #ddd;
    border: 1px solid #b9b9b9;
  max-width: 250px;
  margin-top: 3%;
  margin-left: 3%;
  border: 1px solid #b9b9b9;
}

.leftbar h3 {
  margin-bottom: 15px;
  color: #b30000;
  font-size: 1.2em;
}

.musim .musim-item {
  margin-bottom: 15px;
}

.musim .musim-item a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
  display: block;
  margin-top: 5px;
}

.musim .label {
  background-color: #b30000;
  color: white;
  font-size: 0.75em;
  padding: 2px 8px;
  border-radius: 50px;
}

.main-layout {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.musim-preview {
  color: #333;
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  box-shadow: 0 0 10px #ddd;
    border: 1px solid #b9b9b9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-content {
  width: 55%;
  min-width: 300px;
}

.container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  flex-wrap: wrap; 
}

.leftbar,
.rightbar {
  width: 20%;
  min-width: 237px;
}

.rightbar {
  background-color: beige;
  border-left: 2px solid #ccc;
  padding: 20px;
  width: 250px;
  border-radius: 5px;
  box-shadow: 0 0 10px #ddd;
    border: 1px solid #b9b9b9;
}

.rightbar h2 {
  color: maroon;
  font-size: 1.5rem;
  margin-bottom: 15px;
  border-bottom: 2px solid maroon;
  padding-bottom: 5px;
}

.rightbar ul {
  list-style: none;
  padding: 0;
}

.rightbar li {
  margin-bottom: 10px;
}

.rightbar a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: 0.2s ease;
}

.rightbar a:hover {
  color: maroon;
  padding-left: 5px;
}

.main-content h6
{
    color: #202020;
    text-align: left;
    margin-top: 4%;
    font-size: 2rem;
}

.musim-preview {
  color: #333;
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  box-shadow: 0 0 10px #ddd;
    border: 1px solid #b9b9b9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.musim-preview:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.main-content p {
  font-size: 17px;
  margin-top: 2%;
  color: #333;
  line-height: 28px;
  text-align: justify;
}


.musim-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: cover;
  margin: 1rem;
  border-radius: 2%;
  
}

.musim-text {
    margin-top: 0.5rem;
    color: #333;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.musim-text h3 {
  font-size: 18px;
  margin-top: 1rem;
  color: #333;
}

.preview 
{
    display: flex;
    margin: 1rem;
}

.main-footer {
  background-color: #f5e8dc; /* warna beige kalem baby aegi */
  color: #5a2a2a; /* warna maroon soft */
  padding: 20px;
  text-align: center;
  font-size: 14px;
  border-top: 2px solid #d6b8a4;
  margin-top: 40px;
}

.footer-content p {
  margin: 5px 0;
}

.footer-content .sosmed a {
  text-decoration: none;
  color: #5a2a2a;
  font-weight: bold;
  margin: 0 5px;
  transition: color 0.3s ease;
}

.footer-content .sosmed a:hover {
  color: #b46b6b;
}

