:root {
    --black: #000000;
    --golden-orange: #e9a54b;
    --highlight-yellow: #f9c438;
    --white: #ffffff;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
  }
  
  body {
    background-color: var(--golden-orange);
    color: var(--black);
  }
  
  header {
    background-color: var(--black);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }
  
  header img.logo {
    height: 40px;
  }
  
  nav {
    display: flex;
    gap: 20px;
  }
  
  nav a {
    color: var(--highlight-yellow);
    text-decoration: none;
    font-weight: bold;
  }
  
  .banner {
    width: 100%;
    height: 200px;
    background: url('../merlcena/images/topimg.jpg') center/cover no-repeat;
  }
  
  .logo-title {
    display: flex;
    align-items: center;
    gap: 10px; /* Reduce space between logo and h1 */
  }
  
  .logo-title h1 {
    font-size: 1.5em;
    margin: 0;
  }
  
  /* Rounded corners and embossed look for content boxes */
  .sidebar,
  .main-content,
  .two-column > div {
  border-radius: 10px;
  box-shadow: inset -2px -2px 5px #f1b776, inset 2px 2px 5px rgba(0,0,0,0.1);
  /* Soft inner embossed effect */
  }
  
  .container {
    display: flex;
    padding: 10px;
  }
  
  .sidebar {
    width: 15%;
    background-color: var(--golden-orange);
    padding: 10px;
  }
  
  .main-content {
    width: 85%;
    padding: 20px;
    background-color: #fdf6e3;
    gap: 10px;
  }
  
  .one-column {
    display: flex;
    padding: 20px;
    gap: 30px;
  }
  
  .two-column {
    display: flex;
    padding: 10px;
    gap: 15px;
  }
  
  .two-column > div {
    flex: 1;
    padding: 20px;
    background-color: #fdf6e3;
  }
  
  .footer {
      background: #fdf6e3;
      color: white;
      text-align: center;
      padding: 20px;
      font-size: 1em;
      margin-top: 20px;
  }
  
@media (max-width: 768px) {
    .container, .two-column {
        flex-direction: column;
    }

    .sidebar, .main-content, .two-column > div {
        width: 100%;
    }
}
/* Default mobile layout (mobile-first) */
.container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Tablet and up */
@media (min-width: 768px) {
  .container {
    flex-direction: row;
  }
}

/* Large screens */
@media (min-width: 1280px) {
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
}
