/* Protograph - Professional Camera Store Styles */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Arial", sans-serif;
	line-height: 1.6;
	color: #2b3b4a;
	background: linear-gradient(135deg, #f4f7f9 0%, #e9eef3 100%);
	min-height: 100vh;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	background: rgba(255, 255, 255, 0.98);
	min-height: 100vh;
	box-shadow: 0 6px 30px rgba(10, 30, 40, 0.06);
}

/* Header Styles */
header {
	background: linear-gradient(135deg, #0b2740 0%, #0b3b4b 100%);
	color: white;
	padding: 1rem 0;
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 10px rgba(5, 20, 30, 0.12);
	left: 0;
	right: 0;
	width: 100%;
	background-color: #0b2740; /* fallback background to avoid transparency */
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px; /* match .container horizontal padding so edges line up */
	width: 100%;
}

.logo {
	font-size: 2rem;
	font-weight: bold;
	background: linear-gradient(45deg, #1f7a8c, #274c77);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Navigation Styles */
nav ul {
	list-style: none;
	display: flex;
	gap: 2rem;
}

nav a {
	color: white;
	text-decoration: none;
	padding: 0.5rem 1rem;
	border-radius: 25px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

nav a:hover {
	background: rgba(255, 255, 255, 0.07);
	transform: translateY(-2px);
}

nav a.active {
	background: linear-gradient(45deg, #1f7a8c, #274c77);
}

/* Main Content Styles */
main {
	padding: 2rem 20px;
	max-width: 1200px;
	margin: 0 auto;
}

h1 {
	color: #274c77;
	font-size: 2.5rem;
	margin-bottom: 1rem;
	text-align: center;
	text-shadow: 1px 1px 3px rgba(10, 30, 40, 0.06);
}

h2 {
	color: #274c77;
	font-size: 2rem;
	margin-bottom: 1rem;
	border-bottom: 3px solid #1f7a8c;
	padding-bottom: 0.5rem;
}

h3 {
	color: #2c3e50;
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

p {
	margin-bottom: 1rem;
	font-size: 1.1rem;
	line-height: 1.8;
}

/* Hero Section */
.hero {
	text-align: center;
	background: linear-gradient(
		135deg,
		rgba(15, 45, 60, 0.03),
		rgba(31, 122, 140, 0.03)
	);
	padding: 3rem 2rem;
	border-radius: 15px;
	margin-bottom: 2rem;
	border: 2px solid rgba(31, 122, 140, 0.08);
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
	background: linear-gradient(45deg, #274c77, #1f7a8c);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero p {
	font-size: 1.3rem;
	color: #555;
	max-width: 800px;
	margin: 0 auto 2rem;
}

.cta-button {
	display: inline-block;
	background: linear-gradient(45deg, #1f7a8c, #274c77);
	color: white;
	padding: 1rem 2rem;
	text-decoration: none;
	border-radius: 30px;
	font-weight: 700;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(23, 106, 118, 0.12);
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 28px rgba(23, 106, 118, 0.18);
}

/* Product Grid */
.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin: 2rem 0;
}

.product-card {
	background: white;
	border-radius: 15px;
	padding: 1.5rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.product-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(10, 30, 40, 0.08);
	border-color: #1f7a8c;
}

.product-image {
	width: 100%;
	height: 140px;
	background: #fff;
	border-radius: 10px;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border: 2px solid #e9ecef;
}

.product-image img {
	max-width: 100%;
	max-height: 120px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	object-fit: contain;
	transition: transform 0.3s ease;
}

.product-image:hover img {
	transform: scale(1.05);
}

.product-price {
	color: #274c77;
	font-size: 1.5rem;
	font-weight: bold;
	margin-top: 1rem;
}

/* About Us Styles */
.about-section {
	background: rgba(31, 122, 140, 0.03);
	padding: 2rem;
	border-radius: 15px;
	margin: 2rem 0;
	border-left: 5px solid #1f7a8c;
}

.core-values {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin: 2rem 0;
}

.value-item {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 3px 10px rgba(10, 30, 40, 0.04);
	border-top: 4px solid #1f7a8c;
}

.value-item h3 {
	color: #2c3e50;
	margin-bottom: 1rem;
}

/* Contact Styles */
.contact-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin: 2rem 0;
}

.contact-card {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(10, 30, 40, 0.04);
	border-left: 5px solid #1f7a8c;
}

.contact-card h3 {
	color: #2c3e50;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.contact-card p {
	margin-bottom: 0.5rem;
}

/* Footer */
footer {
	background: #0b2740;
	color: white;
	text-align: center;
	padding: 2rem;
	margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
	.header-content {
		flex-direction: column;
		gap: 0.5rem;
		align-items: stretch; /* allow the header inner to use full width */
		padding: 0 12px; /* give slightly smaller horizontal padding on mobile */
	}

	nav ul {
		display: flex;
		flex-direction: column;
		gap: 0.5rem;
		width: 100%;
		padding: 0;
		margin: 0;
		align-items: center;
	}

	nav ul li {
		width: 100%;
	}

	nav a {
		display: block;
		width: 100%;
		padding: 0.65rem 0.75rem;
		text-align: center;
		border-radius: 8px;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.product-grid {
		grid-template-columns: 1fr;
	}

	h1 {
		font-size: 2rem;
	}
}

/* Animation Effects */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in {
	animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center {
	text-align: center;
}

.mt-2 {
	margin-top: 2rem;
}

.mb-2 {
	margin-bottom: 2rem;
}

/* Badge and Icon Styles */
.badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: linear-gradient(45deg, #1f7a8c, #274c77);
	color: white;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.category-badge {
	background: linear-gradient(45deg, #274c77, #1f7a8c);
	color: white;
	padding: 0.25rem 0.75rem;
	border-radius: 15px;
	font-size: 0.8rem;
	font-weight: 500;
	margin-bottom: 1rem;
	display: inline-block;
}

.icon {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.material-icons {
	font-family: "Material Icons";
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	font-feature-settings: "liga";
	-webkit-font-feature-settings: "liga";
	-webkit-font-smoothing: antialiased;
}
