/* Custom styles for Bootstrap 5 compatibility */
body {
	font-family: 'Poppins', sans-serif;
	/* padding-top: 76px; Account for fixed navbar */
}

/* Hero Section */
.hero-section {
	height: 100vh;
	background: url('../images/homepage/chitra-studio-capturing-precious-moments-sultanpur-Z_42643AA.webp');
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
}

/* onlty if need this section below */
/* .hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 1rem;
} */

.hero-content h1 {
	font-size: 3.5rem;
	font-weight: 900;
	margin-bottom: 1rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Services Section */
.services-card {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: none;
	border-radius: 15px;
	overflow: hidden;
}

.services-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.services-img {
	height: 250px;
	background-size: cover;
	background-position: center;
	position: relative;
}

.services-img::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, rgba(29, 161, 242, 0.8), rgba(71, 240, 248, 0.8));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.services-card:hover .services-img::after {
	opacity: 1;
}

/* Why Choose Us Section */
.feature-icon {
	font-size: 3rem;
	color: #1DA1F2;
	margin-bottom: 1rem;
}

/* Gallery Section */
.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	margin-bottom: 30px;
}

.gallery-item img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.gallery-item:hover img {
	transform: scale(1.1);
}

.gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, rgba(29, 161, 242, 0.9), rgba(71, 240, 248, 0.9));
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.gallery-overlay h5 {
	color: white;
	font-weight: 600;
	text-align: center;
}

/* Testimonials */
.testimonial-card {
	background: #f8f9fa;
	border-radius: 15px;
	padding: 2rem;
	margin: 1rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Products Section */
.product-card {
	border: none;
	border-radius: 15px;
	overflow: hidden;
	transition: transform 0.3s ease;
}

.product-card:hover {
	transform: translateY(-5px);
}

.product-img {
	height: 200px;
	background-size: cover;
	background-position: center;
	position: relative;
}

.price-badge {
	position: absolute;
	top: 15px;
	right: 15px;
	background: linear-gradient(45deg, #1DA1F2, #47F0F8);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 25px;
	font-weight: 600;
}

/* Video Section */
.video-thumbnail {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
}

.video-thumbnail img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: #1DA1F2;
	transition: all 0.3s ease;
}

.play-button:hover {
	background: white;
	transform: translate(-50%, -50%) scale(1.1);
}

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin: 0 10px;
	transition: all 0.3s ease;
	text-decoration: none;
	font-size: 1.2rem;
}

.social-links .facebook {
	background: #3b5998;
	color: white;
}

.social-links .instagram {
	background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	color: white;
}

.social-links a:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}


/* Responsive adjustments */
@media (max-width: 768px) {
	.hero-section::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		/* or try 4 / 5 depending on your design */
		/* aspect-ratio: 3 / 4;  */
		height: 500px;
		background-image: url('../images/homepage/baby-photography-beach-theme-phone-view-Z_71138AAA.webp');
		background-size: contain;
		background-position: top center;
		background-repeat: no-repeat;
		z-index: -1;
	}

	/* Hide background image from main hero section */
	.hero-section {
		background: none !important;
		height: auto !important;
	}

	.hero-content {
		margin-top: var(--hero-image-height);
	}

	:root {
		--hero-image-height: 280px;
	}

	.hero-content h1 {
		font-weight: 300;
		font-size: 2.5rem;
		text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
		/* soft and light */
	}

	.hero-content p {
		font-size: 1rem;
		text-shadow: none !important;
	}

	.gallery-item img {
		width: 100%;
		height: auto;
	}

	.video-thumbnail img {
		width: 100%;
		height: auto;
		/* This maintains the aspect ratio of your thumbnail image */
		display: block;
		/* Helps remove any extra space browsers might add below the image */
		/* If you want to force a specific aspect ratio or crop, you might add: */
		object-fit: cover;
		aspect-ratio: 21 / 9.5;
		/* padding-bottom: 0.5rem; */
	}
}

/* Custom button styles */
.btn-pacific btn-primary {
	background: linear-gradient(45deg, #1DA1F2, #47F0F8);
	border: none;
	border-radius: 25px;
	padding: 12px 30px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-pacific btn-primary:hover {
	background: linear-gradient(45deg, #0d8bd9, #2ee0e8);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(29, 161, 242, 0.4);
}

/* universal gradient color */
.gradient-pacific {
	background: linear-gradient(45deg, #1DA1F2, #47F0F8);
}

.text-gradient-pacific {
	background: linear-gradient(45deg, #1DA1F2, #47F0F8);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	/* for Firefox */
	color: transparent;
}