/* ===================================
   STYLES9.CSS - Pricing 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 {
		grid-column: 1 / -1 !important;
		width: 100% !important;
		max-width: 100% !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
		padding-top: 60px;;
	}

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

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

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

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

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

.questionnaire-note {
	font-size: 20px !important;
	line-height: 28px !important;
	color: #707070 !important;
	font-style: italic;
}

/* Book Now Button - Match services page styling */
.booth-image .book-now-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 .book-now-btn {
	opacity: 1;
}

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


/* Main Package Cards Container - Remove constraints */
.packages-container {
	width: 100%;
	margin: 0;
	padding: 0;
}

/* Booth section must be full width like services page */
.booth-section {
	display: block !important;
	width: 100vw !important;
	max-width: 100vw !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;
}

/* 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;
}

.booth-text p.package-note {
	font-family: MyCustomFont, sans-serif;
	font-size: 18px;
	line-height: 24px;
	text-transform: uppercase;
	font-style: italic;
	margin: 20px 0 0 0;
	text-align: left;
}

/* A La Carte Background - Full width white */
.alacarte-background {
	width: 100%;
	background-color: #FFF;
	padding: 60px 0;
}

.alacarte-section h2 {
	font-family: MyCustomFont, sans-serif;
	font-size: 56px;
	line-height: 64px;
	color: #707070;
	text-transform: uppercase;
	text-align: center;
	margin: 0 0 10px 0;
	padding: 0 40px;
}

.alacarte-section h3 {
	font-family: MyCustomFont, sans-serif;
	font-size: 32px;
	line-height: 40px;
	color: #9F9F9F;
	text-transform: uppercase;
	text-align: center;
	margin: 0 0 50px 0;
	font-weight: normal;
	padding: 0 40px;
}

/* Constrain the grid width, not the section */
.alacarte-grid {
	display: block;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
	box-sizing: border-box;
	touch-action: pan-y;
}

.alacarte-item {
	display: grid;
	grid-template-columns: 2fr 3fr;
	gap: 20px;
	align-items: center;
	padding: 15px 20px;
	background-color: #FFF;
	border-bottom: 1px solid #D3D3D3;
	box-sizing: border-box;
}

.alacarte-item:last-child {
	border-bottom: none;
}

.item-name {
	font-family: MyCustomFont, sans-serif;
	font-size: 20px;
	line-height: 22px;
	color: #707070;
	text-transform: uppercase;
	word-wrap: break-word;
}

.item-desc {
	font-family: MyCustomFont, sans-serif;
	font-size: 20px;
	line-height: 22px;
	color: #9F9F9F;
	text-transform: uppercase;
	word-wrap: break-word;
}

/* Hide empty descriptions */
.alacarte-item .item-desc:empty {
	display: none;
}

/* When description is empty, name spans full width */
.alacarte-item:has(.item-desc:empty) {
	grid-template-columns: 1fr;
}

/* Special Packages Header - Black background full width */
.special-packages-header {
	width: 100%;
	background-color: #000;
	padding: 100px 40px;
	text-align: center;
}

.special-packages-header h2 {
	font-family: MyCustomFont, sans-serif;
	font-size: 64px;
	line-height: 72px;
	color: #FFF;
	text-transform: uppercase;
	text-align: center;
	margin: 0 0 30px 0;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}

.special-packages-header .section-intro {
	font-family: MyCustomFont, sans-serif;
	font-size: 36px;
	line-height: 40px;
	color: #9F9F9F;
	text-transform: uppercase;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
}

/* Special Packages Section - Container for booth sections */
.special-packages-section {
	width: 100%;
	margin: 0;
	padding: 0;
}


.featured_showcase p {
  color: #a2a2a2;
  line-height: 50px;
}

/* Mobile Headshots Link */
.mobile-headshots-link {
	color: #91686D;
	text-decoration: underline;
	cursor: pointer;
	transition: color 0.3s ease;
}

.mobile-headshots-link:hover {
	color: #A07880;
}

/* Modal Styling */
.modal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.8);
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

