/*
Theme Name: Paul Kelly 2025
Description: Paul Kelly 2025
Author: NTech Media
Author URI: http://ntechmedia.com


	Base Theme Name: HTML5 Blank
	Base Theme URI: http://html5blank.com
	Base Description: HTML5 Blank WordPress Theme
	Base Version: 1.4.2
	Base Author: Todd Motto (@toddmotto)
	Base Author URI: http://toddmotto.com
	Base Tags: Blank, HTML5, CSS3

	Base License: MIT
	Base License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    COLOURS
\*------------------------------------*/

:root body {
	--tan: #aaaaaa;
	--orange: #878787;
	--beige: #c8c8c8;
	--pink: #dddddd;
	--white: #ffffff;
	--black: #121617;
}

body {
	background: #222222;
}

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
/* Disabling due to issues, and because HTML5 Boilerplate made the same change */
/* for similar reasons 4 years ago and still hasn't added it back in yet */
/* https://github.com/h5bp/html5-boilerplate/commit/0d7f8d775ab4ab171c6372f992d506088ca5d3ed */
/* http://aestheticallyloyal.com/public/optimize-legibility/ */
/*	text-rendering:optimizeLegibility; */
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	font: 400 14px/1.8 'Open Sans', Helvetica, Arial, sans-serif;
	color: #FFFFFF;
	background: #131313 url('img/bg_pk_white_clean.jpg') no-repeat center / cover;
	height: 100%;
	background-repeat: repeat;
    background-size: auto;
    background-position: top center;
}

/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	height: auto;
	vertical-align:bottom;
}
a {
	color: var(--orange);
	text-decoration: none;
}

.has-white-color a {
	color: #FFFFFF;
}

a:hover {
	color: var(--pink);
}

.has-white-color a:hover {
	color: #FFFFFF;
}

a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}

input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* logo */
.logo {
	display: flex;
	justify-content: center;
	position: relative;
	z-index: 2;
	padding: 20px;
}
.logo-img {
	display: block;
	max-height: 100px;
}

.nav {
	position: relative;
	z-index: 2;
}

.nav ul {
	display: flex;
	list-style: none;
	padding: 0px;
	margin: 0px;
	justify-content: center;
}

.nav ul li a {
	font-size: 22px;
	font-weight: 500;
	display: block;
	text-align: center;
	position: relative;
	text-decoration: none;
	text-transform: uppercase;
	padding: 6px 12px;
	letter-spacing:0.05em;
	white-space: nowrap;
	font-family: 'Minion Pro', sans-serif;
	color: var(--pink);
}

.nav ul li:hover a {
	color: var(--tan);
}

.nav ul.sub-menu {
	display: none;
	position: absolute;
	z-index: 100;
}

.nav ul li:hover > ul.sub-menu {
	display: block;
	padding-top: 10px;
}

nav .store_anz,
nav .store_uk {
	display: none;
}

body.australia nav .store_anz,
body.unknown nav .store_anz,
body.new_zealand nav .store_anz,
body.united_kingdom nav .store_uk,
body.england nav .store_uk,
body.ireland nav .store_uk,
body.scotland nav .store_uk {
	display: list-item;
}

body.australia nav .store_us,
body.unknown nav .store_us,
body.new_zealand nav .store_us,
body.united_kingdom nav .store_us,
body.england nav .store_us,
body.ireland nav .store_us,
body.scotland nav .store_us {
	display: none;
}




.mobile_nav_bar {
	display: none;
	cursor: pointer;
	position: relative;
	width: 100%;
}

#mobile_nav_icon {
	width: 30px;
	height: 30px;
	min-width: 30px;
	position: relative;
	margin: 20px 20px 10px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
	z-index: 100;
}

#mobile_nav_icon span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: var(--tan);
	border-radius: 3px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

.mobile_nav_bar:hover #mobile_nav_icon span {
	background: var(--beige);
}

#mobile_nav_icon span:nth-child(1) {
	top: 3px;
}

#mobile_nav_icon span:nth-child(2),#mobile_nav_icon span:nth-child(3) {
	top: 12px;
}

#mobile_nav_icon span:nth-child(4) {
	top: 21px;
}

#mobile_nav_icon.open span:nth-child(1) {
	top: 12px;
	width: 0%;
	left: 50%;
}

#mobile_nav_icon.open span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

#mobile_nav_icon.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

#mobile_nav_icon.open span:nth-child(4) {
	top: 12px;
	width: 0%;
	left: 50%;
}

.mobilenav {
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	background: rgba(0,0,0,0.95);
	width: 100%;
	height: calc(100vh);
	padding-top: 0px;
	z-index: 2;
	overflow: hidden;
	transition: transform .3s ease-in-out;
	will-change: transform;
	padding: 30px 0px;
}

.mobilenav.nav_open {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}

.mobilenav .logo-img {
	width: 200px;
	margin-bottom: 20px;
}

.mobilenav ul {
	margin: 0px;
	padding: 0px;
}

