/* 
==================================================
VARIABLES & THEME CONFIGURATION
==================================================
*/
:root {
	--primary-color: #d4af37; /* Premium Gold matching mall aesthetics */
	--primary-hover: #b5952f;
	--secondary-color: #0d4a30; /* Deep Green based on new logo */
	--text-color: #333333;
	--text-light: #777777;
	--bg-light: #f4f6f5; /* Slight green tint for light bg */
	--bg-dark: #122b1f; /* Deeper Green for dark backgrounds */
	--white: #ffffff;
	--font-main: 'Inter', sans-serif;
	--font-heading: 'Outfit', sans-serif;
	--border-color: #e5e5e5;
	--border-radius: 8px;
	--transition: all 0.3s ease;
	--box-shadow: 0 4px 20px rgba(0,0,0,0.05);
	--box-shadow-hover: 0 10px 30px rgba(0,0,0,0.1);
}

/* 
==================================================
RESET & BASE STYLES
==================================================
*/
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: var(--font-main);
	color: var(--text-color);
	line-height: 1.6;
	background-color: var(--white);
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: 700;
	color: var(--secondary-color);
	margin-bottom: 1rem;
	line-height: 1.2;
}

a {
	color: var(--primary-color);
	text-decoration: none;
	transition: var(--transition);
}

a:hover {
	color: var(--primary-hover);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

ul {
	list-style: none;
}

/* 
==================================================
UTILITIES & LAYOUT
==================================================
*/
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.section-padding {
	padding: 80px 0;
}

@media (max-width: 768px) {
	.section-padding { padding: 50px 0; }
}

.section-bg {
	background-color: var(--bg-light);
}

.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* 
==================================================
BUTTONS
==================================================
*/
.btn {
	display: inline-block;
	padding: 12px 28px;
	border-radius: var(--border-radius);
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 1rem;
	text-align: center;
	cursor: pointer;
	border: 2px solid transparent;
	transition: var(--transition);
}

.btn-primary {
	background-color: var(--primary-color);
	color: var(--white);
	border-color: var(--primary-color);
}
.btn-primary:hover {
	background-color: var(--primary-hover);
	border-color: var(--primary-hover);
	color: var(--white);
}

.btn-outline {
	background-color: transparent;
	color: var(--secondary-color);
	border-color: var(--secondary-color);
}
.btn-outline:hover {
	background-color: var(--secondary-color);
	color: var(--white);
}

.btn-outline-light {
	background-color: transparent;
	color: var(--white);
	border-color: var(--white);
}
.btn-outline-light:hover {
	background-color: var(--white);
	color: var(--primary-color);
}

.link-arrow {
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}
.link-arrow:hover {
	gap: 8px;
}

/* 
==================================================
HEADER & NAVIGATION
==================================================
*/
.site-header {
	background-color: var(--white);
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 15px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.site-logo img {
	max-height: 75px;
	width: auto;
	transition: var(--transition);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	border: 0;
}

.site-title a {
	font-family: var(--font-heading);
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--secondary-color);
	text-transform: uppercase;
	letter-spacing: -0.5px;
	display: none; /* Hidden, using logo instead */
}

.site-description {
	font-size: 0.8rem;
	color: var(--text-light);
	text-transform: uppercase;
	letter-spacing: 1px;
	display: none; /* Hidden, using logo instead */
}

.main-navigation ul {
	display: flex;
	gap: 25px;
}

.main-navigation a {
	color: var(--secondary-color);
	font-weight: 500;
	font-size: 1rem;
	position: relative;
	padding: 5px 0;
}

.main-navigation a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--primary-color);
	transition: var(--transition);
}

.main-navigation a:hover::after {
	width: 100%;
}

.header-actions {
	display: flex;
	gap: 15px;
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
}

.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
	display: block;
	width: 30px;
	height: 3px;
	background-color: var(--secondary-color);
	position: relative;
	transition: var(--transition);
}
.menu-toggle-icon::before { content: ''; top: -8px; }
.menu-toggle-icon::after { content: ''; top: 8px; }

/* Responsive Header */
@media (max-width: 992px) {
	.header-actions { display: none; }
	.menu-toggle { display: block; }
	.main-navigation {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: var(--white);
		box-shadow: 0 5px 10px rgba(0,0,0,0.1);
		display: none;
		padding: 20px;
	}
	.main-navigation.toggled {
		display: block;
	}
	.main-navigation ul {
		flex-direction: column;
		gap: 15px;
	}
}