.modal.show {
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-content {
	background-color: #FFF;
	margin: auto;
	width: 90%;
	max-width: 1200px;
	border-radius: 20px;
	position: relative;
	animation: slideIn 0.3s ease;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

@keyframes slideIn {
	from {
		transform: translateY(-50px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.modal-close {
	position: absolute;
	top: 20px;
	right: 30px;
	color: #000;
	font-size: 40px;
	font-weight: bold;
	cursor: pointer;
	z-index: 10000;
	transition: color 0.3s ease;
}

.modal-close:hover {
	color: #8C0E1D;
}

.modal-body {
	display: flex;
	align-items: stretch;
	padding: 0;
	border-radius: 20px;
	overflow: hidden;
}

.modal-image {
	flex: 0 0 40%;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
}

.modal-image img {
	width: 100%;
	height: auto;
	border: 4px solid #707070;
}

.modal-text {
	flex: 0 0 60%;
	padding: 60px 50px;
	background-color: #FFF;
	overflow-y: auto;
	max-height: 80vh;
}

.modal-text h2 {
	font-family: MyCustomFont, sans-serif;
	font-size: 36px;
	line-height: 44px;
	color: #707070;
	text-transform: uppercase;
	margin: 0 0 20px 0;
}

.modal-text p {
	font-family: MyCustomFont, sans-serif;
	font-size: 18px;
	line-height: 26px;
	color: #707070;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.modal-text ul {
	list-style: none;
	padding: 0;
	margin: 20px 0 30px 0;
}

.modal-text li {
	font-family: MyCustomFont, sans-serif;
	font-size: 18px;
	line-height: 26px;
	color: #707070;
	text-transform: uppercase;
	margin-bottom: 10px;
	padding-left: 25px;
	position: relative;
}

.modal-text li::before {
	content: '▪';
	position: absolute;
	left: 0;
	color: #8C0E1D;
	font-size: 20px;
}

.modal-btn {
	display: inline-block;
	background-color: #8C0E1D;
	color: #FFF;
	font-family: MyCustomFont, sans-serif;
	font-size: 32px;
	text-transform: uppercase;
	padding: 15px 50px;
	border-radius: 10px;
	text-decoration: none;
	transition: background-color 0.3s ease;
	margin-top: 20px;
}

.modal-btn:hover {
	background-color: #A01020;
}


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

@media screen and (max-width: 1258px) {
	.showcase_desc h1 {
		font-size: 64px;
		line-height: 72px;
	}
	
	.booth-text h2,
	.booth-text h3 {
		font-size: 36px;
		line-height: 44px;
	}
	
	.booth-text li {
		font-size: 22px;
		line-height: 28px;
	}
	
	.special-packages-header h2 {
		font-size: 56px;
		line-height: 64px;
	}
}

@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;
	}
	
	.featured_showcase p {
  		font-size: 36px;
  		line-height: 42px;
	}
	
	.showcase_desc h1 {
		font-size: 56px;
		line-height: 64px;
	}
	
	.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;
	}
	
	.alacarte-background {
		padding: 40px 0;
	}
	
	.alacarte-section {
		padding: 0 30px;
	}
	
	.alacarte-section h2 {
		font-size: 48px;
		line-height: 56px;
	}
	
	.alacarte-item {
		grid-template-columns: 1.5fr 2fr;
		gap: 15px;
		padding: 15px;
	}
	
	/*.item-name {
		font-size: 16px;
		line-height: 22px;
	}
	
	.item-desc {
		font-size: 14px;
		line-height: 20px;
	}*/
	
	.special-packages-header {
		padding: 60px 30px;
	}
}

@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) {
	.showcase_desc h1 {
    	font-size: 52px;
    	line-height: 58px;
  	}
	
	.featured_showcase h3{
        padding: 20px 16px 25px 16px;
	}
	.featured_showcase p {
  color: #a2a2a2;
  font-size: 30px;
  line-height: 38px;
}
	.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;
	}
	
	.booth-text h2,
	.booth-text h3 {
		font-size: 38px;
		line-height: 44px;
		padding-bottom: 0px;
	}
	
	.booth-text li {
		font-size: 22px;
		line-height: 28px;
	}
	
	.alacarte-item {
		grid-template-columns: 1fr;
		gap: 10px;
		text-align: center;
	}
	
	.item-desc {
		text-align: center;
	}
		.modal-body {
		flex-direction: column;
	}
	
	.modal-image,
	.modal-text {
		flex: 1 1 100%;
	}
	
	.modal-image {
		padding: 30px;
	}
	
	.modal-text {
		padding: 40px 30px;
		max-height: 50vh;
	}
}

