/*
Theme Name: Hanoi Seasons Garden
Theme URI: https://hanoiseasonsgarden.vn/
Author: LUMIERE Hanoi
Description: Theme cho dự án LUMIERE Hanoi Seasons Garden - Khu đô thị xanh mát tại Hà Nội. Thiết kế hiện đại với màu xanh lá đặc trưng (Dark Slate Grey, Dry Sage, Tom Thumb Green).
Requires at least: 6.4
Tested up to: 6.9
Requires PHP: 7.0
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hsg
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, wide-blocks, block-styles, style-variations, accessibility-ready, blog

== Description ==

Theme WordPress cho dự án LUMIERE Hanoi Seasons Garden. Thiết kế hiện đại với bảng màu xanh lá đặc trưng:
- Dark Slate Grey: #30413B
- Tom Thumb Green: #455F39
- Dry Sage: #B7BA9F

Features:
- Full Site Editing (FSE) compatible
- Custom color palette (Green & Sage theme)
- Block patterns for home page sections
- Responsive design
- Fast loading

== Installation ==

1. Upload the theme folder to `/wp-content/themes/`
2. Activate the theme through the 'Themes' menu in WordPress
3. Navigate to Appearance > Editor to customize

== Changelog ==

= 1.0 =
* Initial release - Hanoi Seasons Garden theme

== Resources ==

* Based on Twenty Twenty-Four theme
* Images from Unsplash.com (License: Unsplash License)
*/

/* HSG Custom Styles - Hanoi Seasons Garden Color Palette */
:root {
	--hsg-dark-slate: #30413B;
	--hsg-primary: #455F39;
	--hsg-primary-dark: #3A5230;
	--hsg-primary-light: #5A7A4D;
	--hsg-accent: #B7BA9F;
	--hsg-accent-light: #C8CBB0;
	--hsg-accent-dark: #A6AA90;
	--hsg-bg: #F5F6F0;
	--hsg-bg-light: #E8E9E3;
}

/* Base typography */
html {
	scroll-behavior: smooth;
}

/* Custom selection color */
::selection {
	background-color: var(--hsg-primary);
	color: #ffffff;
}

/* Section titles */
.section-title {
	position: relative;
	display: inline-block;
	padding-bottom: 1rem;
	color: var(--hsg-dark-slate);
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, var(--hsg-primary), var(--hsg-accent));
	border-radius: 2px;
}

/* Green accent bars */
.green-accent-bar {
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, var(--hsg-primary), var(--hsg-accent));
	border-radius: 2px;
}

/* Hero section background */
.wp-block-cover.hero-section {
	min-height: 100vh;
}

/* Feature box styling */
.feature-box {
	background: #ffffff;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 10px 40px rgba(48, 65, 59, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(69, 95, 57, 0.15);
}

/* Property card styling */
.property-card {
	border-radius: 16px;
	overflow: hidden;
	background: #ffffff;
	box-shadow: 0 5px 20px rgba(48, 65, 59, 0.08);
	transition: all 0.3s ease;
}

.property-card:hover {
	box-shadow: 0 15px 50px rgba(69, 95, 57, 0.15);
}

/* CTA buttons */
.wp-block-buttons .wp-block-button a {
	font-weight: 600;
	letter-spacing: 0.5px;
	border-radius: 8px;
}

/* Stats counter styling */
.stat-item {
	text-align: center;
	padding: 2rem;
}

.stat-number {
	font-size: 3rem;
	font-weight: 700;
	color: var(--hsg-primary);
	line-height: 1;
}

.stat-label {
	font-size: 1rem;
	color: var(--hsg-dark-slate);
	font-weight: 600;
	margin-top: 0.5rem;
}

/* Amenity icons grid */
.amenity-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.5rem;
}

.amenity-item {
	text-align: center;
	padding: 1.5rem;
	background: #ffffff;
	border-radius: 12px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(48, 65, 59, 0.06);
}

.amenity-item:hover {
	background: var(--hsg-bg-light);
	transform: scale(1.05);
}

/* Price tag styling */
.price-tag {
	background: linear-gradient(135deg, var(--hsg-accent), var(--hsg-accent-light));
	color: var(--hsg-dark-slate);
	font-weight: 700;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	display: inline-block;
}

/* Badge styling */
.badge {
	background: var(--hsg-primary);
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Form styling */
.contact-form input,
.contact-form textarea {
	border: 2px solid var(--hsg-accent);
	border-radius: 8px;
	padding: 0.875rem 1rem;
	transition: border-color 0.3s ease;
	background: #ffffff;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: var(--hsg-primary);
	outline: none;
	box-shadow: 0 0 0 3px rgba(69, 95, 57, 0.1);
}

/* Footer styling */
.site-footer {
	background: linear-gradient(135deg, var(--hsg-dark-slate) 0%, var(--hsg-primary-dark) 100%);
}

/* Floating contact button */
.floating-contact {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 9999;
}

.floating-contact .wp-block-button__link {
	border-radius: 50px;
	padding: 15px 25px;
	font-weight: 700;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Policy card styling */
.policy-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 8px 30px rgba(48, 65, 59, 0.08);
	transition: transform 0.3s ease;
}

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

/* Amenity card styling */
.amenity-card {
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(69, 95, 57, 0.12);
}

/* Product card styling */
.product-card {
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(48, 65, 59, 0.08);
	transition: all 0.3s ease;
}

.product-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(69, 95, 57, 0.12);
}

/* Location item styling */
.location-item {
	background: var(--hsg-bg-light);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.location-item:hover {
	background: var(--hsg-accent-light);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
	:root {
		--wp--preset--spacing--60: 3rem;
	}
	
	.feature-box,
	.policy-card,
	.amenity-card,
	.product-card {
		padding: 1.5rem;
		margin-bottom: 1rem;
	}
	
	.section-title::after {
		width: 60px;
		height: 3px;
	}
	
	.stat-number {
		font-size: 2rem;
	}
	
	.floating-contact {
		bottom: 10px;
		right: 10px;
	}
	
	.floating-contact .wp-block-button__link {
		padding: 12px 20px;
		font-size: 14px;
	}
}

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

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

/* Scroll indicator */
.scroll-indicator {
	animation: bounce 2s infinite;
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-10px);
	}
	60% {
		transform: translateY(-5px);
	}
}
