/* About Page Specific Styles */

.about-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 3rem 2rem;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

/* Left Column - Bio */
.bio-column {
	background: #e8e8e8;
	padding: 3rem;
	border-radius: 8px;
}

.bio-content h1 {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 3px solid #00bcd4;
}

.bio-text {
	font-size: 15px;
	line-height: 1.8;
	color: #333;
}

.bio-text h3 {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 2rem;
	margin-bottom: 0.5rem;
	color: #666;
}

.bio-text p {
	margin-bottom: 1.5rem;
}

/* Right Column - Widgets */
.widgets-column {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.widget {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Gallery Widget */
.gallery-widget {
	grid-column: 1;
	aspect-ratio: 1;
	position: relative;
}

.gallery-widget .widget-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gallery-controls {
	position: absolute;
	bottom: 1rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.75rem;
}

.gallery-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: #666;
	transition: all 0.3s ease;
}

.gallery-icon:hover {
	background: white;
	transform: scale(1.1);
	color: #00bcd4;
}

/* Toolkit Widget */
.toolkit-widget {
	grid-column: 2;
	grid-row: 1;
	aspect-ratio: 1;
	padding: 2rem;
	background: #f5f5f5;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.toolkit-widget h3 {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 2rem;
	color: #666;
}

.toolkit-icons {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	width: 100%;
	max-width: 200px;
}

.toolkit-icons i {
	font-size: 32px;
	color: #333;
	transition: all 0.3s ease;
}

.toolkit-icons i:hover {
	color: #00bcd4;
	transform: scale(1.2);
}

/* Obsession Widget */
.obsession-widget {
	grid-column: 1;
	aspect-ratio: 4/3;
	position: relative;
}

.obsession-widget .widget-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.widget-label {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: white;
	padding: 0.5rem 1rem;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	border-radius: 4px;
}

.obsession-widget h3 {
	position: absolute;
	bottom: 1rem;
	left: 1rem;
	color: white;
	font-size: 24px;
	font-weight: 600;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Song Widget */
.song-widget {
	grid-column: 2;
	aspect-ratio: 4/3;
	background: #1a1a1a;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
}

.song-widget .widget-label {
	position: static;
	background: #00bcd4;
	color: white;
	margin-bottom: 1rem;
	text-align: center;
}

.song-info {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
	flex: 1;
}

.album-art {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 4px;
}

.song-details {
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: white;
}

.song-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.song-artist {
	font-size: 13px;
	color: #999;
}

.player-controls {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 1rem;
	border-top: 1px solid #333;
}

.player-controls button {
	background: none;
	border: none;
	color: white;
	font-size: 16px;
	cursor: pointer;
	transition: color 0.3s ease;
}

.player-controls button:hover {
	color: #00bcd4;
}

/* Say Hi Widget */
.sayhi-widget {
	grid-column: 1 / -1;
	padding: 2.5rem;
	background: #f5f5f5;
	text-align: center;
}

.sayhi-widget h2 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #333;
}

.sayhi-widget p {
	font-size: 15px;
	line-height: 1.6;
	color: #666;
	margin-bottom: 1rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.email-prompt {
	font-weight: 600;
	color: #333;
	margin-top: 1.5rem !important;
}

.btn-send-message {
	display: inline-block;
	margin-top: 1.5rem;
	padding: 1rem 2.5rem;
	background: #00bcd4;
	color: white;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 1px;
	transition: all 0.3s ease;
}

.btn-send-message:hover {
	background: #00a5bd;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 188, 212, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
	.about-grid {
		grid-template-columns: 1fr;
	}

	.widgets-column {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.about-container {
		padding: 2rem 1rem;
	}

	.bio-column {
		padding: 2rem;
	}

	.widgets-column {
		grid-template-columns: 1fr;
	}

	.gallery-widget,
	.toolkit-widget,
	.obsession-widget,
	.song-widget {
		grid-column: 1;
	}
}