@media screen and (max-width: 768px) {
	#site_wrap {
		grid-template-rows:
			100px
			600px
			min-content
			min-content
			min-content !important;
	}
	
	.hero_desc {
		width: 75%;
	}
	
	.featured_showcase {
		padding: 40px 20px;
	}
	
	.showcase_desc {
		margin-bottom: 60px;
	}
	
	.showcase_desc h1 {
		line-height: 50px;
	}
	
	.showcase_desc p {
		font-size: 24px;
		line-height: 28px;
	}
	
	.questionnaire-note {
		font-size: 16px !important;
		line-height: 22px !important;
	}
	
	.book-now-btn {
		font-size: 28px;
		padding: 12px 30px;
	}
	
	.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;
	}
	
	.white-bg,
	.black-bg {
		padding: 40px 0 !important;
	}
	
	.alacarte-background {
		padding: 40px 0;
	}
	
	.alacarte-section {
		padding: 0 20px;
	}
	
	.alacarte-section h2 {
		font-size: 38px;
		line-height: 46px;
	}
	
	.alacarte-section h3 {
		font-size: 24px;
		line-height: 32px;
	}
	
	.special-packages-header {
		padding: 60px 20px;
	}
	
	.special-packages-header h2 {
		font-size: 42px;
		line-height: 50px;
	}
	
	.special-packages-header .section-intro {
		font-size: 18px;
		line-height: 26px;
	}
	.modal-content {
		width: 95%;
		margin: 20px;
	}
	
	.modal-text h2 {
		font-size: 28px;
		line-height: 36px;
	}
	
	.modal-text p,
	.modal-text li {
		font-size: 16px;
		line-height: 22px;
	}
	
	.modal-btn {
		font-size: 24px;
		padding: 12px 40px;
	}
	.bottom_contact {
		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/pricing/pricing-hero_m2.webp") !important;
	}
	
	.hero_desc {
		margin-top: 75px;
	}
	
	.showcase_desc {
    	padding: 60px 20px 40px 20px;
}
	
	.showcase_desc h1 {
		font-size: 42px;
		line-height: 42px;
		margin: 0 0 30px 0;
	}
	
	.showcase_desc p {
		font-size: 22px;
		line-height: 26px;
	}
	
	.book-now-btn {
		font-size: 24px;
		padding: 10px 25px;
	}
	
	.booth-text h2,
	.booth-text h3 {
		font-size: 32px;
		line-height: 38px;
		/*margin-bottom: 0;*/
	}
	
	.booth-text li {
		/*font-size: 18px;*/
		line-height: 24px;
	}
	
	.alacarte-section h2 {
		font-size: 32px;
		line-height: 40px;
	}
	
	.alacarte-section h3 {
		font-size: 20px;
		line-height: 28px;
		margin: 0 0 20px 0;
	}
	
	/*.item-name {
		font-size: 14px;
		line-height: 20px;
	}*/
	
	/*.item-desc {
		font-size: 12px;
		line-height: 18px;
	}*/
	
	.special-packages-header h2 {
		font-size: 36px;
		line-height: 44px;
	}
	
	.special-packages-header .section-intro {
		font-size: 20px;
		line-height: 24px;
	}
	
	/*.contact_social {
		width: 80%;
	}
	
	.address_quote a {
    	margin-left: 20px;
  }
	
	.contact_social a{
		padding-left: 20px;
	}
	
	.address_quote {
		width: 80%;
		padding-top: 6em;
	}*/
	.modal-close {
		top: 10px;
		right: 15px;
		font-size: 30px;
	}
	
	.modal-image {
		padding: 20px;
	}
	
	.modal-text {
		padding: 30px 20px;
	}
	
	.modal-text h2 {
		font-size: 24px;
		line-height: 32px;
	}
	
	.modal-btn {
		font-size: 20px;
		padding: 10px 30px;
	}
}

@media screen and (max-width: 390px) {
	/*.showcase_desc h1 {
		font-size: 32px;
		line-height: 38px;
	}*/
	
	.booth-text h2,
	.booth-text h3 {
		font-size: 22px;
		line-height: 30px;
	}
	
	.alacarte-section h2 {
		font-size: 28px;
		line-height: 36px;
	}
	
	.special-packages-header h2 {
		font-size: 32px;
		line-height: 40px;
	}
}
@media screen and (max-width: 375px) {
  .featured_showcase h1 {
    padding: 0 0.1em;
  }
}