@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
    background-color: black;
    color: white;
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    margin: 0;
    padding: 0;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    color: grey;
}

img {
    max-width: 100%;
}

/* ===== NAV - Kenya style: title on top, links centered below ===== */
header {
    background-color: #111;
    border-bottom: 3px solid white;
    text-align: center;
    padding: 30px 20px 20px;
}

header h1 {
    font-size: 36px;
    letter-spacing: 8px;
    margin: 0 0 20px 0;
    text-shadow: 3px 3px 0px #444;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

header nav ul li a {
    font-size: 9px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

header nav ul li a:hover {
    color: grey;
    text-decoration: underline;
}

/* HERO */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.2);
    image-rendering: pixelated;
}

.hero-text {
    position: absolute;
    bottom: 50px;
    left: 40px;
}

.hero-text h2 {
    font-size: 90px;
    color: white;
    margin: 0;
    line-height: 1;
    text-shadow: 4px 4px 0px #444;
    text-transform: uppercase;
}

.hero-text p {
    font-size: 10px;
    color: #aaa;
    margin-top: 14px;
    letter-spacing: 3px;
}

/* PAGE WRAPPER */
.page-wrapper {
    max-width: 960px;
    margin: 0 auto;
    padding: 50px 30px;
}

h1 {
    font-size: 32px;
    margin-bottom: 10px;
    text-shadow: 3px 3px 0px #333;
}

h2 {
    font-size: 14px;
    margin-top: 30px;
    margin-bottom: 14px;
    color: #ccc;
}

h3 {
    font-size: 11px;
    margin-bottom: 8px;
}

p {
    font-size: 10px;
    color: #ccc;
    line-height: 2.2;
    margin-bottom: 18px;
}

hr {
    border: none;
    border-top: 2px dashed #444;
    margin: 30px 0;
}

/* STORY */
.story-layout {
    display: flex;
    gap: 40px;
}

.story-main {
    flex: 2;
}

.story-side {
    flex: 1;
    border-left: 3px solid #333;
    padding-left: 24px;
}

.story-side p {
    font-size: 8px;
    color: #666;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.story-side strong {
    display: block;
    font-size: 10px;
    color: white;
    margin-bottom: 16px;
}

/* Social buttons - kept but don't link anywhere real */
.story-side a {
    display: block;
    font-size: 8px;
    color: white;
    border: 2px solid #555;
    padding: 7px 10px;
    margin-bottom: 8px;
    text-transform: uppercase;
    cursor: pointer;
}

.story-side a:hover {
    background-color: white;
    color: black;
    text-decoration: none;
}

/* PAST DATES TABLE */
.dates-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 9px;
}

.dates-table th {
    text-align: left;
    color: #555;
    padding: 10px 0;
    border-bottom: 2px dashed #333;
    font-size: 8px;
    text-transform: uppercase;
}

.dates-table td {
    padding: 16px 0;
    border-bottom: 1px solid #222;
    color: #ccc;
    vertical-align: top;
}

.dates-table td:first-child {
    color: white;
    font-weight: bold;
    width: 160px;
}

.dates-table td:last-child {
    color: #666;
    font-size: 8px;
    text-transform: uppercase;
}

/* BOOKING */
.booking-layout {
    display: flex;
    gap: 50px;
}

.booking-info {
    flex: 1;
}

.booking-form {
    flex: 1.5;
}

.form-group {
    margin-bottom: 18px;
}

label {
    display: block;
    font-size: 8px;
    color: #666;
    margin-bottom: 6px;
    text-transform: uppercase;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    background-color: #111;
    border: 2px solid #444;
    color: white;
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    padding: 10px;
    outline: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-color: white;
}

textarea {
    height: 120px;
    resize: vertical;
}

.form-row {
    display: flex;
    gap: 14px;
}

.form-row .form-group {
    flex: 1;
}

input[type="submit"] {
    background-color: white;
    color: black;
    border: none;
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    padding: 12px 22px;
    cursor: pointer;
    margin-top: 6px;
    text-transform: uppercase;
}

input[type="submit"]:hover {
    background-color: #ccc;
}

/* FOOTER */
footer {
    background-color: #111;
    border-top: 3px solid white;
    text-align: center;
    padding: 20px;
    font-size: 8px;
    color: #555;
    margin-top: 60px;
}
