/* ===================================
   STYLES13.CSS - Backdrops Page Styles
   Extends styles4.css
   =================================== */

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

.featured_showcase,
.featured_main,
.featured_middle,
.featured_bottom,
.booth-section,
.white-bg,
.black-bg {
	box-sizing: border-box !important;
	width: 100% !important;
	max-width: 100% !important;
}

.booth-item,
.booth-text,
.booth-image {
	box-sizing: border-box !important;
}

#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 /*featured_clear*/
		min-content /*featured_main*/
		min-content /*video*/
		min-content /*photo*/
		min-content /*featured_middle*/
		min-content /*middle_clear*/
		min-content /*featured_bottom*/
		min-content /*bottom_photo*/
		min-content /*bottom_contact*/
		min-content /*footer*/;
}

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

/* Hide unused sections */
.featured_clear,
.video,
.photo,
.middle_clear,
.featured_bottom,
.bottom_photo {
	display: none !important;
	height: 0 !important;
	min-height: 0 !important;
}

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

/* Showcase section styling - White background for intro */
.featured_showcase {
	background-color: #000;
	padding: 80px 40px 0 40px;
}
.featured_showcase p {
  padding-bottom: 20px;
}

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

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

/* Benefits Section - Centered text only */
.benefits-section {
	max-width: 1000px;
	margin: 0 auto;
	padding: 60px 40px 80px 40px;
	text-align: center;
}

.benefit-item {
	margin-bottom: 50px;
}

.benefit-item:last-child {
	margin-bottom: 0;
}

.benefit-item h3 {
	font-family: MyCustomFont, sans-serif;
	font-size: 42px;
	line-height: 50px;
	color: #fff;
	text-transform: uppercase;
	margin: 0 0 15px 0;
}

.benefit-item p {
	font-family: MyCustomFont, sans-serif;
	font-size: 24px;
	line-height: 32px;
	color: #9F9F9F;
	text-transform: uppercase;
	margin: 0;
}

/* Showcase Intro - Centered text below main heading */
.showcase-intro {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0px 40px 100px 40px;
	text-align: center;
}

.showcase-intro p {
	font-family: MyCustomFont, sans-serif;
	font-size: 24px;
	line-height: 32px;
	color: #9F9F9F;
	text-transform: uppercase;
	margin: 0;
}

/* Backdrop Grid */
.featured_main {
	padding: 0 40px 60px 40px;
}

.backdrop-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px;
}

.backdrop-item {
	text-align: center;
}

.backdrop-item img {
	width: 100%;
	height: auto;
	display: block;
	border: 3px solid #707070;
	transition: border-color 0.3s ease, transform 0.3s ease;
}

.backdrop-item img:hover {
	border-color: #fff;
	transform: scale(1.02);
}

.backdrop-item p {
	font-family: MyCustomFont, sans-serif;
	font-size: 18px;
	line-height: 24px;
	color: #9F9F9F;
	text-transform: uppercase;
	margin: 15px 0 0 0;
	padding: 0;
}

/* Custom Backdrops Section */
.featured_middle {
	background-color: #000;
	padding: 60px 40px;
}

.custom-backdrops {
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}

.custom-backdrops h2 {
	font-family: MyCustomFont, sans-serif;
	font-size: 56px;
	line-height: 64px;
	color: #fff;
	text-transform: uppercase;
	margin: 0 0 30px 0;
}

.custom-backdrops p {
	font-family: MyCustomFont, sans-serif;
	font-size: 24px;
	line-height: 32px;
	color: #9F9F9F;
	text-transform: uppercase;
	margin: 0;
}

/* Intro section with image and text */
.intro-section {
	padding: 60px 0 !important;
}

.intro-section .booth-text {
	text-align: left;
}

.intro-section .booth-text .booth-description {
	font-family: MyCustomFont, sans-serif;
	font-size: 32px;
	line-height: 36px;
	color: #707070;
	text-transform: uppercase;
	margin-bottom: 20px;
}

/* Packages Header */
.packages-header {
	text-align: center;
	max-width: 1000px;
	margin: 0 auto;
	padding: 100px 40px;
	background-color: #000;
}

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

.packages-header p {
	font-family: MyCustomFont, sans-serif;
	font-size: 32px;
	line-height: 36px;
	color: #9F9F9F;
	text-transform: uppercase;
	margin: 0;
}

/* Featured Main - Black background */
.featured_main {
	background-color: #fff;
	grid-row: auto !important;
	min-height: 0 !important;
	height: auto !important;
}

