/**
 * Single Business Page Styles
 * 
 * @package Pachamama
 * @version 1.1.0
 */

/* ========================================
   BUSINESS HERO
   ======================================== */

.business-hero {
	background: linear-gradient(135deg, #f8faf9 0%, #ffffff 100%);
	padding: 140px 20px 60px;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

.business-hero .breadcrumbs {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 40px;
	padding: 0 40px;
}

.hero-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
	display: grid;
	grid-template-columns: 280px 1fr 320px;
	gap: 48px;
	align-items: start;
}

.business-hero .hero-image {
	position: sticky;
	top: 100px;
}

.business-hero .profile-image {
	width: 280px;
	height: 280px;
	aspect-ratio: 1 / 1;
	border-radius: var(--radius-lg);
	background: var(--white);
	box-shadow: var(--shadow-lg);
}

.business-name {
	font-family: var(--font-heading);
	font-size: 42px;
	font-weight: var(--weight-bold);
	color: var(--deep-forest);
	line-height: 1.2;
	margin: 0 0 8px;
}

.business-subtitle {
	font-size: 18px;
	color: var(--mid-text);
	margin: 0;
}

.business-excerpt {
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-secondary);
	margin: 20px 0;
}

.business-excerpt p {
	margin: 0;
}

.info-grid {
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	margin-bottom: 32px;
}


/* ========================================
   MAIN CONTENT
   ======================================== */

/* ========================================
   SIDEBAR
   ======================================== */

.sidebar-card {
	margin-bottom: 24px;
}

.sidebar-card:last-child {
	margin-bottom: 0;
}

.hours-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.hours-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
}

.hours-day {
	color: var(--dark-text);
	font-weight: var(--weight-medium);
}

.hours-time {
	color: var(--mid-text);
}

.hours-closed {
	color: var(--light-text);
	font-style: italic;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1100px) {
	.hero-content {
		grid-template-columns: 220px 1fr;
		gap: 32px;
	}
	
	.business-hero .profile-image {
		width: 220px;
		height: 220px;
	}
}

@media (max-width: 900px) {
	.hero-content {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	
	.business-hero .hero-image {
		position: static;
		margin: 0 auto;
	}
	
	.business-hero .profile-image {
		width: 200px;
		height: 200px;
		margin: 0 auto;
	}
	
	.business-name {
		font-size: 32px;
	}
	
}

@media (max-width: 600px) {
	.business-hero .breadcrumbs {
		padding: 0 20px;
	}
	
	.hero-content {
		padding: 0 20px;
	}
}
