/*!
Theme Name: Never Not Building
Theme URI: https://nevernotbuilding.com
Author: Never Not Building
Author URI: https://nevernotbuilding.com
Description: Never Not Building
Version: 1.0.0
Tested up to: 6.3
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: never-not-building
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

*/

/* 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;
}

/* Coming Soon Page Styles */
.coming-soon-page {
	background: #000000;
	color: #ffffff;
	min-height: 100vh;
	padding: 0;
	margin: 0;
}

.coming-soon-page .site-header,
.coming-soon-page .site-footer {
	display: none;
}

.coming-soon-container {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 40px 20px;
	position: relative;
}

/* Logo Styles */
.logo-container {
	position: absolute;
	top: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
}

.coming-soon-logo {
	height: 40px;
	width: auto;
	filter: brightness(1);
	transition: all 0.3s ease;
}

.coming-soon-logo:hover {
	filter: brightness(1.2);
	transform: scale(1.05);
}

.coming-soon-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	max-width: 1200px;
	width: 100%;
	align-items: center;
}

.coming-soon-text {
	max-width: 600px;
}

.coming-soon-title {
	font-size: clamp(2rem, 6vw, 4rem);
	font-weight: 900;
	color: #ff4444;
	margin: 0 0 30px 0;
	line-height: 0.9;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	background: linear-gradient(135deg, #ff4444, #ff6666);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.coming-soon-description {
	margin-bottom: 40px;
}

.coming-soon-description p {
	font-size: 1.125rem;
	line-height: 1.7;
	margin-bottom: 20px;
	color: #e0e0e0;
}

.coming-soon-description p:last-child {
	margin-bottom: 0;
}

/* Social Links */
.social-links {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: #ffffff;
	text-decoration: none;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
	background: #ff4444;
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(255, 68, 68, 0.3);
}

.social-link svg {
	width: 24px;
	height: 24px;
}

/* Profile Image */
.coming-soon-image {
	display: flex;
	justify-content: center;
	align-items: center;
}

.profile-image {
	width: 100%;
	height: 100%;
	filter: grayscale(20%);
	transition: filter 0.3s ease;
	border-radius: 60%;
    overflow: hidden;
    border: 4px solid #ff4444;
}

.profile-image:hover {
	filter: grayscale(0%);
}

/* Scroll Indicator */
.scroll-indicator {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	color: #888;
	animation: bounce 2s infinite;
}

.scroll-text {
	display: block;
	font-size: 0.875rem;
	letter-spacing: 2px;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.scroll-arrow {
	font-size: 1.5rem;
	animation: arrow-bounce 1.5s ease-in-out infinite;
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateX(-50%) translateY(0);
	}
	40% {
		transform: translateX(-50%) translateY(-5px);
	}
	60% {
		transform: translateX(-50%) translateY(-3px);
	}
}

@keyframes arrow-bounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(5px);
	}
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
	.logo-container {
		top: 30px;
	}
	
	.coming-soon-logo {
		height: 35px;
	}
	
	.coming-soon-content {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
		margin-top:62px
	}
	
	.coming-soon-title {
		font-size: clamp(2.5rem, 12vw, 4rem);
		margin-bottom: 20px;
	}
	
	.coming-soon-description p {
		font-size: 1rem;
	}
	
	.social-links {
		justify-content: center;
		gap: 15px;
	}
	
	.social-link {
		width: 45px;
		height: 45px;
	}
	
	.social-link svg {
		width: 20px;
		height: 20px;
	}
	
	.coming-soon-container {
		padding: 20px 15px;
	}
}

@media (max-width: 480px) {
	.logo-container {
		top: 20px;
	}
	
	.coming-soon-logo {
		height: 30px;
	}
	
	.coming-soon-title {
		font-size: clamp(2rem, 15vw, 3rem);
	}
	
	.coming-soon-description p {
		font-size: 0.9rem;
	}
	
	.social-links {
		gap: 12px;
	}
	
	.social-link {
		width: 40px;
		height: 40px;
	}
	
	.social-link svg {
		width: 18px;
		height: 18px;
	}
}

/* Dark mode and accessibility improvements */
@media (prefers-reduced-motion: reduce) {
	.scroll-indicator,
	.scroll-arrow {
		animation: none;
	}
	
	.social-link {
		transition: none;
	}
}

/* Focus states for accessibility */
.social-link:focus {
	outline: 2px solid #ff4444;
	outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
	.coming-soon-title {
		color: #ffffff;
		-webkit-text-fill-color: #ffffff;
	}
	
	.social-link {
		border: 2px solid #ffffff;
	}
}
