/* Little Giggles Child Theme - custom styling */

.lg-page-wrap {
	max-width: 1100px;
	margin: 0 auto;
	padding: 40px 20px;
}

.lg-page-hero img {
	width: 100%;
	height: auto;
	max-height: 420px;
	object-fit: cover;
	border-radius: 12px;
	margin-bottom: 28px;
}

.lg-hero-banner {
	text-align: center;
	padding: 60px 20px;
	background: #fdf3ea;
}
.lg-hero-banner h1 { margin-bottom: 8px; }

.lg-section-title {
	margin-top: 48px;
	margin-bottom: 16px;
	text-align: center;
}

/* Gallery */
.lg-gallery-grid,
.lg-services-grid {
	display: grid;
	gap: 20px;
	margin-top: 20px;
}
.lg-columns-2 { grid-template-columns: repeat(2, 1fr); }
.lg-columns-3 { grid-template-columns: repeat(3, 1fr); }
.lg-columns-4 { grid-template-columns: repeat(4, 1fr); }

.lg-gallery-item img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	border-radius: 8px;
	display: block;
}
.lg-caption {
	text-align: center;
	margin-top: 8px;
	font-weight: 600;
}

/* Services */
.lg-service-card {
	text-align: center;
	padding: 20px;
	border: 1px solid #eee;
	border-radius: 10px;
	background: #fff;
}
.lg-service-card img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 12px;
}

/* Contact */
.lg-contact-columns {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 32px;
	margin-top: 20px;
}
.lg-contact-info p { margin: 6px 0; }
.lg-map iframe {
	width: 100%;
	height: 300px;
	border: 0;
	border-radius: 8px;
	margin-top: 16px;
}

/* Mobile */
@media (max-width: 782px) {
	.lg-gallery-grid,
	.lg-services-grid { grid-template-columns: repeat(2, 1fr) !important; }
	.lg-contact-columns { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
	.lg-gallery-grid,
	.lg-services-grid { grid-template-columns: 1fr !important; }
}