/* 
==================================================
PAGE HEADERS & HERO
==================================================
*/
.page-header {
	background-size: cover;
	background-position: center;
	position: relative;
	color: var(--white);
	text-align: center;
}

.header-overlay {
	background: rgba(0, 0, 0, 0.6);
	padding: 100px 0;
}

.page-header .page-title {
	color: var(--white);
	font-size: 3rem;
	margin-bottom: 0.5rem;
}

.page-header .page-subtitle {
	font-size: 1.2rem;
	opacity: 0.9;
}

.hero-section {
	height: 100vh;
	min-height: 600px;
	background-image: url('../image/mall_exterior_hero_1775775664456.png');
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0; left: 0; width: 100%; height: 100%;
	background: linear-gradient(to bottom, rgba(13, 74, 48, 0.4), rgba(0, 0, 0, 0.8));
}

.hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	color: var(--white);
	max-width: 900px;
	padding: 0 20px;
	margin-top: 50px;
}

.hero-title {
	font-size: 4.5rem;
	color: var(--white);
	margin-bottom: 1rem;
	text-shadow: 0 4px 15px rgba(0,0,0,0.5);
	line-height: 1.1;
}

.hero-subtitle {
	font-size: 1.5rem;
	margin-bottom: 2.5rem;
	opacity: 0.9;
}

.hero-cta {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-bottom: 50px;
}

/* Glassmorphism Stats */
.hero-stats {
	display: flex;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--border-radius);
	padding: 20px 0;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.glass-card {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
	padding: 0 20px;
}

.glass-card:last-child {
	border-right: none;
}

.stat-number {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary-color);
	line-height: 1;
	margin-bottom: 5px;
	text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.stat-label {
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 500;
}

/* Animations */
.animate-up {
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 768px) {
	.hero-section { height: auto; min-height: 100vh; padding: 120px 0 50px; }
	.hero-content { margin-top: 0; }
	.hero-title { font-size: 2.5rem; }
	.hero-subtitle { font-size: 1.2rem; }
	.hero-cta { flex-direction: column; gap: 15px; margin-bottom: 40px; }
	.hero-stats { flex-direction: column; gap: 20px; padding: 20px; }
	.glass-card { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.2); padding-bottom: 15px; width: 100%; }
	.glass-card:last-child { border-bottom: none; padding-bottom: 0; }
}

/* 
==================================================
COMPONENTS: GRIDS & CARDS
==================================================
*/
.section-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 40px;
}

.store-grid, .event-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 30px;
}

/* Store Carousel */
.store-carousel {
	display: flex;
	overflow-x: auto;
	gap: 30px;
	padding-bottom: 20px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
.store-carousel::-webkit-scrollbar {
	display: none;
}
.store-carousel .store-card {
	flex: 0 0 320px;
	scroll-snap-align: start;
}
@media (max-width: 768px) {
	.store-carousel .store-card {
		flex: 0 0 280px;
	}
}

/* Store Card */
.store-card {
	background: var(--white);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--box-shadow);
	transition: var(--transition);
}

.store-card:hover {
	box-shadow: var(--box-shadow-hover);
	transform: translateY(-5px);
}

.store-image {
	position: relative;
	height: 200px;
}

.store-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.store-badge {
	position: absolute;
	top: 15px;
	right: 15px;
	background: var(--primary-color);
	color: var(--white);
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
}

.store-info {
	padding: 20px;
}

.store-title {
	font-size: 1.25rem;
	margin-bottom: 10px;
}

.store-title a { color: var(--secondary-color); }
.store-title a:hover { color: var(--primary-color); }

.store-description {
	color: var(--text-light);
	font-size: 0.9rem;
	margin-bottom: 15px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.store-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid var(--border-color);
	padding-top: 15px;
	font-size: 0.9rem;
}

/* Event Card */
.event-card {
	background: var(--white);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--box-shadow);
}

.event-image {
	position: relative;
	height: 220px;
}

.event-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.event-date {
	position: absolute;
	bottom: 0;
	left: 20px;
	background: var(--white);
	padding: 10px 15px;
	text-align: center;
	border-radius: 5px 5px 0 0;
	box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.date-day {
	display: block;
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--primary-color);
	line-height: 1;
}

.date-month {
	font-size: 0.8rem;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--secondary-color);
}

.event-info {
	padding: 20px;
}

