@font-face {
    font-family: 'IBM Plex Mono';
    src: url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&display=swap');
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Proxima Nova', sans-serif; /* Applying Proxima Nova as default font for body text */
    background-color: #111; /* Setting the background color to black */
    color: #fff;
    line-height: 1.5rem;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 2px), 
                      radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 2px);
    background-size: 200px 100px; /* Adjust size of stars */
    background-position: 0 0, 50px 50px; /* Adjust position of stars */
}

header {
    background-color: #000;
    padding: 20px;
}

.logo img {
    width: 100px; /* Adjust size as needed */
    height: auto;
}

.logo {
    padding-left: 5%; /* Adjust the padding as needed */
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: left; /* Aligning text to left */
}

.hero {
    padding: 100px 0;
    text-align: left; /* Aligning text to left */
    background-image: url('images/mwb-hero.jpg'); /* Replace with your hero image path */
    background-size: cover;
    background-position: center;
    color: #fff;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 3rem;
    line-height: 3rem;
    font-family: 'IBM Plex Mono', monospace; /* Applying IBM Plex Mono to headings */
    font-weight: 300;
}

.bio, .links {
    text-align: left;
}

.bio h2, .links h2 {
    font-size: 2rem;
    font-weight: 300;
    font-family: 'IBM Plex Mono', monospace; /* Applying IBM Plex Mono to headings */
}

.embed h2 {
    font-size: 2rem;
    font-weight: 300;
    font-family: 'IBM Plex Mono', monospace;
}

footer {
    background-color: #0a0a0a; /* Slightly different shade of black */
    color: #fff;
    padding: 20px 0;
}

.footer-logo {
    text-align: left;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 100px;
    height: auto;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
}

.footer-column {
    width: 45%; /* Adjust width as needed */
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none; /* remove bullets */
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    list-style: none; /* double assurance */
    margin-bottom: 5px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

/* --- listen & follow section --- */
.social-links {
    display: block;        
    text-align: left;      
}

.social-links ul {
    list-style: none;   /* remove bullets */
    padding: 0;
    margin: 0;
}

.social-links li {
    list-style: none;   /* double assurance */
    margin: 0 0 12px 0; 
}

.social-links a {
    text-decoration: underline;
    font-size: 1.2rem;
    color: #e7e7e7;
    display: flex;          
    align-items: center;    
    justify-content: flex-start;
}

.social-links a img {
    width: 30px;
    height: auto;
    margin-right: 10px;
}

a {
    text-decoration: underline;
    color: #fff;
}

a:visited {
    color: #fff;
}

/* --- header layout --- */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.main-nav ul {
    display: flex;
    list-style: none; /* remove bullets in nav too */
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

.main-nav a {
    text-decoration: none;
    font-weight: 600;
}

/* --- mobile toggle button --- */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

/* --- responsive styles --- */
@media (max-width: 768px) {
    .main-nav ul {
        display: none;
        flex-direction: column;
        gap: 1rem;
        background: #111;
        position: absolute;
        top: 70px; /* adjust to header height */
        right: 1rem;
        padding: 1rem;
        border-radius: 8px;
    }

    .main-nav ul.show {
        display: flex;
    }

    .nav-toggle {
        display: block;
        color: #fff;
    }
}
