@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --text-colour: #6c6c6c;
    --selection-bg: #000000;
    --selection-colour: #fff58a;
    --font-family: 'Montserrat', sans-serif;

    --bg-dark: #121212;
    --bg-darker: #1c1c1c;
    --bg-light: #2a2a2a;
    --highlight: #fff58a;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.2);
}

* {
    box-sizing: border-box;
}

html, body {
    cursor: default !important;
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    background-color: var(--bg-dark);
    color: var(--text-colour);
}

::selection {
    color: var(--selection-colour) !important;
    background-color: var(--selection-bg) !important;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--bg-darker);
    box-shadow: 0 4px 6px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar .logo img {
    height: 40px;
}

.navbar .logo span {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--highlight);
}

/* Hero Section */
.hero {
    background: url('/assets/img/hero.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    animation: fadeIn 2s ease;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background-color: var(--highlight);
    color: #000;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #e6df73;
}

/* Features Section */
.features-section {
    padding: 4rem 2rem;
    background-color: var(--bg-darker);
    text-align: center;
}

.features-section h2 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.feature-card {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    width: 300px;
    text-align: left;
    color: var(--white);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-top: 0.5rem;
}

/* CTA Section */
.cta-section {
    background-color: var(--bg-light);
    text-align: center;
    padding: 3rem 2rem;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-colour);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background-color: #0e0e0e;
    padding: 1rem;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-section {
    padding: 4rem 2rem;
    background-color: var(--bg-dark, #121212);
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-content.left {
    flex-direction: row;
}

.about-content.right {
    flex-direction: row-reverse;
}

.about-content.center {
    flex-direction: column;
    text-align: center;
    max-width: 800px;
}

.about-content img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.about-content h2 {
    margin: 0;
    color: var(--highlight, #fff58a);
    font-size: 1.8rem;
}

.about-content p {
    margin-top: 0.5rem;
    font-size: 1.1rem;
    color: var(--text-colour);
    line-height: 1.6;
    max-width: 600px;
}

.clickspark-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.clickspark-canvas {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 9999;
}