Skip to content

Commit ec0d7c7

Browse files
Update index.html
1 parent 2f9a866 commit ec0d7c7

1 file changed

Lines changed: 20 additions & 16 deletions

File tree

index.html

Lines changed: 20 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,24 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<meta name="viewport" content="width=device-width, initial-scale=1" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
66
<title>Bronzed Derby Lounge</title>
7-
<link rel="stylesheet" href="style.css">
7+
8+
<!-- ✅ CSS loads here -->
9+
<link rel="stylesheet" href="style.css" />
810
</head>
911

1012
<body>
1113
<main class="lounge">
12-
<h1>The Bronzed Derby Lounge</h1>
13-
<p class="subtitle">
14-
A listening room inside Singaw Sity.<br />
15-
Every order becomes a scene.
16-
</p>
14+
<header class="header">
15+
<h1>The Bronzed Derby Lounge</h1>
16+
<p class="subtitle">
17+
A listening room inside Singaw Sity.<br />
18+
Every order becomes a scene.
19+
</p>
20+
</header>
1721

18-
<section class="controls">
22+
<section class="panel controls">
1923
<h2>Choose a Booth</h2>
2024
<div class="buttons" id="booths">
2125
<button type="button" data-booth="3">Booth 3 — Rust Talk</button>
@@ -34,28 +38,28 @@ <h2>Choose a Vibe</h2>
3438
</div>
3539
</section>
3640

37-
<section class="order">
41+
<section class="panel order">
3842
<h2>Place an Order</h2>
39-
<p>One sentence. No explanations.</p>
4043

44+
<p class="hint">One sentence. No explanations.</p>
4145
<textarea id="detail" placeholder="One detail to include..."></textarea>
4246

4347
<div class="order-row">
44-
<button id="placeOrder" type="button" class="order-btn">Place Order</button>
45-
<button id="copyBtn" type="button" class="order-btn" style="display:none;">Copy Ticket</button>
48+
<button id="placeOrder" class="order-btn" type="button">Place Order</button>
49+
<button id="copyBtn" class="order-btn secondary" type="button" style="display:none;">Copy Ticket</button>
4650
</div>
4751

52+
<p class="confirmation" id="confirmText" aria-live="polite"></p>
53+
4854
<pre id="ticket" class="ticket" aria-live="polite"></pre>
49-
<p id="status" class="confirmation" style="display:none;">The bartender is working.</p>
5055
</section>
5156

52-
<footer>
57+
<footer class="footer">
5358
<p>Be kind. No personal data. Stay in-world.</p>
5459
</footer>
5560
</main>
5661

57-
<!-- IMPORTANT: script goes at the end so the elements exist before JS runs -->
62+
<!-- ✅ JS loads here (bottom of body) -->
5863
<script src="script.js"></script>
5964
</body>
6065
</html>
61-

0 commit comments

Comments
 (0)