/* ===================================
   STYLES5.CSS - Services 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 including nav*/
		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*/
		1280px /*bottom_photo*/
		min-content /*bottom_contact*/
		min-content /*footer*/;
}
.featured_showcase,
.featured_main,
.featured_middle,
.featured_bottom,
.bottom_photo,
.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 services page */
.hero {
	background-image: url("images/services/services-hero.webp") !important;
}

/* Remove grid gaps that don't apply to Services page */
.featured_clear,
.video,
.photo {
	display: none !important;
	height: 0 !important;
	min-height: 0 !important;
}

/* Override featured_showcase padding */
.featured_showcase {
	padding-top: 0px !important;
}

.showcase_desc {
	padding: 60px 40px 40px 40px !important;
}

/* Reduce gap between flash title and description */
.showcase_desc h1 {
	margin-bottom: 20px;
}

.showcase_desc p {
	margin-top: 0;
	padding-top: 0;
}

/* Override featured_main grid behavior */
.featured_main {
	grid-row: auto !important;
	min-height: 0 !important;
	height: auto !important;
}

/* Force booth sections to display as blocks within grid */
.booth-section {
	display: block !important;
	width: 100%;
	grid-column: 1 / -1;
	border: none !important;
	box-shadow: none !important;
}

.white-bg {
	background-color: white;
	padding: 100px 0;
}

.black-bg {
	background-color: black;
	padding: 100px 0;
}

.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-image .learn-more-btn {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	text-transform: uppercase;
	font-size: 50px;
	line-height: 64px;
	color: white;
	border: 2px solid rgba(140, 14, 29, 0.6);
	border-radius: 28px;
	background-color: rgba(140, 14, 29, 0.6);
	padding: .1em .5em .04em .5em;
	text-decoration: none;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 10;
	white-space: nowrap;
}

.booth-image:hover .learn-more-btn {
	opacity: 1;
}

.learn-more-btn:hover {
	background-color: rgba(140, 14, 29, 0.7);
	border-color: rgba(140, 14, 29, 0.7);
}

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

