/*
Theme Name: Gabriel Douglas EPK / Lunar Shift
Author: Lunar Shift
Author URI: https://www.lunarshift.com/
Version: 99.99.99
*/

/* CSS Reset */
*,
*::before,
*::after {box-sizing:border-box;margin:0;padding:0;}
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;}
html {font-size:100%;line-height:1.6;}
html {scroll-behavior:smooth; scroll-padding-top: 142px; }

/* Body and Background */
body {
    font-family: 'Roboto', sans-serif;
    /* color: #ecf0f1; */
	color: #3f3f3f;
    line-height: 1.6;
    margin: 0;
    padding: 0;
	letter-spacing: 0.03em;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Rock Salt', cursive;
    color: #34495e;
    margin-bottom: 20px;
}

/* Heading Styles */
h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.75em;
}

h4 {
    font-size: 1.5em;
}

h5 {
    font-size: 1.25em;
}

h6 {
    font-size: 1em;
}

/* Paragraphs */
p {
    font-size: 1em;
    margin-bottom: 15px;
}

/* List Items */
li {
    margin-bottom: 10px;
}

/* Links */
a {
    color: #3498db; /* Electric Blue */
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #693f04; /* Firebrick Red */
}

/* Blockquote */
blockquote {
    background-color: #2c3e50; /* Midnight Blue */
    border-left: 5px solid #3498db; /* Electric Blue */
    padding: 15px;
    margin: 20px 0;
}

/* Header */
header {
    /* background-color: #693f04; */
    background-color: #34495e;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    position: relative;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 3;
    border-bottom: 3px solid #333;

	/*background-image: url('images/header_bg.jpg');
	background-blend-mode: multiply;
	background-size: cover;
	background-position: center;*/
}
body {
	background-color: #693f04;
	background-image: url('images/paper_bg.jpg');
	background-blend-mode: multiply;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

.logo {
    width: 250px;
    width: auto;
    margin-right: 20px;
	color: white;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1300px;
	max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
}

nav ul li {
	margin-bottom: 0;
	letter-spacing: 0.05em;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.15s ease;
	text-transform: uppercase;
	font-size: 15px;
}

nav ul li a:hover {
    color: #bdc3c7;
}

.social-links {
    display: flex;
}

.social-links a {
    color: #fff;
    font-size: 1.5em;
    margin-left: 16px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #ddd;
}

.wrap > section:first-child {
	margin-top: 40px;
}
@media (min-width: 1301px) {
	.wrap > section:first-child {
		margin-top: 150px;
	}
}
section {
    padding: 20px;
    max-width: 1000px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 0 auto 40px;
}
.wrap {
	margin: 0 20px;
}

h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
}

blockquote {
    background-color: #eee;
    border-left: 5px solid #444;
    margin: 20px 0;
    padding: 15px;
}

blockquote p {
    margin: 0;
}

@media (max-width: 1300px) {
	header {
		position: relative;
	}
	.nav-container {
        flex-direction: column;
	}
    nav ul {
        flex-direction: column;
        align-items: center;
		margin: 10px 0;
    }
    nav ul li {
        margin: 2px 0;
    }
    nav ul li a {
        font-size: 18px;
    }
}

#logos .photo-gallery {
		grid-template-columns: repeat(3, 1fr);
		align-items: center;
}
#photos .photo-gallery + .photo-gallery {
		grid-template-columns: repeat(2, 1fr);
}
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}
@media (max-width: 600px) {
	.photo-gallery {
		grid-template-columns: repeat(2, 1fr);
	}
}
.photo-gallery a {
    display: block;
    overflow: hidden;
}
#posters .photo-gallery {
	display: flex;
    /* grid-template-columns: repeat(auto-fill, minmax(225px, 1fr)); */
}
#posters .photo-gallery img {
	object-fit: contain;
}
@media (min-width: 1051px) {
	#posters .photo-gallery img {
		height: 420px;
		object-fit: cover;
	}
}
@media (max-width: 600px) {
	#posters .photo-gallery {
		flex-direction: column;
	}
	#posters .photo-gallery * > * {
		flex: 1 1 auto;
	}
}
#posters .photo-gallery > *:nth-child(1) {
	flex: 1 1 71%;
    /* grid-template-columns: repeat(auto-fill, minmax(225px, 1fr)); */
}
#posters .photo-gallery > *:nth-child(2) {
	flex: 1 1 29%;
    /* grid-template-columns: repeat(auto-fill, minmax(225px, 1fr)); */
}
/*#posters .photo-gallery + .photo-gallery {
    grid-template-columns: repeat(auto-fill, minmax(315px, 1fr));
}*/
#logos .photo-gallery img:hover,
#posters .photo-gallery img:hover {
    transform: scale(0.92);
}
.photo-gallery img {
    width: 100%;
    height: auto;
    transition: transform 0.15s ease;
}
.photo-gallery img:hover {
    transform: scale(1.06);
}
#one-sheet img {
    transition: transform 0.15s ease;
}
#one-sheet img:hover {
    transform: scale(1.06);
}


.fancybox-caption__body a {
    font-size: 17px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 2px solid black;
    display: inline-block;
    background: white;
    color: #2f2f2f !important;
    padding: 6px 20px;
	text-decoration: none !important;
}

.fancybox-slide--image .fancybox-content {
	background: white !important;
}

a.cta:hover {
	opacity: 0.8;
}
a.cta {
    text-decoration: none;
    display: inline-block;
    padding: 12px 30px;
    background: black;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
	transition: opacity 0.15s ease;
}
#logos .photo-gallery img {
	object-fit: contain;
	max-width: 100%;
}
@media (max-width: 600px) {
	.photo-gallery img {
		height: 200px;
        width: auto;
        margin: auto;
        display: block;
	}
}

#one-sheet {
	text-align: center;
}
#one-sheet h2 {
	text-align: left;
}
#one-sheet img {
	width: 300px;
	margin: 0 auto 20px;
}