/**
 * Theme Name: Arptreme Theme 10
 * Main Stylesheet
 *
 * @package Arptreme_Theme_10
 * @since 1.0.0
 */

/* Reset and Base Styles */
* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
}

/* Site Structure */
.site {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.site-content {
	flex: 1;
}

/* Header */
.site-header {
	padding: 1rem 0;
	background-color: #fff;
	border-bottom: 1px solid #e0e0e0;
}

.site-header__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

/* Main Content */
.site-main {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 1rem;
}

/* Footer */
.site-footer {
	padding: 4rem 0 3rem;
	background: #1a1a1a;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: auto;
}

.site-footer__container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
}

.site-footer__content {
	text-align: center;
	color: rgba(255, 255, 255, 0.7);
}

.site-footer__copyright {
	font-size: 0.9375rem;
	margin: 0 0 0.5rem 0;
	font-weight: 400;
}

.site-footer__rights {
	font-size: 0.875rem;
	margin: 0;
	color: rgba(255, 255, 255, 0.5);
}

.site-footer a {
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	letter-spacing: 0.05em;
}

.site-footer a:hover {
	color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 767px) {
	.site-footer {
		padding: 3rem 0 2rem;
	}
	
	.site-footer__container {
		padding: 0 1rem;
	}
	
	.site-footer__copyright,
	.site-footer__rights {
		font-size: 0.875rem;
	}
}

/* Accessibility */
.skip-link {
	position: absolute;
	left: -9999px;
	z-index: 999;
}

.skip-link:focus {
	left: 6px;
	top: 7px;
	text-decoration: none;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
	.site-main {
		padding: 1rem;
	}
}
