* { box-sizing: border-box; border-radius: 0; }
html, body { margin: 0; padding: 0; font-family: Inter, system-ui, Arial, sans-serif; color: #0f172a; overflow-x: hidden; }
.container { max-width: 1024px; margin: 0 auto; padding: 0 16px; }
.site-header { border-bottom: 1px solid #e2e8f0; background: #fff; position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo a { font-weight: 700; text-decoration: none; color: #0f172a; font-size: 20px; }
nav a { margin-left: 16px; text-decoration: none; color: #0f172a; padding: 8px 10px; border-radius: 0; }
nav a:hover { background: #f8fafc; }
.hero { padding: 0; display: grid; grid-template-columns: 1fr; gap: 24px; justify-items: center; width: 100vw; margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); }
.hero .intro { text-align: center; max-width: 900px; }
.hero-surface { position: relative; width: 100%; max-width: none; margin: 0; padding: 24px 24px; background-image: url('/assets/img/bg1.jpg'); background-size: cover; background-position: center center; background-repeat: no-repeat; border: none; box-shadow: none; min-height: calc(100svh - 64px); min-height: calc(100vh - 64px); display: grid; align-content: center; justify-items: center; }
.hero-surface::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,0.30) 0%, rgba(255,255,255,0.30) 100%); }
.hero-surface > * { position: relative; z-index: 1; }
.hero .intro { margin-bottom: 16px; }
.hero h1 { font-size: 40px; margin: 0 0 8px; color: #991b1b; }
.hero p { margin: 0 0 16px; color: #475569; }
.search-card { background: rgba(255,255,255,0.92); border: 1px solid #e2e8f0; border-radius: 0; padding: 12px; box-shadow: 0 8px 24px rgba(15,23,42,0.08); width: 100%; max-width: 1100px; margin: 0 auto; }
.search-row { display: grid; grid-template-columns: repeat(5, minmax(120px, 1fr)) auto; gap: 12px; align-items: end; }
@media (max-width: 768px) { .search-row { grid-template-columns: repeat(3, minmax(140px, 1fr)); } }
@media (max-width: 560px) { .search-row { grid-template-columns: 1fr; } }
.select-wrap { position: relative; }
.select-wrap select { appearance: none; -webkit-appearance: none; -moz-appearance: none; padding-right: 28px; height: 44px; font-size: 14px; }
.select-wrap input { height: 44px; }
.select-wrap::after { content: ""; position: absolute; right: 10px; top: 50%; width: 8px; height: 8px; border-right: 2px solid #334155; border-bottom: 2px solid #334155; transform: translateY(-50%) rotate(45deg); pointer-events: none; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card { border: 1px solid #e2e8f0; border-radius: 0; overflow: hidden; background: #fff; }
.card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.card .body { padding: 12px; }
.badge { display: inline-block; font-size: 12px; background: #f1f5f9; color: #0f172a; padding: 4px 8px; border-radius: 0; }
.btn { display: inline-block; height: 44px; padding: 0 18px; line-height: 44px; border-radius: 0; text-decoration: none; background: #1d4ed8; color: white; border: 1px solid #1e40af; cursor: pointer; text-transform: uppercase; letter-spacing: .04em; }
.btn.sm { height: 34px; line-height: 34px; padding: 0 12px; font-size: 13px; }
.btn:hover { filter: brightness(1.05); }
.btn:active { filter: brightness(0.98); }
.btn::after { content: "›"; display: inline-block; margin-left: 8px; transition: transform .15s ease; }
.btn:hover::after { transform: translateX(2px); }
.btn.secondary { background: #64748b; }
.btn.danger { background: #ef4444; }
/* Smaller buttons in admin area */
.admin .btn { height: 32px; line-height: 32px; padding: 0 10px; font-size: 12px; }
input, select, textarea { width: 100%; padding: 10px; height: 40px; border: 1px solid #cbd5e1; border-radius: 0; background: #fff; }
input:focus, select:focus, textarea:focus { outline: none; border-color: #0ea5e9; box-shadow: 0 0 0 1px #0ea5e9 inset; }
label { font-weight: 600; font-size: 12px; text-transform: uppercase; color: #334155; letter-spacing: .04em; }
.row { display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px; }
.col-3 { grid-column: span 3; }
.col-4 { grid-column: span 4; }
.col-6 { grid-column: span 6; }
.col-12 { grid-column: span 12; }
.section { padding: 32px 0; }
.site-footer { border-top: 1px solid #e2e8f0; margin-top: 32px; padding: 24px 0; color: #334155; }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { border-bottom: 1px solid #e2e8f0; padding: 10px; text-align: left; vertical-align: middle; }
.table tr:nth-child(even) { background: #f8fafc; }
.table th.center, .table td.center { text-align: center; }
/* Removed old .admin .chk wrapper to prevent checkbox layout conflicts */
.admin .admin-toolbar { display: flex; gap: 8px; flex-wrap: wrap; margin: 10px 0 16px; }
.admin .section h1 { font-weight: 700; letter-spacing: .02em; }
.admin textarea[name="description"], .admin textarea[name="amenities"] { resize: none; min-height: 140px; }
.admin form .grid { gap: 12px; }
.admin .table thead th { background: #f1f5f9; }
.admin td.feat-col { text-align: right; }
.admin td.feat-col input[type=checkbox] { width: 12px; height: 12px; vertical-align: middle; }
.admin .admin-panel { background: #fff; border: 1px solid #e2e8f0; box-shadow: 0 8px 24px rgba(15,23,42,0.06); padding: 12px; }
.admin .table thead th { background: #f1f5f9; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; color: #334155; }
.admin .table td { font-size: 14px; }
.admin .actions { display: inline-flex; gap: 6px; flex-wrap: wrap; align-items: center; justify-content: center; }
.images { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.images img { width: 100%; height: 120px; object-fit: cover; }
.filters { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-bottom: 16px; }
.map { width: 100%; height: 360px; border: 0; }
.site-header + main { padding-top: 64px; }
