/* ===================================
   STYLES8.CSS - Gallery Page Styles
   Extends styles4.css
   =================================== */

/* Force all sections to use border-box sizing */
* {
	box-sizing: border-box;
}

#site_wrap {
	background-image: none !important;
	width: 100vw !important;
	max-width: 100vw !important;
	grid-template-columns: repeat(8, 1fr) !important;
	column-gap: 0 !important;
	grid-template-rows:
		120px  /*header*/
		550px /*hero*/
		min-content /*featured_showcase*/
		min-content /*bottom_contact*/
		min-content /*footer*/;
}

.featured_showcase,
.bottom_contact {
	grid-column: 1 / -1 !important;
	width: 100% !important;
	max-width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

/* Hero background for gallery page */
.hero {
	background-image: url("images/gallery/gallery-hero.webp") !important;
	background-position: center;
}

/* Showcase section styling */
.featured_showcase {
	background-color: #000;
	padding: 80px 40px;
}

.showcase_desc {
	text-align: center;
	max-width: 1400px;
	margin: 0 auto 60px auto;
}

.showcase_desc h1 {
	font-family: MyCustomFont, sans-serif;
	font-size: 72px;
	line-height: 80px;
	color: #FFF;
	text-transform: uppercase;
	margin: 0 0 10px 0;
}

.showcase_desc h2 {
	font-family: MyCustomFont, sans-serif;
	font-size: 22px;
	line-height: 0px;
	color: #9F9F9F;
	text-transform: uppercase;
	margin: 0 0 60px 0;
	font-weight: normal;
}

.showcase_desc p {
	font-family: MyCustomFont, sans-serif;
	font-size: 40px;
	line-height: 46px;
	color: #9F9F9F;
	text-transform: uppercase;
	max-width: 1160px;
	margin: 0 auto;
}

/* Video Frame Container with Red Wallpaper Background */
.video-frame-container {
	position: relative;
	max-width: 1000px;
	margin: 0 auto 100px auto;
	padding: 60px 20px;
	background-image: url("images/gallery/Red Wallpaper.webp");
	background-size: cover;
	background-position: center;
}

.video-frame-container video {
	width: 100%;
	height: auto;
	display: block;
}

.frame-overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: calc(100% - 40px);
	height: auto;
	pointer-events: none;
	z-index: 10;
}

/* Video play overlay for mobile */
.video-play-overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	display: none;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.3);
	cursor: pointer;
	z-index: 5;
}

.video-play-overlay.show {
	display: flex;
}

.play-button {
	width: 80px;
	height: 80px;
	background-color: rgba(140, 14, 29, 0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
	color: white;
	padding-left: 8px;
}
/* Gallery Sections with Red Wallpaper Background */
.gallery-section {
	max-width: 1200px;
	margin: 0 auto 80px auto;
	padding: 60px 40px;
	text-align: center;
	background-image: url("images/gallery/Red Wallpaper.webp");
	background-size: cover;
	background-position: center;
}

.gallery-section h2 {
	font-family: MyCustomFont, sans-serif;
	font-size: 48px;
	line-height: 56px;
	color: #FFF;
	text-transform: uppercase;
	margin: 0 0 30px 0;
}

.gallery-section p {
	font-family: MyCustomFont, sans-serif;
	font-size: 31px;
	line-height: 40px;
	color: #FFF;
	text-transform: uppercase;
	max-width: 880px;
	margin: 0 auto 40px auto;
}

/* Gallery Preview with Hover Zoom Effect */
.gallery-preview {
	max-width: 800px;
	margin: 0 auto;
	border: 4px solid #707070;
	overflow: hidden;
	position: relative;
}

.gallery-preview img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s ease;
	transform-origin: center center;
}

