/*!
Theme Name: Leah Pomeroy
Theme URI: http://leahpomeroy.com/
Author: KJ Sampat
Author URI: http://oaklandinteractive.com/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: leah-pomeroy
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Leah Pomeroy is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

*/

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	display: flex;
	flex-direction: column;
	font-family: "Roboto", serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
	line-height: 1.4;
}

h1, h2, h3{
	font-weight: 400;
}

h1{
	font-size: 40px;
	margin-bottom: 0;
}

h2{
	font-size: 30px;
	margin-top: 50px;
	text-transform: uppercase;
}

p{
	font-size: 18px;
}

hr{
	margin-top: 40px;
}

img{
	max-width: 100%;
}

iframe {
	aspect-ratio: 16 / 9;
	height: 100%;
	width: 100%;
	border-radius: 10px;
}

.fa-solid.fa-heart{
	color: #E33268;
}

a.btn{
	display: inline-block;
	padding: 10px 20px;
	background: linear-gradient(to bottom, rgba(227, 50, 104, 0.6), rgba(131, 50, 153, 0.8), rgba(33, 49, 206, 0.6));
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	transition: all 0.3s;
	margin-right: 10px;
}

a.btn:hover{
	background: linear-gradient(to top, rgba(227, 50, 104, 0.8), rgba(131, 50, 153, 1), rgba(33, 49, 206, 0.8));
	transform: scale(1.05);
	transition: all 0.3s;
}

a.btn-outline{
	display: inline-block;
	padding: 10px 20px;
	background: transparent;
	color: #000;
	text-decoration: none;
	border-radius: 5px;
	transition: all 0.3s;
	box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.8);
}

a.btn-outline:hover{
	background: linear-gradient(to top, rgba(227, 50, 104, 0.8), rgba(131, 50, 153, 1), rgba(33, 49, 206, 0.8));
	transform: scale(1.05);
	transition: all 0.3s;
	color: #fff;
}

/* column layout */ 

.container {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.left-column {
	background: linear-gradient(to right, #E33268, #833299, #2131CE);
	padding: 50px;
	width: 100%;
	position: relative;
	height: auto;
	overflow-y: auto;
	color: #fff;
	text-align: center;
	box-sizing: border-box;
	padding-bottom: 200px;
}

.right-column {
	padding: 50px;
	width: 100%;
	/* width: calc(100% - 40px); Adjust width to account for padding */
	margin-left: 0;
	box-sizing: border-box;
}

@media (min-width: 1200px) {

	.container {
		flex-direction: row;
	}

	.left-column {
		background: linear-gradient(to bottom, #E33268, #833299, #2131CE);
		width: 600px; 
		position: fixed;
		height: 100vh;
		overflow-y: auto;
		padding-bottom: 50px;
		padding-right: 200px;
		overflow: hidden;
	}

	.right-column {
		flex-grow: 1; 
		margin-left: calc( 600px + 20px); 
		width: calc(100% - 600px);
	}
}

@media (min-width: 1600px) {

	.left-column {
		width: 800px;
	}
	.right-column {
		margin-left: calc( 800px + 20px); 
		width: calc(100% - 800px);
	}

}

/* left column and hero section */

.logo-image{
	object-fit: cover;
	height: 20vh;
	width: 20vh;
	max-width: 300px;
	max-height: 300px;
	border-radius: 100%;
}

.bio{
	max-width: 500px;
	margin: 0 auto;
}

.social-list {
	list-style-type: none;
	padding: 0;
}

.social-list li{
	margin-bottom: 15px;
}

.social-list li a{
	margin-left: auto;
	margin-right: auto;
	color: #fff;
	font-size: 18px;
	text-decoration: none;
	margin-bottom: 10px;
	height: 30px;
	width: 200px;
	background-color: rgba(255, 255, 255, .1);
	border-radius: 5px;
	border: 1px solid rgba(255, 255, 255, .3);
	display: flex;
	justify-content: center;
	align-items: center;
}

.social-list li a:hover{
	background-color: rgba(255, 255, 255, .3);
	transform: scale(1.05);
}

.social-list li a i{
	margin-right: 10px;
}

/* wave patterns */

svg.h-wave {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100px;
	fill: #fff;
}

svg.v-wave {
	display: none;
}

@media (min-width: 1200px) {

	svg.h-wave {
		display: none;
	}

	svg.v-wave {
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		width: 350px; /* Adjust width as needed */
		height: 100%; /* Fill the height of the left column */
		
	}
}

/* right column and content body */

.media-flex {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.media-item{
	padding: 20px;
	border: 1px solid #ccc;
	width: 100%;
	background: linear-gradient(to bottom, rgba(227, 50, 104, 0.6), rgba(131, 50, 153, 0.8), rgba(33, 49, 206, 0.6));
	position: relative;
}

.media-item img {
	aspect-ratio: 16 / 9;
	object-fit: cover;
	width: 100%;
	border-radius: 10px;
}

.media-item img.contain {
	object-fit: contain;
}

.media-item a i{
	position: absolute;
	bottom: 35px;
	right: 30px;
	height: 30px;
	line-height: 30px;
	width: 30px;
	border-radius: 30px;
	text-align: center;
	background-color: rgba(255, 255, 255, .5);
	color: #000;
}

.media-item a:hover i{
	background-color: rgba(0, 0, 0, .5);
	color: #fff;
	transition: .3s;
	transform: scale(1.2);
}

.footer {
	text-align: center;
	margin-top: 50px;
	border-top: 1px solid #ccc;
}

@media (min-width: 768px) {
   
	.media-item {
		width: calc( 50% - 60px );
	
	}
}
	
@media (min-width: 1200px) {

	.media-item{
		width: 100%
	}
}

@media (min-width: 2000px) {

	.media-item{
		width: calc( 50% - 60px );
	}
}