/* Booth section must be full width */
.booth-section {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	grid-column: 1 / -1;
	border: none !important;
	box-shadow: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.white-bg {
	background-color: white;
	padding: 100px 0 !important;
	width: 100% !important;
}

.black-bg {
	background-color: black;
	padding: 100px 0 !important;
	width: 100% !important;
}

.booth-item {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 80px;
	gap: 80px;
}

.booth-item.reverse {
	flex-direction: row-reverse;
}

/* Booth image hover effects with frame border */
.booth-image {
	position: relative;
	overflow: hidden;
	flex: 0 0 45%;
	border: 4px solid #707070;
	box-sizing: border-box;
	transition: border-color 0.3s ease;
}

.booth-image img {
	width: calc(100% + 8px);
	height: auto;
	display: block;
	margin: -4px;
	transition: transform 0.3s ease;
	transform-origin: center center;
}

.booth-image:hover img {
	transform: scale(1.03);
}

/* Border turns white on hover ONLY in black background sections */
.black-bg .booth-image:hover {
	border-color: #FFF;
}

.booth-text {
	flex: 0 0 50%;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-self: center;
}

.booth-text h2,
.booth-text h3 {
	font-family: MyCustomFont, sans-serif;
	font-size: 42px;
	line-height: 50px;
	margin-top: 0 !important;
	margin-bottom: 30px;
	text-transform: uppercase;
	text-align: left;
}

.booth-text ul {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: left;
}

.booth-text li {
	font-family: MyCustomFont, sans-serif;
	font-size: 26px;
	line-height: 32px;
	text-transform: uppercase;
	color: #9F9F9F;
	padding-left: 30px;
	position: relative;
	margin-bottom: 0px;
}

.booth-text li::before {
	content: '▪';
	position: absolute;
	left: 0;
	color: #9F9F9F;
	font-size: 26px;
}

.booth-text .included-text {
	font-family: MyCustomFont, sans-serif;
	font-size: 18px;
	line-height: 24px;
	color: #9F9F9F;
	text-transform: uppercase;
	margin-bottom: 15px;
	text-align: left;
}

.booth-text .booth-description {
	font-family: MyCustomFont, sans-serif;
	font-size: 24px;
	line-height: 32px;
	text-transform: uppercase;
	color: #9F9F9F;
	text-align: left;
	margin-bottom: 20px;
	margin-top: 0px;
}

/* H2/H3 color based on background */
.white-bg .booth-text h2,
.white-bg .booth-text h3 {
	color: #707070;
}

.black-bg .booth-text h2,
.black-bg .booth-text h3 {
	color: #FFF;
}

/* Photo Section - Full width image */
.photo {
	grid-column: 1 / -1 !important;
	width: 100% !important;
	max-width: 100% !important;
	height: auto;
	display: block !important;
}

.photo img {
	width: 100%;
	height: auto;
	display: block;
}

/* Featured Middle - Background */
.featured_middle {
	background-color: #000;
}

/* Bottom Photo Section - Not used on this page */
.bottom_photo {
	display: none !important;
	height: 0 !important;
}

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

@media screen and (max-width: 1258px) {
	.showcase_desc h1 {
		font-size: 64px;
		line-height: 72px;
	}
	
	.showcase-intro p {
		font-size: 20px;
		line-height: 28px;
	}
	
	.backdrop-item p {
		font-size: 16px;
		line-height: 22px;
	}
	
	.custom-backdrops h2 {
		font-size: 48px;
		line-height: 56px;
	}
	
	.custom-backdrops p {
		font-size: 20px;
		line-height: 28px;
	}
	
	.benefit-item h3 {
		font-size: 36px;
		line-height: 44px;
	}
	
	.benefit-item p {
		font-size: 20px;
		line-height: 28px;
	}
	
	.packages-header h2 {
		font-size: 48px;
		line-height: 56px;
	}
	
	.booth-text h2,
	.booth-text h3 {
		font-size: 36px;
		line-height: 44px;
	}
	
	.booth-text li {
		font-size: 22px;
		line-height: 28px;
	}
	
	.booth-text .booth-description,
	.intro-section .booth-text .booth-description {
		font-size: 20px;
		line-height: 28px;
	}
}

@media screen and (max-width: 1024px) {
	#site_wrap {
		grid-template-rows:
			120px
			558px
			min-content
			min-content
			min-content
			min-content
			min-content
			min-content
			min-content
			min-content
			min-content
			min-content
			min-content !important;
	}
	
	.featured_showcase {
		padding: 60px 30px 0 30px;
	}
	
	.showcase_desc h1 {
		font-size: 56px;
		line-height: 64px;
	}
	
	.showcase-intro {
		padding: 0px 30px 70px 30px;
		max-width: 800px;
	}
	
	.showcase-intro p {
		font-size: 18px;
		line-height: 26px;
	}
	
	.featured_main {
		padding: 0 30px 50px 30px;
	}
	
	.backdrop-grid {
		gap: 20px;
		padding: 20px;
	}
	
	.backdrop-item p {
		font-size: 14px;
		line-height: 20px;
		margin-top: 10px;
	}
	
	.featured_middle {
		padding: 50px 30px;
	}
	
	.custom-backdrops h2 {
		font-size: 42px;
		line-height: 50px;
	}
	
	.custom-backdrops p {
		font-size: 18px;
		line-height: 26px;
	}
	
	.benefits-section {
		padding: 40px 30px 60px 30px;
	}
	
	.benefit-item h3 {
		font-size: 32px;
		line-height: 40px;
	}
	
	.benefit-item p {
		font-size: 20px;
		line-height: 26px;
		padding-bottom: 40px;
	}
	
	.packages-header {
		padding: 60px 30px 40px 30px;
	}
	
	.packages-header h2 {
		font-size: 42px;
		line-height: 50px;
	}
	
	.packages-header p {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 20px;
  }
	
	.booth-item {
		gap: 40px;
		padding: 0 40px;
	}
	
	.booth-text h2,
	.booth-text h3 {
		font-size: 32px;
		line-height: 40px;
	}
	
	.booth-text li {
		font-size: 20px;
		line-height: 26px;
	}
	
	.booth-text .booth-description,
	.intro-section .booth-text .booth-description {
		font-size: 22px;
		line-height: 28px;
		margin-top: 0px;
    	margin-bottom: 0px;
	}
	
}