.event-category {
	color: var(--primary-color);
	font-size: 0.8rem;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 5px;
	display: block;
}

.event-title {
	font-size: 1.2rem;
}

.event-title a { color: var(--secondary-color); }

/* Promo Banners */
.promo-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 30px;
}

@media (max-width: 768px) {
	.promo-grid { grid-template-columns: 1fr; }
}

.promo-banner {
	border-radius: var(--border-radius);
	overflow: hidden;
	height: 300px;
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	align-items: center;
	padding: 40px;
	color: var(--white);
}

.promo-banner::before {
	content: '';
	position: absolute;
	top: 0; left: 0; width: 100%; height: 100%;
	background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
}

.promo-content {
	position: relative;
	z-index: 1;
	max-width: 300px;
}

.promo-badge {
	background: #e74c3c;
	color: var(--white);
	padding: 5px 10px;
	border-radius: 5px;
	font-weight: bold;
	display: inline-block;
	margin-bottom: 15px;
}

.promo-title {
	color: var(--white);
	font-size: 1.8rem;
	margin-bottom: 10px;
}

/* 
==================================================
PAGES SPECIFIC STYLES
==================================================
*/
/* Presentation & Info sections */
.presentation-grid, .location-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

@media (max-width: 992px) {
	.presentation-grid, .location-grid {
		grid-template-columns: 1fr;
	}
}

.presentation-text h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
}

.presentation-text p {
	font-size: 1.1rem;
	margin-bottom: 20px;
	color: var(--text-light);
}

/* Directory Filters */
.directory-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 40px;
	justify-content: center;
	align-items: center;
}

.filter-btn {
	background: var(--bg-light);
	border: 1px solid var(--border-color);
	padding: 8px 16px;
	border-radius: 20px;
	cursor: pointer;
	font-family: var(--font-main);
	transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
	background: var(--primary-color);
	color: var(--white);
	border-color: var(--primary-color);
}

.search-bar input {
	padding: 10px 20px;
	border-radius: 20px;
	border: 1px solid var(--border-color);
	width: 250px;
	outline: none;
}

/* Services Page */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
}

.service-card {
	background: var(--bg-light);
	padding: 40px 30px;
	border-radius: var(--border-radius);
	text-align: center;
	transition: var(--transition);
}

.service-card:hover {
	background: var(--white);
	box-shadow: var(--box-shadow);
	transform: translateY(-5px);
}

.service-icon {
	font-size: 3rem;
	margin-bottom: 20px;
}

/* Contact Form */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 50px;
}

@media (max-width: 992px) {
	.contact-grid { grid-template-columns: 1fr; }
}

.form-styled .form-group {
	margin-bottom: 20px;
}

.form-styled label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
}

.form-styled input, .form-styled textarea, .form-styled select {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	font-family: var(--font-main);
}

.form-styled input:focus, .form-styled textarea:focus {
	outline: none;
	border-color: var(--primary-color);
}

/* 
==================================================
FOOTER
==================================================
*/
.site-footer {
	background-color: var(--bg-dark);
	color: #cccccc;
	padding-top: 60px;
}

.footer-widgets {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px 40px;
	display: grid;
	grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
	gap: 40px;
}

@media (max-width: 992px) {
	.footer-widgets {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 576px) {
	.footer-widgets {
		grid-template-columns: 1fr;
	}
}

.footer-site-title {
	color: var(--white);
	margin-bottom: 15px;
}

.widget-title {
	color: var(--white);
	font-size: 1.2rem;
	margin-bottom: 20px;
}

.footer-column a {
	color: #cccccc;
}

.footer-column a:hover {
	color: var(--primary-color);
}

.footer-column ul li {
	margin-bottom: 10px;
}

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

.social-icon {
	width: 40px;
	height: 40px;
	background: #333333;
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-weight: bold;
}

.social-icon:hover {
	background: var(--primary-color);
	color: var(--white);
}

.newsletter-form {
	display: flex;
	margin-top: 15px;
}

.newsletter-form input {
	flex: 1;
	padding: 10px 15px;
	border: none;
	border-radius: 4px 0 0 4px;
	outline: none;
}

.newsletter-form button {
	border-radius: 0 4px 4px 0;
}

.site-info {
	background-color: #111111;
	padding: 20px 0;
	text-align: center;
	font-size: 0.9rem;
}

.site-info-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media (max-width: 768px) {
	.site-info-container {
		flex-direction: column;
		gap: 10px;
	}
}
