/*
Theme Name: Rachel Fuhrer Music
Theme URI: https://rachelfuhrermusic.com/
Description: A custom Wordpress theme developed for Rachel Fuhrer.
Version: 1.0
Author: Mathew Smith
Author URI: https://mathewsmithstudio.com/
Tags: black, gray, white, two-columns, fixed-width
*/

@font-face {
	font-family: 'Veneer Three';
	src: url('assets/fonts/VeneerThree.woff2') format('woff2'),
		 url('assets/fonts/VeneerThree.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

:root {
	--red: #b32025;
	--red-dark: #8f171b;
	--black: #101010;
	--charcoal: #181818;
	--gray: #f2f2f2;
	--white: #ffffff;
	--body: 'Space Grotesk', sans-serif;
	--headline: 'Veneer Three', sans-serif;
}

body {
	color: var(--white);
	background-color: var(--black);
	font-family: var(--body);
	line-height: 1.6;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6, .navbar-brand, .footer-brand {
	font-family: var(--headline);
	font-weight: normal;
	line-height: 1;
	text-transform: uppercase;
	/*letter-spacing: -0.03em;*/
}

/*h1 {
	font-size: clamp(2.5rem, 5vw, 5rem);
}

h2 {
	font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
	font-size: 1.35rem;
}*/

a {
	color: var(--red);
	text-decoration: none;
	transition: all .15s ease-in-out;
}

a:hover {
	color: var(--red-dark);
}

.btn {
	font-size: 0.8rem;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	border: 0;
	border-radius: 0;
	padding: 1rem 1.75rem;
}

.btn-red {
	color: var(--white);
	background-color: var(--red);
}

.btn-red:hover {
	color: var(--white);
	background-color: var(--red-dark);
}

.btn-dark-red {
	color: var(--white);
	background-color: var(--black);
}

.btn-dark-red:hover {
	color: var(--white);
	background-color: var(--red-dark);
}

.eyebrow {
	color: var(--red);
	font-size: 0.85rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 0.75rem;
}

/*.site-header {
	background-color: var(--black);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 20;
}*/

.navbar {
	padding: 20px 0;
}

.navbar-brand {
	color: var(--white);
	font-size: 3rem;
}

.navbar-brand span, .footer-brand span {
	color: var(--red);
}

/*.navbar-nav {
	gap: 1.5rem;
}*/

.navbar-nav .menu-item {
	margin: 0 20px;
}

.navbar-nav .nav-link {
	color: var(--white);
	font-size: 0.875rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	position: relative;
	padding: 0.5rem 0 !important;
}

.navbar-nav .nav-link::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	height: 3px;
	background: var(--red);
	transform: translateX(-50%);
	transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover, .navbar-nav .current-menu-item .nav-link, .navbar-nav .current_page_item .nav-link {
	color: var(--red);
}

.navbar-nav .nav-link:hover::after, .navbar-nav .current-menu-item .nav-link::after, .navbar-nav .current_page_item .nav-link::after {
	width: 100%;
}

.hero-section {
	/*color: var(--white);*/
	background: linear-gradient(to bottom, var(--black) 0%, rgba(0, 0, 0, 0) 10%), url('assets/images/hero_photo_background.jpg') no-repeat right center;
	background-size: auto 100%;
	/*min-height: 760px;
	padding: 9rem 0 5rem;*/
	overflow: hidden;
}

/*.min-vh-75 {
	min-height: 75vh;
}*/

.hero-card {
	background: url(assets/images/hero_red_background.jpg) no-repeat left center;
	background-size: cover;
	/*box-shadow: -18px 18px 0 rgba(179, 32, 37, 0.5);*/
	padding: clamp(2rem, 4vw, 4rem);
	transform: skew(4deg);
	position: relative;
	transform-style: preserve-3d;
}

.hero-card::before {
	background-color: rgba(179, 32, 37, 0.5);
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*z-index: -1;*/
	transform: rotate(-3deg) translateZ(-1px);
}

.hero-card > * {
	transform: skew(-4deg);
}

.hero-card h1 {
	font-size: 4.75rem;
}

/*.hero-card p {
	max-width: 420px;
}*/

.hero-card .btn i {
	color: var(--red);
}

.about-section {
	background: url(/wp-content/themes/rachelfuhrermusic/assets/images/home_about_photo.jpg) no-repeat left center;
	background-size: auto 100%;
}

/*.section-dark {
	background-color: var(--charcoal);
	color: var(--white);
}*/

/*.section-image {
	min-height: 560px;
	object-fit: cover;
}*/

.content-panel {
	background: var(--charcoal);
	position: relative;
	padding: 5rem;
}

.content-panel::before {
	background: var(--charcoal);
	content: "";
	position: absolute;
	top: 0;
	left: -30px;
	width: 60px;
	height: 100%;
	transform: skewX(4deg);
}

.content-panel > * {
	position: relative;
}

.content-panel h2 {
	font-size: 4rem;
}

.content-panel .check-list {
	list-style: none;
	padding: 0;
	margin: 20px 0 30px;
}

.content-panel .check-list li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 10px;
}

.content-panel .check-list li::before {
	color: var(--red);
	font-weight: 900;
	content: "✓";
	position: absolute;
	top: 0;
	left: 0;
}

.content-panel .btn i {
	color: var(--black);
}

.lessons-section {
	color: var(--black);
	background: url(assets/images/about_background.jpg) no-repeat center center;
	background-size: cover;
	/*background-color: var(--gray);*/
	padding: 80px 0;
}

.lessons-section h2 {
	font-size: 4rem;
}

.lesson-card {
	color: var(--white);
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: flex-end;
	min-height: 360px;
	padding: 2rem;
	position: relative;
	overflow: hidden;
	clip-path: polygon(
		30px 0,
		100% 0,
		100% calc(100% - 30px),
		calc(100% - 30px) 100%,
		0 100%,
		0 30px
	);
}

.lesson-card::before {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.85));
	content: "";
	inset: 0;
	position: absolute;
}

