:root {
    --primary: #2c3e50;
    --accent: #d4af37; /* Goud-aksent vir 'n premium gevoel */
    --text: #333;
    --white: #ffffff;
    --header-height: 100px;
	--default-color: white;
	--hover-color: red; 
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Target the link directly and fix the double dash -- */
.footer_link {
    color: var(--default-color) !important;
    text-decoration: none; /* Optional: removes the underline */
}

.footer_link:hover {
    color: var(--hover-color) !important;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    overflow-x: hidden;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.text-center { text-align: center; }
.bg-black { background-color: #000; color: #fff; }
.bg-white { background-color: #fff; color: #000; }
.white-text { color: #fff !important; }

/* Navigation */
header {
    background: #000;
    color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 100%;
}

.logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo span { font-weight: 300; }

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #ccc;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1531058020387-3be344556be6?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 80px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 span { font-weight: 400; }

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
    border-radius: 0;
    margin: 10px;
}

.btn-white { background: #fff; color: #000; border: 2px solid #fff; }
.btn-white:hover { background: transparent; color: #fff; }

.btn-black { background: #000; color: #fff; border: 2px solid #000; }
.btn-black:hover { background: transparent; color: #000; }

.btn-outline { border: 2px solid #fff; color: #fff; }
.btn-outline:hover { background: #fff; color: #000; }

/* Grid Systems */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    text-align: center;
    border: 1px solid #eee;
    padding-bottom: 20px;
}

.card-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 50px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.5s;
}

.gallery-item img:hover {
    filter: grayscale(0%);
}

/* Split Sections */
.split-section {
    display: flex;
    flex-wrap: wrap;
}

.split-box {
    flex: 1;
    min-width: 50%;
    padding: 100px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.split-box h2 { font-size: 3rem; margin-bottom: 20px; }

/* Contact Wrapper */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #333;
    background: #111;
    color: #fff;
}

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    margin-right: 20px;
}

/* Video Placeholder */
.video-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    height: 450px;
    border: 1px solid #333;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Footer */
footer {
    padding: 40px;
    text-align: center;
    background: #000;
    color: #555;
    border-top: 1px solid #222;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .nav-links {
        position: absolute;
        right: 0;
        height: 100vh;
        top: 60px;
        background-color: #000;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }

    .nav-links li {
        margin: 25px 0;
    }

    .nav-links li a {
        font-size: 1.2rem;
    }

    .nav-links.active {
        transform: translateX(0%);
    }

    .hamburger {
        display: block;
    }

    .hero h1 { font-size: 2.5rem; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .split-box { min-width: 100%; }
}
Since we are sticking with the Weekend Market JHB sleek black-and-white aesthetic, here is the CSS to make your table borders solid black and perfectly aligned.

By default, HTML tables have a weird gap between borders. I’ve included border-collapse: collapse; to ensure you get those sharp, single lines that match your site's modern look.
The CSS (style.css)

Add this to your stylesheet to target all tables on your site:
CSS

/* Table Container for Responsiveness */
.table-container {
    width: 100%;
    overflow-x: auto; /* Allows scrolling on mobile */
    margin: 20px 0;
}

/* The Table Styling */
table {
    width: 100%;
    border-collapse: collapse; /* Merges double borders into one */
    margin-bottom: 1rem;
    background-color: #fff;
    color: #000;
}

/* Borders for Table, Header, and Cells */
table, th, td {
    border: 2px solid #000; /* Pure black borders */
}

/* Padding and Alignment */
th, td {
    padding: 12px 15px;
    text-align: left;
}

/* Header Styling */
th {
    background-color: #000; /* Black background for headers */
    color: #fff; /* White text for headers */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Optional: Zebra Striping for better readability */
tr:nth-child(even) {
    background-color: #f2f2f2;
}