/* Override styles4.css for featured_middle on services page */
.featured_middle p {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

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

.booth-text p {
	font-family: MyCustomFont, sans-serif;
	font-size: 30px;
	line-height: 36px;
	text-transform: uppercase;
	color: #9F9F9F;
	margin: 0;
	width: 720px;
	max-width: 100%;
}

.booth-text a {
	color: #8C0E1D;
}

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

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

/* Title with flash graphic - responsive */
.title-desktop {
	display: block;
}

.title-desktop img {
	max-width: 100%;
	height: auto;
}

.title-mobile {
	display: none;
}

/* Additional options styling with hover effects */
.options-grid {
	display: flex;
	justify-content: center;
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px 80px 40px;
}

.option-link {
	flex: 1;
	max-width: 580px;
	text-decoration: none;
	display: block;
}

.option-box {
	background-color: #646464;
	padding: 50px;
	text-align: center;
}

.option-box img {
	width: 100%;
	height: auto;
	border: 1px solid #000;
	margin-bottom: 30px;
	display: block;
	transition: transform 0.3s ease;
	transform-origin: center center;
}

.option-link:hover .option-box img {
	transform: scale(1.03);
}

.option-box h3 {
	font-family: MyCustomFont, sans-serif;
	font-size: 36px;
	line-height: 42px;
	color: white;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.option-box p {
	font-family: MyCustomFont, sans-serif;
	font-size: 22px;
	line-height: 28px;
	color: #9F9F9F;
	text-transform: uppercase;
}

.featured_bottom h1 {
	font-family: MyCustomFont, sans-serif;
	color: #fff;
	margin-bottom: 0px;
}
.bottom_photo {
	background-image: url("images/services/wedding-group-silver.webp")
}

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

@media screen and (max-width: 1258px) {
	.booth-text h2 {
		font-size: 48px;
		line-height: 54px;
	}
	
	.booth-text p {
		font-size: 26px;
		line-height: 32px;
		width: 600px;
		max-width: 100%;
	}
	
	/* Reduce featured_showcase padding */
	.featured_showcase {
		padding-top: 60px !important;
	}
	
	.showcase_desc {
		padding: 40px 30px !important;
	}
}

@media screen and (max-width: 1108px) {
	.booth-item {
		padding: 0 60px;
		gap: 60px;
	}
	
	.booth-text p {
		width: 100%;
		max-width: 650px;
	}
}

@media screen and (max-width: 1024px) {
		#site_wrap {
		grid-template-rows:
			120px  /*header*/
			558px /*hero including nav*/
			min-content /*featured_showcase*/
			min-content /*featured_main*/
			min-content /*featured_middle*/
			min-content /*featured_bottom*/
			780px /*bottom_photo*/
			min-content /*bottom_contact*/
			min-content /*footer*/!important;
			
		grid-template-areas:
			"header header header header header header header header"
			"hero hero hero hero hero hero hero hero"
			"featured_showcase featured_showcase featured_showcase featured_showcase featured_showcase featured_showcase featured_showcase featured_showcase"
			"featured_main featured_main featured_main featured_main featured_main featured_main featured_main featured_main"
			"featured_middle featured_middle featured_middle featured_middle featured_middle featured_middle featured_middle featured_middle"
			"featured_bottom featured_bottom featured_bottom featured_bottom featured_bottom featured_bottom featured_bottom featured_bottom"
			"bottom_photo bottom_photo bottom_photo bottom_photo bottom_photo bottom_photo bottom_photo bottom_photo"
			"bottom_contact bottom_contact bottom_contact bottom_contact bottom_contact bottom_contact bottom_contact bottom_contact"
			"footer footer footer footer footer footer footer footer" !important;
	}
	#site_wrap {
	background-image: none !important;
}
	/* Override featured_main spacing */
	.featured_main {
		padding-bottom: 0 !important;
		margin-bottom: 0 !important;
	}
	
	.featured_main .feature_desc {
		padding-top: 60px !important;
		margin-top: 0 !important;
	}
	
	.featured_main > div {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
		padding-bottom: 40px !important;
	}
	
	/* Force featured_middle to come immediately after */
	.featured_middle {
		margin-top: 0 !important;
		padding-top: 0 !important;
	}
	
	.booth-item {
		padding: 0 40px;
		gap: 60px;
	}
	
	.booth-text h2 {
		font-size: 42px;
		line-height: 48px;
	}
	
	.booth-text p {
		font-size: 24px;
		line-height: 30px;
		width: 500px;
		max-width: 100%;
	}
	
	/* Remove large top margin on h1 */
	.showcase_desc h1 {
		margin-top: 0 !important;
	}
	
	.featured_showcase {
		padding-top: 60px !important;
	}
	
	.showcase_desc {
		padding: 40px 20px !important;
	}
}

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

@media screen and (max-width: 945px) {
	#site_wrap {
		grid-template-rows:
			120px  /*header*/
			558px /*hero including nav*/
			min-content /*featured_showcase*/
			min-content /*featured_main*/
			min-content /*featured_middle*/
			min-content /*featured_bottom*/
			740px /*bottom_photo*/
			min-content /*bottom_contact*/
			min-content /*footer*/!important;
	}
	/* We Offer section - stack vertically */
	.featured_main > div {
		flex-direction: column !important;
		gap: 40px !important;
	}
	
	.featured_main > div > div {
		flex: 1 1 100% !important;
		max-width: 500px;
		margin: 0 auto;
	}
	
	.featured_main p {
		font-size: 22px !important;
		line-height: 28px !important;
	}
	
	/* Booth sections - stack vertically */
	.booth-item,
	.booth-item.reverse {
		flex-direction: column !important;
		padding: 0 40px;
		gap: 40px;
	}
	
	.booth-image,
	.booth-text {
		flex: 1 1 100% !important;
		max-width: 600px;
	}
	
	.white-bg,
	.black-bg {
		padding: 60px 0;
	}
	
	.booth-text h2 {
		font-size: 38px;
		line-height: 44px;
	}
	
	.booth-text p {
		font-size: 22px;
		line-height: 28px;
		width: 100%;
		max-width: 600px;
	}
}

@media screen and (max-width: 900px) {
	.booth-item {
		padding: 0 40px;
		gap: 40px;
	}
	
	.booth-text p {
		width: 100%;
		max-width: 500px;
	}
	
	.options-grid {
		max-width: 100%;
		padding: 0 20px 60px 20px;
	}
}

@media screen and (max-width: 810px) {
	.bottom_photo {
  	background-image: url("images/services/wedding-group-silver_m3.webp");
	background-position: right;
	}
	.booth-text p {
	width: 100%;
	max-width: 450px;
	}
}

