:root { --brand: #ff385c; --dark: #222; --gray: #717171; --light: #f7f7f7; }
body { font-family: 'Circular', -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif; margin:0; color: var(--dark); line-height: 1.5; }
header { padding: 15px 40px; border-bottom: 1px solid #ddd; display: flex; justify-content: space-between; align-items: center; position: sticky; top:0; background: white; z-index: 1000; }
nav a { text-decoration: none; color: var(--dark); font-weight: 500; margin-left: 20px; font-size: 14px; }
.btn-primary { background: var(--brand); color: white; padding: 10px 20px; border-radius: 8px; text-decoration: none; font-weight: bold; display: inline-block; }
.container { max-width: 1100px; margin: auto; padding: 20px; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.card { border-radius: 12px; overflow: hidden; }
.card img { width: 100%; height: 250px; object-fit: cover; border-radius: 12px; }
.footer { background: var(--light); padding: 40px; text-align: center; margin-top: 50px; border-top: 1px solid #ddd; }
/* Booking Form */
.form-group { margin-bottom: 15px; }
input, textarea, select { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 8px; box-sizing: border-box; }
