:root{
  --brand:#0D47A1;
  --brand-2:#1565C0;
  --accent:#FFB300;
  --ink:#24303F;
  --muted:#6b7280;
  --bg:#ffffff;
  --bg-2:#f7fafc;
  --border:#e5e7eb;
  --radius:16px;
  --shadow:0 6px 20px rgba(0,0,0,.08);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font:16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--ink);
  background:var(--bg);
}
img{max-width:100%;height:auto;display:block;border-radius:12px}
.container{max-width:1200px;margin:0 auto;padding:0 16px}
.btn{
  display:inline-block;padding:12px 18px;border-radius:10px;
  background:var(--brand);color:#fff;text-decoration:none;font-weight:600;
  box-shadow:var(--shadow);transition:transform .15s ease,opacity .15s ease;
}
.btn:hover{transform:translateY(-1px);opacity:.95}
.btn.secondary{background:var(--accent);color:#111}
.badge{display:inline-block;background:var(--bg-2);border:1px solid var(--border);padding:4px 10px;border-radius:999px;font-size:.85rem;color:var(--muted)}
/* Header */
.header{position:sticky;top:0;z-index:50;background:#fff;border-bottom:1px solid var(--border);backdrop-filter:saturate(180%) blur(6px)}
.nav{display:flex;align-items:center;justify-content:space-between;padding:12px 16px}
.brand{display:flex;align-items:center;gap:10px;font-weight:800;color:var(--brand);text-decoration:none}
.brand img{width:36px;height:36px;border-radius:8px}
.menu{display:flex;gap:20px;align-items:center}
.menu a{color:var(--ink);text-decoration:none;font-weight:600}
.menu a:hover{color:var(--brand)}
.menu-toggle{display:none;border:1px solid var(--border);background:#fff;padding:8px 10px;border-radius:10px}
@media (max-width: 900px){
  .menu{display:none;position:absolute;left:0;right:0;top:60px;background:#fff;border-bottom:1px solid var(--border);flex-direction:column;padding:10px}
  .menu.show{display:flex}
  .menu-toggle{display:block}
}
/* Hero */
.hero{background:linear-gradient(180deg,rgba(13,71,161,.08),rgba(255,255,255,0));padding:52px 0 24px}
.hero-inner{display:grid;grid-template-columns:1.1fr .9fr;gap:28px;align-items:center}
.hero h1{font-size:clamp(28px,3.5vw,44px);line-height:1.2;margin:0 0 12px}
.hero p{color:var(--muted);margin:0 0 16px}
.hero .cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
@media (max-width: 900px){
  .hero-inner{grid-template-columns:1fr}
  .hero .cards{grid-template-columns:repeat(2,1fr)}
}
.card{background:#fff;border:1px solid var(--border);border-radius:var(--radius);padding:14px;box-shadow:var(--shadow)}
/* Sections */
.section{padding:36px 0}
.section h2{font-size:clamp(22px,2.6vw,32px);margin:0 0 14px}
.grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
@media (max-width: 1024px){.grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width: 640px){.grid{grid-template-columns:1fr}}
.room{border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;background:#fff;box-shadow:var(--shadow);display:flex;flex-direction:column}
.room .content{padding:14px;display:flex;flex-direction:column;gap:10px}
.room .meta{display:flex;gap:8px;flex-wrap:wrap}
.price{font-size:1.1rem;font-weight:800;color:var(--brand)}
/* Forms */
.form{background:#fff;border:1px solid var(--border);border-radius:var(--radius);padding:16px;box-shadow:var(--shadow);display:grid;gap:12px}
.input{display:flex;flex-direction:column;gap:6px}
.input input,.input select,.input textarea{
  width:100%;padding:12px;border:1px solid var(--border);border-radius:10px;background:#fff
}
.input input:focus,.input select:focus,.input textarea:focus{outline:2px solid rgba(13,71,161,.25);border-color:var(--brand)}
.inline{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
@media (max-width:640px){.inline{grid-template-columns:1fr}}
/* Footer */
.footer{background:var(--bg-2);border-top:1px solid var(--border);padding:22px 0;color:var(--muted)}
.footer a{text-decoration:none;color:var(--ink)}
.footer .cols{display:grid;grid-template-columns:2fr 1fr 1fr;gap:18px}
@media (max-width:900px){.footer .cols{grid-template-columns:1fr}}
/* Utility */
.kicker{letter-spacing:.08em;text-transform:uppercase;color:var(--muted);font-weight:700;font-size:.8rem}
.breadcrumbs{display:flex;gap:8px;flex-wrap:wrap;font-size:.9rem;color:var(--muted)}
.breadcrumbs a{text-decoration:none;color:var(--ink)}
.table{width:100%;border-collapse:collapse}
.table th,.table td{border:1px solid var(--border);padding:10px;text-align:left}
.alert{background:#fef9c3;border:1px solid #fde047;padding:10px;border-radius:10px}


.card {
  width: 100%;          /* full width of parent */
  max-width: 350px;     /* adjust as needed */
  height: 250px;        /* fixed height for all images */
  overflow: hidden;     /* hide overflow if image is bigger */
  border-radius: 8px;   /* optional: rounded corners */
  margin-bottom: 15px;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;    /* ensures image covers the box without stretching */
  display: block;
}

.logo {
  height: 80px;   /* same as index.html */
  width: auto;    /* keeps aspect ratio */
  object-fit: contain; /* ensures image fits without stretching */
}