/* Color variables */
:root {
    --primary-color: #ffffff; /* White */
    --secondary-color: #d4af37; /* Gold */
    --background-color: #000000; /* Black */
    --text-color: #e0e0e0; /* Light gray for better readability */
    --job-bg-color: #1a1a1a; /* Dark gray for job listings */
    --hover-color: #2a2a2a; /* Slightly lighter gray for hover effects */
}

/* General Reset */
body, h1, h2, p, ul, li, form, label, input, textarea {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--background-color);
    color: var(--text-color);
    padding-top: 80px; /* Space for fixed navbar */
}

/* Container Styling */
.container {
    width: 80%;
    margin: 20px auto;
    background: var(--job-bg-color);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1);
}

/* Navigation styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--background-color);
    padding: 10px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1);
}

.logo {
    padding-left: 20px;
    margin-right: auto; /* This will push the nav-links to the right */
}

.logo-image {
    max-height: 50px;
}

.nav-links {
    display: flex;
    gap: 20px;
    padding-right: 20px;
}

.nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Form Styling */
form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--primary-color);
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea,
form input[type="file"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid var(--text-color);
    border-radius: 5px;
    background-color: var(--job-bg-color);
    color: var(--text-color);
}

form input[type="submit"] {
    background: var(--secondary-color);
    color: var(--background-color);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

form input[type="submit"]:hover {
    background: var(--primary-color);
}

/* Heading Styling */
h1, h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Paragraph Styling */
p {
    margin-bottom: 15px;
}

/* Button Class */
.btn {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--background-color);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s;
}

.btn:hover {
    background: var(--primary-color);
}

/* Mobile Footer Styles */
.mobile-footer {
    display: none; /* Hidden by default on all screens */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--background-color);
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(255, 255, 255, 0.1);
}

.footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-item:hover {
    color: var(--secondary-color);
}

.footer-item i {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        padding-top: 120px; /* Increased padding for mobile to account for the logo and navigation */
    }

    .navbar {
        flex-direction: row; /* Change to row to keep logo on the left */
        justify-content: space-between; /* Space between logo and potential mobile menu button */
        padding: 10px 20px; /* Add some horizontal padding */
    }

    .logo {
        margin-bottom: 0; /* Remove the bottom margin */
    }

    .nav-links {
        display: none; /* Hide navigation links on mobile */
    }

    .container {
        width: 95%;
        margin-bottom: 70px; /* Add space for the footer */
    }

    .mobile-footer {
        display: flex; /* Show mobile footer on small screens */
        justify-content: space-around;
        align-items: center;
    }
}

/* Ensure the top navigation is visible on larger screens */
@media (min-width: 769px) {
    .navbar .nav-links {
        display: flex;
    }

    .mobile-footer {
        display: none; /* Hide mobile footer on larger screens */
    }
}