.mobilenav ul li a {
	font-size: 18px;
	font-weight: 500;
	display: block;
	position: relative;
	text-decoration: none;
	text-transform: uppercase;
	padding: 0px 6px;
	letter-spacing: 0.05em;
	white-space: nowrap;
}


.touch_bar {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
}

@media screen and (max-width:980px){
	.nav ul li a {
		font-size: 14px;
		padding: 6px;
	}
}

@media screen and (max-width:720px){
	.mobile_nav_bar {
		align-self: center;
		flex-grow: 1;
		display: flex;
		justify-content: flex-end;
	}

	.header_wrap {
		display: flex;
	}

	.nav {
		display: none;
	}
}



.wp-block-group.is-style-group_centered .wp-block-group__inner-container {
	max-width: 1440px;
	margin: 0px auto;
	padding: 0px 20px;
}



.footer_subscribe {
	position: fixed;
	z-index: 10;
	background: rgba(0,0,0,0.6);
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
	justify-content: center;
	align-items: center;
}

.footer_subscribe iframe {
	width: 100vw;
	max-width: 500px;
	height: 100vh;
	max-height: 750px;
}

.footer_subscribe .wp-block-group__inner-container {
	position: relative;
}

.footer_subscribe .wp-block-group__inner-container .wp-block-buttons {
	position: absolute;
	top: -10px;
	right: -10px;
}

.wrapper {
	margin: 0px 30px;
}

.is-style-image_shadow img {
	box-shadow: 0px 0px 30px 5px;
}

.wp-block-button__link {
	background-color: var(--orange);
	color: var(--white);
	border-radius: 2px;
	font-family: 'Minion Pro', sans-serif;
	font-size: 30px;
    font-weight: 600;
	padding: 0px 10px;
}

.wp-block-button__link:hover {
	color: var(--black);
	background-color: var(--pink);
}

.footer_socials .wp-block-button__link {
	min-width: 35px;
	font-size: 18px;
	background: transparent;
}

.footer_socials .wp-block-button__link:hover {
	color: var(--orange);
}

.single-audio section[role=main] {
	max-width: 1400px;
	margin: 0px auto;
}

.single-lyric section[role=main],
.contact section[role=main] {
	max-width: 1400px;
	margin: 0px auto;
	display: flex;
    justify-content: center;
}

h1 {
	font-family: 'Minion Pro', sans-serif;
	font-weight: 700;
	font-size: 3em;
    margin: 0.33em 0;
}

.atoz_buttons {
	display: flex;
	flex-wrap: wrap;
}

.atoz_buttons a {
	background-color: var(--orange);
    color: var(--white);
    border-radius: 2px;
    font-family: 'Minion Pro', sans-serif;
    font-size: 20px;
    font-weight: 600;
	padding: 3px 7px 0px;
	text-decoration: none;
	margin: 0px 2px;
}

.atoz_buttons a:hover {
	color: var(--black);
	background-color: var(--pink);
}

.home_cover .wp-block-group {
	padding: 50px;
}

/*------------------------------------*\
    MUSIC
\*------------------------------------*/

.music_list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 40px;
	row-gap: 40px;
}

.music_art {
	aspect-ratio: 1;
}

.music_art a {
	display: block;
	height: 100%;
	width: 100%;
	background-size: cover;
	background-position: center;
	color: var(--orange);
}

.music_art a:hover {
	box-shadow: 0px 0px 30px 0px;
}

.music_list {
	display: none;
}

.music_list.active {
	display: grid;
}

/*------------------------------------*\
    AUDIO - album single post
\*------------------------------------*/

.audio_art {
	max-width: 500px;
}

.audio_links {
	display: flex;
	align-items: center;
	justify-content: center;
}

.audio_link {
	display: inline-block;
	padding: 5px 10px;
	font-size: 24px;
	font-family: 'Minion Pro', sans-serif;
    font-weight: 600;
}

.audio_spotify.audio_link,
.audio_apple.audio_link {
	font-size: 0px;
}

.audio_spotify::before {
	content: "\f1bc";
	font-family: "Font Awesome 6 Brands";
	font-weight: 400;
	font-size: 30px;
}

.audio_apple::before {
	content: "\f179";
	font-family: "Font Awesome 6 Brands";
	font-weight: 400;
	font-size: 30px;
}

.audio_grid {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 3em;
}

.audio_left {
}

.single-audio .wp-block-gallery {
	grid-column-start: 1;
    grid-column-end: 3;
}



/*------------------------------------*\
    BOOKS
\*------------------------------------*/

.book_list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 40px;
	row-gap: 40px;
}

.book_art {
	height: 100%;
/*	aspect-ratio: 1; */
}

.book-post span {
	font-size: 24px;
	font-family: 'Minion Pro', sans-serif;
    font-weight: 600;
	text-align: center;
	display: block;
	margin-top: auto;
}

.book_art a {
	display: flex;
	flex-direction: column;
    justify-content: flex-start;
	height: 100%;
	width: 100%;
	background-size: cover;
	background-position: center;
}

.book_list.active {
	display: grid;
}

