/* style.css - unified RoomEase theme */
:root{
  --maroon: #A6272F;
  --cream: #F9F6F1;
  --muted: #6B6B6B;
  --card: #FFFFFF;
  --radius: 12px;
  --max-width: 920px;
  --shadow: 0 6px 18px rgba(0,0,0,0.08);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}
*{box-sizing:border-box}
body{margin:0;background:var(--cream);color:#222;line-height:1.45}
.container{max-width:var(--max-width);margin:28px auto;padding:20px}
.header{display:flex;align-items:center;justify-content:space-between;padding:14px 20px;background:transparent}
.header .brand a{font-weight:700;color:var(--maroon);text-decoration:none;font-size:20px}
.header .navlinks{list-style:none;display:flex;gap:12px;margin:0;padding:0}
.header .navlinks a{color:#333;text-decoration:none;padding:8px 12px;border-radius:8px}
.header .navlinks a:hover{background:rgba(0,0,0,0.04)}

.card{background:var(--card);border-radius:var(--radius);box-shadow:var(--shadow);padding:18px;margin-bottom:18px}
.hero{display:flex;align-items:center;gap:24px;padding:32px;border-radius:16px;background:linear-gradient(90deg, rgba(166,39,47,0.07), rgba(249,246,241,0.9))}
.hero h1{margin:0;font-size:28px;color:var(--maroon)}
.btn{display:inline-block;background:var(--maroon);color:white;padding:10px 16px;border-radius:10px;text-decoration:none}
.btn.secondary{background:#FFF;border:1px solid #ddd;color:#333}

.form-group{margin-bottom:12px}
.label{display:block;margin-bottom:6px;font-weight:600;color:var(--muted);font-size:14px}
.input, textarea, select{width:100%;padding:10px;border-radius:10px;border:1px solid #e6e6e6;background:white}

.listing{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:12px;border-radius:10px;border:1px solid #f0f0f0}
.listing .meta{flex:1}
.listing .price{min-width:100px;text-align:right;font-weight:700;color:var(--maroon)}

/* small helpers */
.row{display:flex;gap:12px;flex-wrap:wrap}
.col{flex:1;min-width:180px}

/* footer */
.footer{padding:18px;text-align:center;color:#777;margin-top:26px}

/* transitions for pages */
.fade-enter{opacity:0;transform:translateY(6px)} 
.fade-enter-active{opacity:1;transform:none;transition:all .36s ease}

/* responsive */
@media (max-width:640px){
  .header{padding:12px}
  .hero{flex-direction:column;align-items:flex-start}
  .header .navlinks{display:none}
}

.header {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 16px 32px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 48px;
  /* Logo height */
  width: auto;
  border-radius: 8px;
  /* Soften edges for humanist feel */
  object-fit: contain;
}

.logo h1 {
  font-size: 1.6rem;
  /* Tweak this to match your overall typography */
  font-weight: 600;
  color: #7A1E1E;
  /* CMU-style deep burgundy */
  letter-spacing: 0.5px;
  margin: 0;
}

@media (max-width: 768px) {
  .logo img {
    height: 40px;
  }

  .logo h1 {
    font-size: 1.4rem;
  }
}

/* Feature Section Enhancements */
.features {
  text-align: center;
}

.features .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 20px;
}

.features .col {
  flex: 1 1 250px;
  max-width: 300px;
  margin: 16px;
}

.feature-icon {
  font-size: 42px;
  color: var(--maroon, #7A1E1E);
  margin-bottom: 10px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.col:hover .feature-icon {
  transform: scale(1.1);
  color: #a73333;
}

.hero-side {
  text-align: center;
  background: #fff8f8;
  border: 1px solid #f4dcdc;
}

.hero-side h3 {
  color: var(--maroon, #7A1E1E);
  margin-top: 6px;
}