﻿/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #DAA520; /* Bushveld Gold */
    --primary-hover: #B8860B;
    --dark-bg: #0F172A;
    --card-bg: #1E293B;
    --text-light: #F8FAFC;
    --text-muted: #94A3B8;
    --accent-green: #2E7D32;
    --border-color: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.site-header {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    color: var(--text-light);
    font-size: 1.6rem;
    font-weight: 700;
}

    .logo h2 span {
        color: var(--primary-color);
    }

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

    .nav-links a {
        color: var(--text-muted);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

        .nav-links a:hover, .nav-links a.active {
            color: var(--primary-color);
        }

.btn-nav {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .btn-nav:hover {
        background-color: var(--primary-hover);
    }

/* Hero Section - Brighter Background Adjustments */
.hero {
    position: relative;
    padding: 140px 0 100px 0;
    text-align: center;
    /* Reduced overlay opacity from 0.7 to 0.35 for a much brighter hero section */
    background: linear-gradient(rgba(15, 23, 42, 0.35), rgba(15, 23, 42, 0.35)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Added slight brightness and contrast boost */
    filter: brightness(1.1) contrast(1.05);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(30, 41, 59, 0.85);
    border: 1px solid var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary-color);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    /* High contrast text shadow so white text remains crisp over the brighter image */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

    .hero h1 span {
        color: var(--primary-color);
    }

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 35px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

    .btn-primary:hover {
        background-color: var(--primary-hover);
        transform: translateY(-2px);
    }

.btn-secondary {
    background-color: rgba(30, 41, 59, 0.9);
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

    .btn-secondary:hover {
        background-color: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
    }

/* Story & Conservation Ethos Section */
.story-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.story-card {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

    .story-card h2 {
        color: var(--primary-color);
        font-size: 2rem;
        margin-bottom: 20px;
    }

.story-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

    .story-text .highlight {
        color: var(--text-light);
        font-weight: 600;
    }

/* Generic Section Styles */
.about-section, .why-us-section, .features-section, .screenshots-section, .reserves-section, .pricing-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title h2 {
        font-size: 2.2rem;
        color: var(--text-light);
        margin-bottom: 10px;
    }

    .section-title p {
        color: var(--text-muted);
        font-size: 1.1rem;
    }

/* Grids */
.grid {
    display: grid;
    gap: 25px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Feature & Info Cards */
.card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

    .card:hover {
        transform: translateY(-5px);
        border-color: var(--primary-color);
    }

.card-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Screenshot Showcase Cards */
.screenshot-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    padding: 15px;
}

.screenshot-frame {
    width: 100%;
    height: 220px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
    cursor: pointer;
}

    .screenshot-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

        .screenshot-frame img:hover {
            transform: scale(1.03);
        }

.screenshot-card h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.screenshot-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Featured Reserves */
.reserve-card {
    background-color: var(--card-bg);
    padding: 35px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

    .reserve-card h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .reserve-card p {
        color: var(--text-muted);
    }

/* Pricing Section */
.price-card {
    background-color: var(--card-bg);
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .price-card.featured {
        border-color: var(--primary-color);
        box-shadow: 0 0 20px rgba(218, 165, 32, 0.15);
    }

    .price-card .badge {
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--primary-color);
        color: var(--dark-bg);
        padding: 4px 12px;
        border-radius: 12px;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
    }

    .price-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .price-card .price {
        font-size: 2.2rem;
        font-weight: 800;
        color: var(--primary-color);
        margin-bottom: 5px;
    }

    .price-card .validity {
        font-size: 0.85rem;
        color: var(--text-muted);
        margin-bottom: 15px;
    }

    .price-card p {
        font-size: 0.9rem;
        color: var(--text-muted);
        margin-bottom: 20px;
    }

.btn-payfast {
    width: 100%;
    font-size: 0.9rem;
    padding: 10px 12px;
}

/* Footer */
.site-footer {
    background-color: #080D1A;
    padding: 60px 0 30px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

    .site-footer h2 {
        margin-bottom: 15px;
    }

    .site-footer a {
        color: var(--primary-color);
        text-decoration: none;
    }

    .site-footer .copyright {
        margin-top: 40px;
        font-size: 0.85rem;
        color: var(--text-muted);
    }

/* Floating Controls */
.floating-nav-controls {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

    .floating-btn:hover {
        transform: scale(1.1);
        background-color: var(--primary-hover);
    }

    .floating-btn.hidden {
        display: none;
    }

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

    .lightbox-modal.active {
        display: flex;
    }

.lightbox-wrapper {
    max-width: 90%;
    max-height: 85%;
    text-align: center;
}

.lightbox-content {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 8px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
}

#lightbox-caption {
    color: var(--text-light);
    margin-top: 15px;
    font-size: 1.1rem;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--text-light);
    font-size: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Mobile menu toggles can be attached here */
    }

    .hero h1 {
        font-size: 2.1rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
}