.lesson-card::after {
	background-color: var(--red);
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 5px;
}

.lesson-card > div {
	position: relative;
	z-index: 2;
}

.lesson-card h3 {
	/*color: var(--white);*/
	margin-bottom: 10px;
}

.lesson-card p {
	margin-bottom: 0;
}

/*.experience-section {
	padding: 5rem 0;
}

.experience-section img {
	min-height: 420px;
	object-fit: cover;
	width: 100%;
}

.experience-section h2 {
	font-size: 4rem;
}*/

.testimonial-section {
	color: var(--white);
	background-color: var(--black);
	padding: 60px 0;
}

.testimonial-section blockquote {
	font-size: 2rem;
	line-height: 1.4;
	font-style: italic;
	margin-bottom: 20px;
}

.testimonial-name {
	color: var(--red);
	font-weight: 900;
	text-transform: uppercase;
	margin-bottom: 0;
}

.features-section {
	color: var(--black);
	background: url(assets/images/about_background.jpg) no-repeat center center;
	background-size: cover;
	/*background-color: var(--white);*/
	padding: 60px 0;
}

.feature-item {
	border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.feature-item:last-child {
	border-right: 0;
}

.features-section h3 {
	line-height: 1.2;
	position: relative;
	margin-bottom: 20px;
}

.features-section h3::after {
	content: "";
	display: block;
	width: 50px;
	height: 3px;
	background: var(--red);
	margin: 20px auto 0;
}

.features-section p {
	/*font-size: 0.95rem;*/
	margin-bottom: 0;
	/*max-width: 230px;*/
}

.cta-section {
	background: url(assets/images/cta_background.jpg) no-repeat center center;
	background-size: cover;
	/*color: var(--white);
	background-color: var(--red);*/
	overflow: hidden;
	/*padding: 3rem 0;*/
}

.cta-image {
	max-height: 300px;
	/*object-fit: contain;*/
}

/*.cta-content {
	max-width: 620px;
}*/

.cta-content h2 {
	font-size: 4rem;
	margin-bottom: 20px;
}

.cta-content p {
	margin-bottom: 20px;
}

.cta-content .btn i {
	color: var(--red);
}

.site-footer {
	/*color: var(--white);
	background-color: var(--black);*/
	padding: 60px 0;
}

.site-footer h3 {
	color: var(--red);
	margin-bottom: 20px;
}

.site-footer p {
	/*font-size: 0.9rem;*/
	margin-bottom: 0;
}

.site-footer a {
	color: var(--white);
}

.site-footer a:hover {
	color: var(--red);
}

.footer-brand {
	color: var(--white);
	font-size: 3.5rem;
}

// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) {
}

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) {
}

// Large devices (desktops, 992px and up)
@media (min-width: 992px) {
}

// X-Large devices (large desktops, 1200px and up)
@media (min-width: 1200px) {
}

// XX-Large devices (larger desktops, 1400px and up)
@media (min-width: 1400px) {
}