@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: 945px) {
	.booth-item,
	.booth-item.reverse {
		flex-direction: column;
		gap: 40px;
		padding: 0 40px;
	}
	
	.booth-image,
	.booth-text {
		flex: 1 1 100%;
		max-width: 600px;
	}
	
	.white-bg,
	.black-bg {
		padding: 60px 0 !important;
	}
	
	.intro-section {
		padding: 40px 0 !important;
	}
	
	.booth-text h2,
	.booth-text h3 {
		font-size: 38px;
		line-height: 44px;
		text-align: center;
	}
	
	.booth-text li {
		font-size: 22px;
		line-height: 28px;
	}
	
	.booth-text .included-text {
		text-align: center;
	}
	
	.booth-text .booth-description,
	.intro-section .booth-text .booth-description {
		text-align: center;
	}
	
	.booth-text ul {
		text-align: left;
		display: inline-block;
	}
	 .featured_main h3 {
    	padding: 0;
  	}
	 .featured_showcase h3 {
    	padding: 20px 16px 5px 16px;
  	}
	.benefit-item {
   		margin-bottom: 0px;
	}
}

@media screen and (max-width: 768px) {
	#site_wrap {
		grid-template-rows:
			100px
			600px
			min-content
			min-content
			min-content
			min-content
			min-content
			min-content
			min-content
			min-content
			min-content
			min-content
			min-content !important;
	}
	
	.hero {
		background-image: url("images/backdrops/backdrops-hero_m.webp") !important;
	}
	
	.hero_desc {
		width: 80%;
	}
	
	.featured_showcase {
		padding: 40px 20px 0 20px;
	}
	
	.showcase_desc {
		/*margin-bottom: 30px;*/
	}
	
	.showcase-intro {
		padding: 0px 20px 80px 20px;
		max-width: 600px;
	}
	
	.showcase-intro p {
		font-size: 16px;
		line-height: 24px;
	}
	
	.featured_main {
		padding: 0 20px 40px 20px;
	}
	
	.backdrop-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}
	
	.backdrop-item p {
		font-size: 14px;
		line-height: 18px;
		margin-top: 8px;
	}
	
	.featured_middle {
		padding: 40px 20px;
	}
	
	.custom-backdrops h2 {
		font-size: 36px;
		line-height: 44px;
	}
	
	.custom-backdrops p {
		font-size: 16px;
		line-height: 24px;
	}
	
	.benefits-section {
		max-width: 500px;
		padding: 30px 20px 50px 20px;
	}
	
	.benefit-item {
		margin-bottom: 10px;
	}
	
	.benefit-item h3 {
		line-height: 36px;
	}
	
	.benefit-item p {
		line-height: 24px;
		padding-bottom: 20px;
	}
	
	/*.showcase_desc h1 {
		font-size: 42px;
		line-height: 50px;
	}*/
	
	.packages-header {
		padding: 40px 20px 30px 20px;
	}
	
	.packages-header h2 {
		font-size: 36px;
		line-height: 44px;
	}
	
	.packages-header p {
		font-size: 20px;
		line-height: 26px;
	}
	
	.booth-item,
	.booth-item.reverse {
		flex-direction: column !important;
		padding: 0 20px;
		gap: 30px;
	}
	
	.booth-image {
		border: 2px solid #707070;
		flex: 1 1 100% !important;
		max-width: 100%;
	}
	
	.black-bg .booth-image:hover {
		border-color: #FFF;
	}
	
	.booth-image img {
		width: calc(100% + 4px);
		margin: -2px;
	}
	
	.booth-text {
		max-width: 100%;
		flex: 1 1 100% !important;
		margin-left: 10px;
		margin-right: 10px;
	}
	
	.booth-text h2,
	.booth-text h3 {
		font-size: 36px;
		line-height: 42px;
	}
	
	.booth-text li {
		font-size: 20px;
		line-height: 26px;
	}
	
	.booth-text .booth-description,
	.intro-section .booth-text .booth-description {
		font-size: 20px;
		line-height: 26px;
	}
	
	.white-bg,
	.black-bg {
		padding: 40px 0 !important;
	}
	
	.intro-section {
		padding: 30px 0 !important;
	}
	
	.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
			min-content
			min-content
			min-content
			min-content
			min-content
			min-content
			min-content
			min-content !important;
		min-height: 100vh !important;
	}
	
	body {
		min-height: 100vh;
	}
	
	.hero {
		background-image: url("images/backdrops/backdrops-hero_m.webp") !important;
	}
	
	.hero_desc {
		margin-top: 75px;
	}
	
	.showcase_desc {
  		padding-left: 20px;
  		padding-right: 20px;
	}
	
	.showcase_desc h1 {
		font-size: 50px;
		line-height: 56px;
	}
	
	.showcase-intro {
		padding: 0px 20px 30px 20px;
	}
	
	.showcase-intro p {
		/*font-size: 14px;*/
		line-height: 20px;
	}
	
	.featured_main {
		padding: 0 15px 30px 15px;
	}
	
	.backdrop-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	
	.backdrop-item img {
		border-width: 2px;
	}
	
	.backdrop-item p {
		font-size: 12px;
		line-height: 16px;
		margin-top: 6px;
	}
	
	.featured_middle {
		padding: 60px 15px 0 15px;
	}
	
	.custom-backdrops h2 {
		font-size: 32px;
		line-height: 40px;
		margin-bottom: 20px;
	}
	
	.custom-backdrops p {
		/*font-size: 14px;*/
		line-height: 20px;
	}
	
	.benefits-section {
		padding: 20px 20px 40px 20px;
	}
	
	.benefit-item {
		margin-bottom: 5px;
	}
	
	.benefit-item h3 {
		line-height: 32px;
	}
	
	.benefit-item p {
		line-height: 22px;
	}
	
	.packages-header h2 {
		font-size: 32px;
		line-height: 40px;
	}
	
	/*.packages-header p {
		font-size: 16px;
		line-height: 24px;
	}*/
	
	.booth-text h2,
	.booth-text h3 {
		font-size: 32px;
		line-height: 38px;
		margin-bottom: 20px;
	}
	
	.booth-text li {
		font-size: 18px;
		line-height: 24px;
	}
	
	/*.booth-text .booth-description,
	.intro-section .booth-text .booth-description {
		font-size: 16px;
		line-height: 22px;
	}*/
	
	.contact_social {
		width: 80%;
	}
	
	/*.address_quote a {
		margin-left: 20px;
	}
	
	.contact_social a {
		padding-left: 20px;
	}*/
	
	.address_quote {
		width: 80%;
	}
}

@media screen and (max-width: 390px) {
	/*.showcase_desc h1 {
		font-size: 32px;
		line-height: 38px;
	}*/
	
	.packages-header h2 {
		font-size: 28px;
		line-height: 36px;
	}
	
	.booth-text h2,
	.booth-text h3 {
		font-size: 28px;
		line-height: 34px;
	}
	
	.booth-text li {
		font-size: 16px;
		line-height: 22px;
	}
	
	/*.booth-text .booth-description,
	.intro-section .booth-text .booth-description {
		font-size: 14px;
		line-height: 20px;
	}*/
}
@media screen and (max-width: 360px) {
	.contact_social {
	width:100%	
	}
	.address_quote {
	width:100%	
	}
	
}