.book_grid {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 3em;
}

.book_link {
	font-size: 24px;
	font-family: 'Minion Pro', sans-serif;
    font-weight: 600;
	text-align: center;
	display: block;
}


/*------------------------------------*\
    LYRICS
\*------------------------------------*/

.lyrics_alpha {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 40px;
	row-gap: 40px;
	max-width: 1280px;
	margin: 0px auto;
	padding: 0px 20px;
}

.alpha_divider a {
	display: block;
	margin: 4px 0px 4px 15px;
}


.photo-gallery .wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) a, .wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) img {
/*	padding: 5px 5px 50px; */
}

.photo-gallery .wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
	bottom: 0px;
	background: none;
	position: relative;
}

/*------------------------------------*\
    GALLERY
\*------------------------------------*/


.is-style-gallery_masonry.columns-default {
	-webkit-columns: 3; /* Chrome, Safari, Opera */
	-moz-columns: 3; /* Firefox */
	columns: 3; /* Standard syntax */
 }
 
 .is-style-gallery_masonry{
	display:block !important;
 }

 .wp-block-gallery.is-style-gallery_masonry.has-nested-images figure.wp-block-image {
	display: block;
 }
 
 .is-style-gallery_masonry .wp-block-image{
	width:100% !important;
	margin-bottom:var(--wp--style--unstable-gallery-gap) !important;
 }
 
 .is-style-gallery_masonry.columns-1 {
	-webkit-columns: 1; /* Chrome, Safari, Opera */
	-moz-columns: 1; /* Firefox */
	columns: 1; /* Standard syntax */
 }
 
 .is-style-gallery_masonry.columns-2 {
	-webkit-columns: 2; /* Chrome, Safari, Opera */
	-moz-columns: 2; /* Firefox */
	columns: 2; /* Standard syntax */
 }
 
 .is-style-gallery_masonry.columns-3 {
	-webkit-columns: 3; /* Chrome, Safari, Opera */
	-moz-columns: 3; /* Firefox */
	columns: 3; /* Standard syntax */
 }
 
 .is-style-gallery_masonry.columns-4 {
	-webkit-columns: 4; /* Chrome, Safari, Opera */
	-moz-columns: 4; /* Firefox */
	columns: 4; /* Standard syntax */
 }
 
 .is-style-gallery_masonry.columns-5 {
	-webkit-columns: 5; /* Chrome, Safari, Opera */
	-moz-columns: 5; /* Firefox */
	columns: 5; /* Standard syntax */
 }
 
 .is-style-gallery_masonry.columns-6 {
	-webkit-columns: 6; /* Chrome, Safari, Opera */
	-moz-columns: 6; /* Firefox */
	columns: 6; /* Standard syntax */
 }
 
 .is-style-gallery_masonry.columns-7 {
	-webkit-columns: 7; /* Chrome, Safari, Opera */
	-moz-columns: 7; /* Firefox */
	columns: 7; /* Standard syntax */
 }
 
 .is-style-gallery_masonry.columns-8 {
	-webkit-columns: 8; /* Chrome, Safari, Opera */
	-moz-columns: 8; /* Firefox */
	columns: 8; /* Standard syntax */
 }

/*------------------------------------*\
    VIDEOS
\*------------------------------------*/

.video_decades .wp-block-group {
	display: none;
}

.video_decades .wp-block-group.decade_active {
	display: block;
}

.video_decades iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 16/9;
}

/*------------------------------------*\
    WRITING
\*------------------------------------*/

.single-writings article.writings {
	margin: 0px auto;
	max-width: 1440px;
	padding: 0px 20px;
}


@media screen and (max-width:980px){
	.is-style-gallery_masonry.columns-4,
	.is-style-gallery_masonry.columns-3,
	.is-style-gallery_masonry.columns-5 {
		columns: 2;
	}

	.audio_grid {
		grid-template-columns: 1fr;
	}

	.single-audio .wp-block-gallery {
		grid-column-end: auto;
	}

	.audio_art {
		margin: 0px auto;
	}

	.lyrics_alpha {
		grid-template-columns: 1fr 1fr;
	}

	.book_grid {
		grid-template-columns: 1fr;
	}
}

@media screen and (max-width:720px){

	.music_list {
		grid-template-columns: 1fr;
	}

	.is-style-gallery_masonry.columns-4,
	.is-style-gallery_masonry.columns-3,
	.is-style-gallery_masonry.columns-2,
	.is-style-gallery_masonry.columns-5 {
		columns: 1;
	}

	.lyrics_alpha,
	.book_list {
		grid-template-columns: 1fr;
	}

	.wp-block-button__link {
		font-size: 16px;
		letter-spacing: 1px;
	}

	.home_cover .wp-block-group {
		padding: 0px;
	}
}

/*------------------------------------*\
    MISC
\*------------------------------------*/

@font-face {
    font-family: 'Minion Pro';
    src: url('fonts/MinionPro-Regular.woff2') format('woff2'),
        url('fonts/MinionPro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}