@media screen and (max-width: 854px) {
	.booth-item {
		padding: 0 20px;
		gap: 30px;
	}
	
	.booth-image {
		flex: 0 0 42%;
	}
	
	.booth-text {
		flex: 0 0 48%;
	}
	
	.booth-text p {
		width: 100%;
		font-size: 20px;
		line-height: 26px;
	}
	
	.booth-text h2 {
		font-size: 34px;
		line-height: 40px;
	}
}
	
@media screen and (max-width: 768px) {
	#site_wrap {
	background-image: none !important;
}
		#site_wrap {
		grid-template-rows:
			100px  /*header*/
			800px /*hero including nav*/
			min-content /*featured_showcase*/
			min-content /*featured_main*/
			min-content /*featured_middle*/
			min-content /*featured_bottom*/
			800px /*bottom_photo*/
			min-content /*bottom_contact*/
			min-content /*footer*/!important;
	}
	/* Hero mobile background */
	.hero {
		background-image: url("images/services/services-hero_m2.webp") !important;
	}
	
	.title-desktop {
		display: none;
	}
	
	.title-mobile {
		display: block;
	}
	
	/* Hero adjustments */
	.hero_desc {
		width: 80%;
	}
	
	/* Featured showcase - reduce padding */
	.featured_showcase {
		padding-top: 40px !important;
	}
	
	.showcase_desc {
		padding: 30px 20px !important;
	}
	
	/* We Offer section */
	.featured_main > div {
		padding: 20px !important;
		padding-bottom: 20px !important;
	}
	
	.featured_main > div > div {
		max-width: 400px;
	}
	
	.featured_main p {
		font-size: 20px !important;
		line-height: 26px !important;
	}
	
	/* Booth sections */
	.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-image .learn-more-btn {
		bottom: 22px;
		font-size: 36px;
		line-height: 48px;
		padding: .08em .4em .03em .4em;
	}
	
	.booth-text {
		max-width: 100%;
		flex: 1 1 100% !important;
	}
	
	.booth-text h2 {
		font-size: 36px;
		line-height: 42px;
	}
	
	.booth-text p {
		font-size: 20px;
		line-height: 26px;
		width: 100%;
		max-width: 100%;
	}
	
	.white-bg,
	.black-bg {
		padding: 40px 0;
	}
	
	/* Additional Options - stack vertically and center */
	.options-grid {
		flex-direction: column;
		align-items: center;
		gap: 40px;
		padding: 0 20px 60px 20px;
	}
	
	.option-link {
		max-width: 100%;
		width: 100%;
	}
	
	.option-box {
		padding: 30px;
		margin: 0 auto;
		max-width: 600px;
	}
	
	.option-box h3 {
		font-size: 32px;
		line-height: 38px;
	}
	
	.option-box p {
		font-size: 20px;
		line-height: 26px;
	}
	.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
			800px
			min-content
			min-content !important;
		min-height: 100vh !important;
		background-image: none !important;
	}
	
	body {
		min-height: 100vh;
	}
	/* Hero description margin */
	.hero_desc {
		margin-top: 75px;
	}
	
	/* We Offer section */
	.featured_main p {
		font-size: 22px !important;
		line-height: 36px !important;
	}
	
	.featured_showcase p {
    	line-height: 32px;
		  
	}
	/* Booth sections */
	.booth-text h2 {
		font-size: 32px;
		line-height: 38px;
	}
	
	.booth-text p {
		font-size: 22px;
		line-height: 28px;
		color:#aaa;
	}
	
	.booth-image .learn-more-btn {
		font-size: 28px;
		line-height: 36px;
	}
	
	/* Additional Options */
	.option-box {
		padding: 20px;
	}
	
	.option-box img {
		border: 1px solid #000;
	}
	
	.option-box h3 {
		font-size: 28px;
		line-height: 34px;
	}
	
	.option-box p {
		font-size: 18px;
		line-height: 24px;
	}
	.bottom_photo {
  	background-image: url("images/services/wedding-group-silver_m2.webp");
	}
	.contact_social {
	width:80%	
	}
	.address_quote {
	width:80%	
	}
}
	
@media screen and (max-width: 390px) {
	.bottom_photo {
  	background-image: url("images/services/wedding-group-silver_m.webp");
	}
	
}

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