.gallery-preview:hover img {
	transform: scale(1.05);
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */

@media screen and (max-width: 1258px) {
	.showcase_desc h1 {
		font-size: 64px;
		line-height: 72px;
	}
	
	.showcase_desc h2 {
		font-size: 32px;
		line-height: 38px;
	}
	
	.gallery-section h2 {
		font-size: 42px;
		line-height: 50px;
	}
}

@media screen and (max-width: 1024px) {
	#site_wrap {
		grid-template-rows:
			120px
			558px
			min-content
			min-content
			min-content !important;
	}
	
	.featured_showcase {
		padding: 60px 30px;
	}
	
	.showcase_desc h1 {
		font-size: 56px;
		line-height: 64px;
	}
	
	.showcase_desc h2 {
    font-size: 20px;
    line-height: 5px;
  	}
	
	.showcase_desc p {
		font-size: 24px;
		line-height: 28px;
		max-width: 680px;
	}
	
	.video-frame-container {
		padding: 50px 20px;
	}
	
	.gallery-section {
		padding: 50px 30px;
	}
	
	.gallery-section h2 {
		font-size: 38px;
		line-height: 46px;
	}
	
	.gallery-section p {
		font-size: 24px;
		line-height: 28px;
		max-width: 680px;
	}
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
	.hero_desc {
		padding-left: 5%;
		margin-top: 0;
		width: 80%;
	}
}

@media screen and (max-width: 768px) {
	#site_wrap {
		grid-template-rows:
			100px
			600px
			min-content
			min-content
			min-content !important;
	}
	
	
	
	.hero_desc {
		width: 80%;
	}
	
	.featured_showcase {
		padding: 40px 20px;
	}
	
	.showcase_desc {
		margin-bottom: 40px;
		padding: 60px 60px 40px 60px;
	}
	
	.showcase_desc h1 {
		font-size: 42px;
		line-height: 50px;
	}
	
	.showcase_desc h2 {
		font-size: 24px;
		line-height: 30px;
		margin-bottom: 30px;
	}
	
	.showcase_desc p {
		font-size: 20px;
		line-height: 26px;
	}
	
	.video-frame-container {
		margin-bottom: 60px;
		padding: 40px 10px;
	}
	
	.play-button {
		width: 60px;
		height: 60px;
		font-size: 30px;
		padding-left: 6px;
	}
	
	.frame-overlay {
		width: calc(100% - 20px);
	}
	
	.gallery-section {
		margin-bottom: 60px;
		padding: 40px 20px;
	}
	
	.gallery-section h2 {
		font-size: 32px;
		line-height: 38px;
	}
	
	.gallery-section p {
		font-size: 18px;
		line-height: 24px;
	}
	
	.gallery-preview {
		border: 2px solid #707070;
	}
	
	.gallery-preview:hover img {
		transform: scale(1.03);
	}
	.bottom_contact {
		padding-left: 2em !important;
		padding-top: 5em;
	}
}

@media screen and (max-width: 480px) {
	#site_wrap {
		grid-template-rows:
			100px
			600px
			min-content
			min-content
			min-content !important;
		min-height: 100vh !important;
	}
	
	body {
		min-height: 100vh;
	}
	
	.hero {
		background-image: url("images/gallery/gallery-hero_m2.webp") !important;
	}
	
	.hero_desc {
		margin-top: 75px;
	}
	
	.hero_desc h1 {
		width:80%;
	}
	
	/*.showcase_desc h1 {
		font-size: 36px;
		line-height: 42px;
	}*/
	
	.showcase_desc h2 {
		font-size: 14px;
		line-height: 0px;
	}
	
	/*.showcase_desc p {
		font-size: 18px;
		line-height: 24px;
	}*/
	
	.video-frame-container {
		padding: 30px 10px;
	}
	
	.gallery-section {
		padding: 30px 15px;
	}
	
	.gallery-section h2 {
		font-size: 28px;
		line-height: 34px;
	}
	
	/*.gallery-section p {
		font-size: 16px;
		line-height: 22px;
	}*/
	
	.contact_social {
		width: 80%;
	}
	
	.address_quote {
		width: 80%;
	}
}


@media screen and (max-width: 390px) {
	.showcase_desc h1 {
		font-size: 32px;
		line-height: 38px;
	}
	
	.showcase_desc h2 {
		font-size: 18px;
		line-height: 24px;
	}
	
	.video-frame-container {
		padding: 20px 5px;
	}
}

@media screen and (max-width: 360px) {
	.hero_desc h1 {
    width: 100%;
  	}
	.contact_social {
	width:100%	
	}
	.address_quote {
	width:100%	
	}
	
}