html {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
	margin: 0;
	padding: 0;
}

/*-------------------------- mobile menu ---*/
.menu-toggle {
    background: #344e41;
    border: 0px solid #ff0055;
    padding: 15px;
    cursor: pointer;
    display: none;
    position: relative;
    z-index: 1000;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.menu-toggle:hover {
	background: #5e5e5e;
}
.menu-toggle:focus {
	background: #5e5e5e;
}

.menu-toggle svg {
    display: block;
}

.nav-primary {
    display: flex;
    justify-content: center;
    gap: 0;
}

@media (max-width: 960px) {
    .menu-toggle {
        display: block;
    }

    .nav-primary {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        background-color: #eeeeee;
        padding: 0;
		text-align: center;
    }

    .nav-primary.toggled-on {
        display: flex;
    }

    .nav-primary a {
        color: #000000;
        padding: 10px 0;
        text-decoration: none;
		font-size: 1.1em;
    }

    .nav-primary a:hover {
        text-decoration: underline;
		color: #444444;
		font-weight: bold;
    }
	
	#menu-main-navigation li {
		border-bottom: 1px solid #cccccc
	}
}


/*------------------------------- page ---*/

.entry {
	margin-bottom: 0;
}

.entry-meta {
	display: none;
}

.entry-title {
	text-align: center;
}

#genesis-content {
	width: 100%;
}

.site-inner,
.wrap {
	max-width: 100% !important;
	width: 100% !important;
	padding: 0 !important;
}

main.content {
	width: 100%;
	margin: 0;
	padding: 0;
}

article.entry {
	padding: 0;
}

.content {
	/* Reserved for future */
}

.site-title {
	font-size: 2em;
}

.site-footer {
	background-color: #000000;
	color: #ffffff;
}

.site-footer a {
	color: #555555;
}

#home {
	background: url('/wp-content/uploads/2024/12/home-bg-01.png') center/cover no-repeat, #ffc857;
	color: #ffffff;
	padding: 50px 50px .02px 50px;
	margin: 0;
}
#home .entry-header {
	display: none;
}

#guide {
	background-color: #000052;
	color: #ffffff;
	padding: 50px;
}
#guide .entry-title {
	color: #ffffff;
}

#news {
	background-color: #33fcff;
	padding: 50px;
}

#about {
	background: url('/wp-content/uploads/2025/03/bird.png') center/cover no-repeat, #ffc857;
	color: #ffffff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	padding: 50px 50px .02px 50px;
	margin: 0;
}

#spotlight {
	text-align: center;
	padding: 50px;
	background-color: #344e41;
	color: #ffffff;
}

.artist-list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	padding: 20px;
	margin: 0;
	list-style: none;
}

.artist-list li {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 300px;
	padding: 20px;
	background: #ffffff;
	border-radius: 15px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.artist-list li:hover {
	transform: translateY(-5px);
}

.artist-list figure {
	margin: 0;
	padding: 0;
}

.artist-list img {
	border-radius: 50%;
	width: 200px;
	height: 200px;
	object-fit: cover;
	border: 5px solid #fff;
}

.artist-list div h3 {
	text-align: center;
}


.artist-list div {
	color: #000000;
	text-align: left;
}


.artist-list div a {
	color: #000;
	text-decoration: none;
}

.artist-list div p {
	/*display: none;*/

}

.artists-name {
	font-weight: bold;
	font-size: 18px;
	margin: 10px 0;
	color: #344e41;
}

.artists-excerpt {
	font-size: 14px;
	line-height: 1.5;
	color: #000000;
	margin-top: 10px;
}

.single-artist {
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
}

.single-artist .entry-title {
	font-size: 2em;
	margin-bottom: 20px;
	color: #333;
}

.single-artist .entry-content {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    color: #222;
}

.single-artist .entry-content h1,
.single-artist .entry-content h2,
.single-artist .entry-content h3,
.single-artist .entry-content h4,
.single-artist .entry-content h5,
.single-artist .entry-content h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: #222;
}

.single-artist .entry-content p,
.single-artist .entry-content ul,
.single-artist .entry-content ol {
    font-size: 1rem;
    margin-bottom: 1em;
}

.single-artist .entry-content ul,
.single-artist .entry-content ol {
    padding-left: 1.5em;
}

.artist-links {
  margin-top: 2rem;
  text-align: center;
}

.artist-links ul {
  list-style: none;
  padding: 0;
  display: inline-flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.artist-links li {
  margin: 0;
}

.artist-links a {
  text-decoration: none;
  color: #344e41;
  font-weight: 600;
  transition: color 0.2s ease;
}

.artist-links a:hover,
.artist-links a:focus {
  color: #ff9900;
}



/*---ARCHIVE---*/


.artist-archive-wrapper {}
header {}
.archive-header {
	padding: 0 0 0 20px;

}
.archive-title {}

.artist-archive-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	padding: 50px 20px;

}

.artist-archive-entry {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	padding: 20px;
	text-align: center;
	max-width: 250px;
	width: 100%;
	transition: transform 0.3s ease;
}

.artist-archive-entry:hover {
	transform: translateY(-5px);
}

.artist-archive-entry img {
	width: 100%;
	height: auto;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 15px;
}

.artist-title a {
	text-decoration: none;
	font-weight: bold;
	color: #344e41;
	font-size: 1.2em;
}

.category-artists {
	/* Deprecated - now CPT based */
	display: none;
}

.entry {
	padding: 0;
}

/* === Single Artist Layout Fix === */
body.single-artist .site-container,
body.single-artist .site-inner,
body.single-artist .wrap,
body.single-artist .content,
body.single-artist main.content,
body.single-artist article.single-artist {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto;
    padding: 0 !important;
}

/* Ensure featured image and content stretch properly */
body.single-artist .artist-featured-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

/* Optional: Clean up any fixed padding on Genesis base templates */
body.single-artist .content .entry,
body.single-artist .content article {
    padding: 0 !important;
}
