/* Reset some default margin and padding */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Basic typography */
body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

/* Color Scheme */
body {
    background-color: #f9f9f9;
    color: #333;
}

/* Header styles */
header {
    background-color: #333;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-right: 20px;
}

/* Style navigation links */
nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #f39c12;
}

/* Style navbar buttons */
.navbar-buttons button {
    padding: 10px 20px;
    background-color: #f39c12;
    border: none;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.navbar-buttons button:hover {
    background-color: #e67e22;
}

/* Hero section styles */
.hero {
    background-image: url('hero-image.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 200px 0;
    margin-bottom: 40px;
}

.btn-hero-cta {
    padding: 12px 24px;
    background-color: #3498db;
    border: none;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-hero-cta:hover {
    background-color: #2980b9;
}

.about {
    text-align: center;
    padding: 0 20px; /* Adjust margin spacing here */
    margin: 0 auto;
}

/* Footer styles */
.footer {
    background-color: #f9f9f9;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    box-shadow: 0px -1px 3px rgba(0, 0, 0, 0.1);
}

/* Typography */
h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
}

/* Whitespace */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    .navbar-buttons {
        margin-top: 10px;
        text-align: center;
    }

    .footer {
        flex-direction: column;
        align-items: center;
    }

    .contact-info, .navigation-links, .newsletter-signup {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

.site-content {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Login Form styles */
.login-form {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    background-color: white;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}

.login-form h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
}

.login-form button {
    padding: 10px 20px;
    background-color: #f39c12;
    border: none;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-form button:hover {
    background-color: #e67e22;
}

/* Footer styles */
.footer {
    margin-top: auto;
    background-color: #f9f9f9;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    box-shadow: 0px -1px 3px rgba(0, 0, 0, 0.1);
}

.mmj_logo {
    width: 4%;
    height: 4%;
}