/*
Theme Name: Somers Audio Dark
Theme URI: https://somersaudio.com
Author: Somers
Description: Dark techy minimal child theme of Twenty Twenty-Five for SomersAudio.com
Template: twentytwentyfive
Version: 1.0.0
Requires at least: 6.7
Requires PHP: 7.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* ============================================
   SOMERS AUDIO - DARK THEME CUSTOM STYLES
   ============================================ */

/* --- App Card Styles --- */
.app-card {
	background: #1a1a1a;
	border: 1px solid #2a2a2a;
	border-radius: 12px;
	padding: 2rem;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.app-card:hover {
	border-color: #D4A843;
	transform: translateY(-2px);
}

.app-card h3 {
	color: #D4A843 !important;
	margin-bottom: 0.5rem;
}

.app-card .platform-badge {
	display: inline-block;
	background: #2a2a2a;
	color: #cccccc;
	font-size: 0.75rem;
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	margin-right: 0.5rem;
	font-family: "Fira Code", monospace;
	letter-spacing: 0.5px;
}

/* --- Download Button --- */
.download-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: #D4A843 !important;
	color: #0d0d0d !important;
	border: none !important;
	border-radius: 8px;
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none !important;
	transition: background 0.2s ease;
	cursor: pointer;
}

.download-btn:hover {
	background: #e0ba5a !important;
	color: #0d0d0d !important;
}

.download-btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: transparent !important;
	color: #D4A843 !important;
	border: 1px solid #D4A843 !important;
	border-radius: 8px;
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none !important;
	transition: all 0.2s ease;
	cursor: pointer;
}

.download-btn-outline:hover {
	background: rgba(212, 168, 67, 0.1) !important;
}

/* --- Version Badge --- */
.version-badge {
	display: inline-block;
	background: #2a2a2a;
	color: #D4A843;
	font-family: "Fira Code", monospace;
	font-size: 0.8rem;
	padding: 0.2rem 0.6rem;
	border-radius: 6px;
	border: 1px solid #3a3a3a;
}

/* --- Changelog Section --- */
.changelog-section {
	background: #1a1a1a;
	border: 1px solid #2a2a2a;
	border-radius: 12px;
	padding: 1.5rem 2rem;
	margin-top: 1.5rem;
}

.changelog-section h3 {
	color: #D4A843 !important;
	font-size: 1rem;
	margin-bottom: 1rem;
}

.changelog-entry {
	border-left: 2px solid #D4A843;
	padding-left: 1rem;
	margin-bottom: 1rem;
}

.changelog-entry .version {
	font-family: "Fira Code", monospace;
	color: #D4A843;
	font-weight: 600;
}

.changelog-entry .date {
	color: #686868;
	font-size: 0.85rem;
}

/* --- Screenshot Gallery --- */
.screenshot-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1rem;
	margin-top: 1.5rem;
}

.screenshot-gallery img {
	border-radius: 8px;
	border: 1px solid #2a2a2a;
	width: 100%;
	height: auto;
	transition: border-color 0.2s ease;
}

.screenshot-gallery img:hover {
	border-color: #D4A843;
}

/* --- Section Separator --- */
.sa-separator {
	border: none;
	border-top: 1px solid #2a2a2a;
	margin: 3rem 0;
}

/* --- About Section --- */
.about-section {
	text-align: center;
	padding: 3rem 1rem;
}

.about-section h2 {
	color: #D4A843 !important;
}

/* --- Contact Page --- */
.contact-email {
	font-family: "Fira Code", monospace;
	color: #D4A843;
	font-size: 1.1rem;
}

.contact-email a {
	color: #D4A843 !important;
	text-decoration: none !important;
}

.contact-email a:hover {
	text-decoration: underline !important;
}

/* --- Footer --- */
.sa-footer {
	text-align: center;
	padding: 2rem 0;
	color: #686868;
	font-size: 0.85rem;
	border-top: 1px solid #2a2a2a;
}

/* --- Responsive --- */
@media (max-width: 768px) {
	.app-card {
		padding: 1.5rem;
	}

	.screenshot-gallery {
		grid-template-columns: 1fr;
	}
}
