:root {
	--primary-color: #e02b20;
	/* Logo Red */
	--secondary-color: #1a1a1a;
	/* Sleek Black */
	--accent-blue: #005b96;
	/* Logo Blue */
	--accent-teal: #00a8b5;
	/* Logo Teal */
	--accent-color: #ffffff;
	/* White */
	--text-color: #333333;
	--bg-color: #f9f9f9;
	--glass-bg: rgba(255, 255, 255, 0.8);
	--glass-border: rgba(255, 255, 255, 0.2);
	--shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	--header-height: 100px;
}

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

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	background-color: var(--bg-color);
	color: var(--text-color);
	line-height: 1.6;
	overflow-x: hidden;
}

/* Header Styles */
header {
	height: var(--header-height);
	background: var(--accent-color);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 5%;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: var(--shadow);
}

.logo-section {
	display: flex;
	align-items: center;
	gap: 15px;
	height: 100%;
	padding: 5px 0;
}

.logo-section img {
	height: 90px;
	width: auto;
	object-fit: contain;
}

.shop-name {
	display: none;
	/* Shop name is already in the logo */
}

.contact-section {
	display: flex;
	align-items: center;
	gap: 20px;
}

.contact-number {
	font-weight: 600;
	color: var(--primary-color);
	text-decoration: none;
	font-size: 1.1rem;
}

.social-icons {
	display: flex;
	gap: 15px;
}

.social-icons a {
	color: var(--secondary-color);
	font-size: 1.4rem;
	transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
	color: var(--primary-color);
	transform: translateY(-3px);
}

/* Hero Section / Gallery */
.hero {
	position: relative;
	height: 80vh;
	width: 100%;
	overflow: hidden;
	background-color: var(--secondary-color);
}

.gallery-container {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.gallery-item {
	min-width: 100%;
	height: 100%;
	position: relative;
	background-color: var(--secondary-color);
	/* Match black theme for letterboxing */
	display: flex;
	justify-content: center;
	align-items: center;
}

.gallery-item img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

/* Hero Controls */

.gallery-controls {
	position: absolute;
	bottom: 30px;
	right: 5%;
	display: flex;
	gap: 15px;
	z-index: 10;
}

.gallery-btn {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	color: var(--secondary-color);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.5rem;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.gallery-btn:hover {
	background: var(--primary-color);
	color: var(--accent-color);
}

/* About/Info Section */
.info-section {
	padding: 80px 10%;
	display: flex;
	gap: 50px;
	align-items: center;
	background: white;
}

.info-text {
	flex: 1;
}

.info-text h1 {
	font-size: 2.5rem;
	color: var(--secondary-color);
	margin-bottom: 25px;
	position: relative;
}

.info-text h1::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 60px;
	height: 4px;
	background: var(--primary-color);
}

.info-text p {
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 20px;
}

.info-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-top: 40px;
}

.info-card {
	padding: 25px;
	background: var(--bg-color);
	border-radius: 12px;
	border-left: 5px solid var(--primary-color);
	transition: transform 0.3s ease;
}

.info-card:hover {
	transform: translateY(-5px);
}

.info-card h3 {
	margin-bottom: 10px;
	color: var(--secondary-color);
}

/* Footer Styles */
footer {
	background: var(--primary-color);
	color: var(--accent-color);
	padding: 60px 10% 20px;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-about {
	max-width: 400px;
}

.footer-about h2 {
	font-size: 1.8rem;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.address-section {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.address-section p {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.1rem;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 20px;
	text-align: center;
	font-size: 0.9rem;
	opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
	.contact-section {
		display: none;
	}

	.gallery-content h2 {
		font-size: 2.5rem;
	}

	.info-section {
		flex-direction: column;
		padding: 50px 5%;
	}

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