/* Regal, Trustworthy Monroy Painting Theme */

body {
  font-family: 'Georgia', serif;
  margin: 0;
  background: #f4f2ee;
  color: #1b1b1b;
}

/* Sidebar */
.sidebar {
  width: 260px;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  overflow-y: auto;
  padding-top: 20px;
  background: #0c1a2d;
  border-right: 4px solid #bfa36f;
  z-index: 1000;
}

.sidebar .sidebar-header { color: #fff; }
.sidebar a {
  color: #d8d8d8;
  display: block;
  padding: 12px 20px;
  font-size: 1.1rem;
  text-decoration: none;
}

.sidebar a:hover {
  background: #bfa36f;
  color: #0c1a2d;
}

.sidebar-logo {
  width: 90px;
  height: auto;
  border-radius: 50%;
  border: 3px solid #bfa36f;
}

/* Page content wrapper */
.content-wrapper {
  margin-left: 260px;
  padding: 20px;
}

/* Header Banner */
.banner {
  background: #0c1a2d;
  color: white;
  padding: 25px;
  border-bottom: 5px solid #bfa36f;
  display: flex;
  align-items: center;
  gap: 20px;
}

.banner-logo {
  width: 90px;
  height: auto;
  border-radius: 50%;
  border: 3px solid #bfa36f;
}

.banner-title {
  font-size: 2.4rem;
  margin: 0;
  letter-spacing: 2px;
  font-weight: bold;
}

.banner-sub {
  margin: 0;
  opacity: 0.9;
  font-style: italic;
}

/* Cards / Forms / Buttons */
.card, form {
  border: 1px solid #d9d3c5;
  padding: 20px;
  background: #fffdfa;
  border-radius: 10px;
}

button, .btn-primary {
  background: #bfa36f !important;
  border: none !important;
  font-weight: bold;
}

button:hover, .btn-primary:hover {
  background: #a6874d !important;
}

/* Responsive */
@media (max-width: 767px) {
  .sidebar { position: relative; width: 100%; height: auto; border-right: none; }
  .content-wrapper { margin-left: 0; }
}
