/* Global Styles */
body {
	font-family: 'Arial', sans-serif;
	margin: 0;
	padding: 0;
	background: #f0f0f0;
	color: #333;
	line-height: 1.6;
	text-align: center;
}

/* Utility: Apply a subtle textured overlay.
   (Example uses a free pattern from transparenttextures.com) */
.textured {
	background-image: url('https://www.transparenttextures.com/patterns/diagmonds-light.png');
	background-size: auto;
}

/* Hero Section with 3D overlay texture */
.hero {
	background: linear-gradient(135deg, #ff416c, #ff4b2b);
	padding: 80px 20px;
	color: #fff;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
	opacity: .15;
	z-index: 0;
}

.hero .hero-content {
	position: relative;
	z-index: 1;
}

.hero h1 {
	font-size: 2.8rem;
	margin-bottom: 20px;
	font-weight: bold;
	text-transform: uppercase;
}

/* Button Styles */
.btn {
	display: inline-block;
	padding: 12px 24px;
	background: linear-gradient(135deg, #8e2de2, #4a00e0);
	color: #fff;
	text-decoration: none;
	font-size: 1.2rem;
	border-radius: 50px;
	transition: transform .3s ease, box-shadow .3s ease;
	font-weight: bold;
	margin-top: 10px;
}

.btn:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Banner Image */
.banner img {
	width: 100%;
	max-height: 400px;
	object-fit: cover;
	border-radius: 10px;
	margin: 20px 0;
}

/* Sections with Textured, Condensed Layout */
.cards-section,
.collections-section,
.info-section,
.contact-section {
	padding: 40px 20px;
	margin: 0 auto;
	max-width: 1200px;
}

/* Section Headings */
.cards-section h2,
.collections-section h2,
.info-section h2,
.contact-section h2 {
	font-size: 2.4rem;
	margin-bottom: 30px;
	font-weight: bold;
	color: #ff416c;
}

/* Grid Layout for Cards */
.cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	justify-items: center;
}

/* 3D Product Cards with Animated Hover Effects */
.product-card {
	background: linear-gradient(135deg, #f12711, #f5af19);
	color: #fff;
	border-radius: 15px;
	padding: 20px;
	width: 100%;
	max-width: 320px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.2);
	transition: transform .4s ease, box-shadow .4s ease;
	transform-style: preserve-3d;
	perspective: 1000px;
	position: relative;
	overflow: hidden;
}

.product-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 15px;
	background: url('https://www.transparenttextures.com/patterns/old-mathematics.png');
	opacity: .15;
	z-index: 0;
}

.product-card:hover {
	transform: translateY(-10px) rotateX(5deg) rotateY(5deg) scale(1.03);
	box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.product-card h3 {
	font-size: 1.6rem;
	margin-bottom: 10px;
	position: relative;
	z-index: 1;
	font-weight: bold;
	text-transform: uppercase;
}

.product-card p {
	font-size: 1.2rem;
	margin-bottom: 15px;
	position: relative;
	z-index: 1;
}

/* Info Section: Two Cards Side-by-Side (Blog & Testimonials) */
.info-section {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.info-card {
	background: linear-gradient(135deg, #ff4b2b, #ff416c);
	border-radius: 15px;
	padding: 20px;
	color: #fff;
	box-shadow: 0 8px 20px rgba(0,0,0,0.2);
	transition: transform .4s ease, box-shadow .4s ease;
}

.info-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.info-card h2 {
	font-size: 1.8rem;
	margin-bottom: 15px;
	font-weight: bold;
}

/* NEW RULE: Set the headings in the info-section to black */
.info-section .info-card h2 {
	color: #000;
}

.info-card p {
	font-size: 1.2rem;
	margin: 10px 0;
}

/* Contact Section: Two Cards Side-by-Side */
.contact-section {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.contact-section .info-card {
	background: linear-gradient(135deg, #4a00e0, #8e2de2);
	color: #fff;
	border-radius: 15px;
	padding: 20px;
	transition: transform .4s ease, box-shadow .4s ease;
}

.contact-section .info-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.contact-section h2 {
	font-size: 1.8rem;
	margin-bottom: 15px;
	font-weight: bold;
}

.contact-section p {
	font-size: 1.2rem;
	margin: 10px 0;
}

/* Footer */
footer {
	background: #333;
	color: #fff;
	padding: 20px;
	font-size: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.hero h1 {
		font-size: 2.2rem;
	}
	
	.btn {
		padding: 10px 20px;
		font-size: 1rem;
	}
	
	.info-section, .contact-section {
		grid-template-columns: 1fr;
	}
}