styles.css
Path: public_html/styles.css
Content: /* Basic Reset */
{ box-sizing: border-box; margin: 0; padding: 0; } html, body { height: 100%; } body { font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: #0f172a; background: #ffffff; line-height: 1.6; }
/* Layout */
.container { width: min(1100px, 92%); margin: 0 auto; }
.grid { display: grid; gap: 20px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 800px) { .grid.two { grid-template-columns: 1fr; } }
.site-header { border-bottom: 1px solid #e2e8f0; background: #ffffffcc; backdrop-filter: blur(6px); position: sticky; top: 0; z-index: 10; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand .logo { width: 36px; height: 36px; }
.brand-name { font-weight: 700; letter-spacing: 0.2px; }
.hero { padding: 56px 0 36px; background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%); }
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: center; }
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; } }
.hero h1 { font-size: clamp(28px, 3.5vw, 42px); line-height: 1.15; margin-bottom: 12px; }
.hero p { color: #334155; margin-bottom: 16px; }
.note { color: #0f766e; font-weight: 600; }
.hero-art img { width: 100%; max-width: 420px; display: block; margin: 0 auto; }
.cta-group { display: flex; gap: 12px; margin: 14px 0 4px; flex-wrap: wrap; }
.cta { display: inline-block; background: #0ea5e9; color: #fff; text-decoration: none; padding: 10px 16px; border-radius: 10px; font-weight: 600; border: 2px solid #0ea5e9; transition: 0.2s ease; }
.cta:hover { background: #0284c7; border-color: #0284c7; }
.cta-secondary { background: #14b8a6; border-color: #14b8a6; }
.cta-secondary:hover { background: #0d9488; border-color: #0d9488; }
.cta-outline { background: transparent; color: #0ea5e9; border-color: #0ea5e9; }
.cta-outline:hover { background: #e0f2fe; }
.features { padding: 36px 0; }
.card { border: 1px solid #e2e8f0; border-radius: 12px; padding: 18px; background: #fff; }
.card h3 { margin-bottom: 6px; font-size: 18px; }
.how-it-works { padding: 20px 0; }
.steps { counter-reset: step; list-style: none; display: grid; gap: 8px; }
.steps li { position: relative; padding-left: 36px; }
.steps li::before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: 0; width: 26px; height: 26px; border-radius: 50%; background: #0ea5e9; color: #fff; display: grid; place-items: center; font-weight: 700; }
.assurance { padding: 28px 0 56px; }
.site-footer { border-top: 1px solid #e2e8f0; padding: 16px 0; color: #475569; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.hidden { display: none; }
.banner { background: #ecfdf5; border-bottom: 1px solid #a7f3d0; color: #065f46; }
.banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 0; }
#banner-close { background: transparent; border: none; font-size: 22px; line-height: 1; cursor: pointer; color: #047857; padding: 4px 8px; border-radius: 6px; }
#banner-close:hover { background: #d1fae5; }
/* Book Now section */
.book-now { padding: 36px 0 56px; background: #f8fafc; }
.booking-form { margin-top: 12px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
label { font-weight: 600; font-size: 14px; color: #0f172a; }
input[type="text"], input[type="tel"], input[type="datetime-local"], select, textarea {
padding: 10px 12px; border: 1px solid #e2e8f0; border-radius: 10px; font: inherit; color: #0f172a; background: #fff;
}
textarea { resize: vertical; }
/* Mobile button stack */
@media (max-width: 520px) {
.cta-group { flex-direction: column; }
.cta-group .cta { width: 100%; text-align: center; }
}