body {
    margin: 0;
    padding: 0;
    background-image: url('https://s3.amazonaws.com/anneother.ca/johnnyzhivago/johnny_1920x1080.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: Arial, sans-serif;
}

/* Base Styles for Navigation */
.topnav {
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    transition: background-color 0.3s;
    z-index: 1000;
}

.topnav:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.site-logo {
    color: #f2f2f2;
    text-decoration: none;
    font-size: 20px;
    padding: 14px 0;
    display: block;
}

/* Main Navigation Menu */
.main-nav {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
}

.menu-item {
    position: relative;
}

.menu-item a {
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
}

.menu-item a:hover {
    background-color: #ddd;
    color: black;
}

/* Submenu Styles */
.has-submenu {
    position: relative;
}

.has-submenu > a::after {
    content: ' /!\';
    font-size: 10px;
    margin-left: 5px;
}

.sub-menu {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    padding: 0;
    margin: 0;
    list-style: none;
}

.sub-menu .menu-item {
    width: 100%;
}

.sub-menu .menu-item a {
    padding: 12px 16px;
    text-align: left;
}

.has-submenu:hover .sub-menu {
    display: block;
}

/* Login Button Style */
.login-button a {
    background-color: #04AA6D;
    color: white !important;
    border-radius: 4px;
    margin-left: 10px;
}

.login-button a:hover {
    background-color: #038857;
    color: white !important;
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    background-color: white;
    height: 3px;
    width: 25px;
    transition: all 0.3s ease;
}

.hamburger::before {
    position: absolute;
    top: 10px;
}

.hamburger::after {
    position: absolute;
    bottom: 10px;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .topnav {
        padding: 0 15px;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
    
    .menu-toggle[aria-expanded="true"] .hamburger {
        background-color: transparent;
    }
    
    .menu-toggle[aria-expanded="true"] .hamburger::before {
        transform: rotate(45deg);
        top: 17px;
    }
    
    .menu-toggle[aria-expanded="true"] .hamburger::after {
        transform: rotate(-45deg);
        bottom: 17px;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        padding-top: 60px;
        transition: right 0.3s ease;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .menu-item {
        width: 100%;
    }
    
    .menu-item a {
        text-align: left;
        padding: 15px 20px;
    }
    
    .sub-menu {
        position: static;
        display: none;
        background-color: rgba(50, 50, 50, 0.9);
        box-shadow: none;
        width: 100%;
    }
    
    .sub-menu.show {
        display: block;
    }
    
    .has-submenu > a::after {
        content: ' +';
    }
    
    .has-submenu > a[aria-expanded="true"]::after {
        content: ' -';
    }
    
    .login-button {
        margin-top: 20px;
    }
    
    .login-button a {
        margin-left: 0;
    }
}

/* Other existing styles */
.artist {
  background-color: #04AA6D;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  font-size: 48px;
  font-family: Arial, sans-serif;
  padding: 20px;
}

div.artist{
  background-color: #04AA6D;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  font-size: 48px;
  font-family: Arial, sans-serif;
  padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bio-content {
    flex: 1;
    padding-right: 50px;
}

.bio-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.bio-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.bio-image {
    flex: 1;
    text-align: right;
}

.bio-image img {
    max-width: 800px;
    height: auto;
}

@media screen and (max-width: 1024px) {
    .container {
        flex-direction: column;
    }

    .bio-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .bio-image {
        text-align: center;
    }
    
    .bio-image img {
        max-width: 100%;
    }
}