/**
 * Common Profile Styles
 * Shared styles for practitioner and teacher profiles
 * 
 * @package Pachamama
 * @version 1.1.0
 */

/* ========================================
   BREADCRUMBS
   ======================================== */

.breadcrumbs {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	color: var(--mid-text);
	margin-bottom: 32px;
}

.breadcrumbs a {
	color: var(--mid-text);
	text-decoration: none;
	transition: color 0.2s;
}

.breadcrumbs a:hover {
	color: var(--deep-forest);
}

.breadcrumbs span {
	color: var(--mid-text);
}

/* ========================================
   PROFILE IMAGE & BADGE
   ======================================== */

.profile-image {
	position: relative;
	width: 100%;
	aspect-ratio: 3/4;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.verified-badge {
	position: absolute;
	bottom: 12px;
	right: 12px;
	background: white;
	color: #2d6a5f;
	font-size: 13px;
	font-weight: 600;
	padding: 6px 12px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	gap: 6px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.verified-badge svg {
	width: 14px;
	height: 14px;
}

/* ========================================
   HERO INFO LAYOUT
   ======================================== */

.hero-info {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.hero-header {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* ========================================
   TAGS ROW
   ======================================== */

.tags-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.profile-tag {
	font-size: 14px;
	font-weight: 500;
	padding: 6px 14px;
	border-radius: 20px;
}

.method-tag {
	background: #e8f4f2;
	color: #2d6a5f;
}

.specialty-tag {
	background: rgba(184, 122, 75, 0.1);
	color: #b87a4b;
}

.audience-tag {
	background: #f3e5f5;
	color: #7b1fa2;
}

/* ========================================
   YEARS OF EXPERIENCE
   ======================================== */

.years-experience {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 12px 0;
	color: var(--text-secondary);
	font-size: 15px;
}

.experience-icon {
	flex-shrink: 0;
	color: var(--color-primary);
}

/* ========================================
   INFO GRID
   ======================================== */

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

.info-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.info-icon {
	width: 20px;
	height: 20px;
	color: #2d6a5f;
	flex-shrink: 0;
	margin-top: 2px;
}

.info-content {
	flex: 1;
}

.info-label {
	font-size: 14px;
	color: #9ca3af;
	margin-bottom: 4px;
}

.info-value {
	font-size: 16px;
	font-weight: 500;
	color: #1a3a33;
}

.info-value a {
	color: #2d6a5f;
	text-decoration: none;
	transition: color 0.2s;
}

.info-value a:hover {
	color: #245549;
}

/* ========================================
   CTA BUTTONS
   ======================================== */

.cta-buttons {
	display: flex;
	gap: 12px;
}

.btn-cta-primary,
.btn-cta-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 20px;
	font-size: 15px;
	font-weight: 600;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.2s;
	cursor: pointer;
	border: none;
}

.btn-cta-primary {
	background: #2d6a5f;
	color: white;
}

.btn-cta-primary:hover {
	background: #245549;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(45, 106, 95, 0.3);
}

.btn-cta-secondary {
	background: white;
	color: #2d6a5f;
	border: 2px solid #2d6a5f;
}

.btn-cta-secondary:hover {
	background: #f8faf9;
	transform: translateY(-1px);
}

/* ========================================
   HERO CONTACT SECTION
   ======================================== */

.hero-contact {
	background: white;
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.hero-contact .contact-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--deep-forest);
	margin-bottom: 20px;
}

.contact-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding-bottom: 16px;
	border-bottom: 1px solid #f3f4f6;
}

.contact-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.contact-icon {
	width: 18px;
	height: 18px;
	color: #2d6a5f;
	flex-shrink: 0;
	margin-top: 2px;
}

.contact-content {
	flex: 1;
}

.contact-label {
	font-size: 14px;
	color: #9ca3af;
	margin-bottom: 4px;
}

.contact-value {
	font-size: 14px;
	color: #1a3a33;
	font-weight: 500;
}

.contact-value a {
	color: #1a3a33;
	text-decoration: none;
	transition: color 0.2s;
}

.contact-value a:hover {
	color: #2d6a5f;
}

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

.main-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 20px;
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 48px;
	align-items: start;
}

.content-column {
	min-width: 0;
}

.content-section {
	margin-bottom: 48px;
}

.section-title {
	font-size: 28px;
	font-weight: 700;
	color: #1a3a33;
	margin: 0 0 24px;
}

.section-text {
	font-size: 16px;
	line-height: 1.7;
	color: #4b5563;
}

.section-text p {
	margin-bottom: 16px;
}

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

.sidebar {
	display: flex;
	flex-direction: column;
	gap: 24px;
	position: sticky;
	top: 100px;
}

.sidebar-card {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 24px;
}

.sidebar-title {
	font-size: 18px;
	font-weight: 600;
	color: #1a3a33;
	margin: 0 0 20px;
}

/* ========================================
   RESPONSIVE - COMMON
   ======================================== */

@media (max-width: 1024px) {
	.main-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.sidebar {
		position: static;
		max-width: 600px;
	}
	
	.hero-contact {
		grid-column: 1 / -1;
	}
}

@media (max-width: 768px) {
	.info-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	.cta-buttons {
		flex-direction: column;
	}
	
	.btn-cta-primary,
	.btn-cta-secondary {
		width: 100%;
		justify-content: center;
	}
	
	.main-content {
		padding: 40px 16px;
	}
	
	.section-title {
		font-size: 24px;
	}
}
