/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

/* Apply Montserrat font to all text */
/* body {
	font-family: 'Montserrat', sans-serif !important;
} */

/* Apply Montserrat to headings */
/* h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: 'Montserrat', sans-serif !important;
} */

.hero-title {
	font-family: 'Montserrat', sans-serif !important;
	letter-spacing: 20px !important;
}

.slider-caption-center {
	max-width: 900px !important;
}

.custom-font {
	font-family: 'Montserrat', sans-serif !important;
}

/* Video Modal Styling */
#video-modal {
	background: #000;
	padding: 20px;
	border-radius: 8px;
	max-width: 90vw;
	max-height: 90vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

#video-modal video {
	display: block;
	max-width: 100%;
	max-height: 85vh;
	width: auto;
	height: auto;
	border-radius: 4px;
	object-fit: contain;
}

/* Lightbox video wrapper */
.mfp-content #video-modal {
	margin: 0 auto;
}

/* Mobile Padding Adjustments */
@media (max-width: 767px) {
	/* Reduce container padding on mobile */
	.container {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}
	
	/* Reduce section padding */
	.content-wrap {
		padding: 40px 0 !important;
	}
	
	/* Reduce heading margins */
	.heading-block {
		margin-bottom: 20px !important;
	}
	
	/* Reduce row gutters on mobile */
	.row.col-mb-50 {
		margin-left: -10px !important;
		margin-right: -10px !important;
	}
	
	.row.col-mb-50 > [class*="col-"] {
		padding-left: 10px !important;
		padding-right: 10px !important;
	}
	
	/* Reduce bottom margin for columns */
	.col-mb-50 > [class*="col-"] {
		padding-bottom: 16px !important;
		margin-bottom: 10px !important;
	}
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 576px) {
	.container {
		padding-left: 15px !important;
		padding-right: 15px !important;
	}
	
	.content-wrap {
		padding: 30px 0 !important;
	}
	
	.heading-block.bottommargin-lg {
		margin-bottom: 30px !important;
	}
	
	/* Mobile video modal adjustments */
	#video-modal {
		max-width: 95% !important;
		padding: 10px !important;
	}
	
	/* Mobile map height adjustment */
	.google-map-container iframe {
		height: 250px !important;
	}
	
	/* Mobile hero CTA button positioning */
	.hero-cta-button {
		bottom: 40px;
	}
	
	/* Mobile hero section layout */
	#slider .slider-caption-center {
		min-height: 70vh;
	}
}

/* Smooth Scroll Behavior */
html {
	scroll-behavior: smooth;
}

/* Hero Section Layout */
#slider .slider-caption-center {
	position: relative;
	min-height: 80vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* Hero CTA Button Positioning */
.hero-cta-button {
	position: absolute;
	bottom: 60px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
}

.hero-cta-button .button:hover {
	background-color: #c7a772 !important;
	border-color: #c7a772 !important;
	color: #FFF !important;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
}

/* Dark Tint Overlay for Hero Section */
#slider .slider-inner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 1;
}

#slider .slider-caption {
	position: relative;
	z-index: 2;
}

/* Logo Cropping - Remove White Space */
#logo img {
	width: 300px;
	height: 100px;
	object-fit: cover;
	object-position: center;
}

/* Sticky header logo adjustment */
.sticky-header #logo img {
	width: 180px;
	height: 70px;
}

/* Google Map Styling */
.google-map-container {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.google-map-container iframe {
	display: block;
}

/* Contact Us Page */
.contact-success,
.contact-failure {
	font-size: medium;
	font-weight: 500;
	display: none;
}

.contact-success {
	color: #40AE49 !important;
}

.contact-failure {
	color: #e74c3c !important;
}
