/* Custom styles for Netreplica - works with Bootstrap */

/* Beta Announcement Banner */
.beta-announcement {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 12px 20px;
	text-align: center;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.beta-badge {
	background-color: rgba(255, 255, 255, 0.3);
	color: #ffffff;
	font-weight: 700;
	font-size: 0.75rem;
	padding: 4px 8px;
	border-radius: 4px;
	margin-right: 12px;
	letter-spacing: 1px;
}

.beta-text {
	color: #ffffff;
	font-size: 1rem;
	font-weight: 500;
}

.beta-link {
	color: #ffffff;
	font-weight: 700;
	text-decoration: underline;
	transition: opacity 0.2s ease;
}

.beta-link:hover {
	color: #ffffff;
	opacity: 0.8;
}

/* Responsive adjustments for beta banner */
@media (max-width: 768px) {
	.beta-announcement {
		padding: 10px 15px;
	}

	.beta-text {
		font-size: 0.9rem;
	}

	.beta-badge {
		display: block;
		margin-bottom: 8px;
		margin-right: 0;
	}
}

/* Hero logo styling */
.hero-logo {
	max-width: 400px;
	height: auto;
}

/* Command line styling */
.command-line {
	font-family: 'Courier New', Courier, monospace;
	letter-spacing: 0.5px;
}

/* Footer styling (combined with about section) */
.footer {
	background-color: #000000;
}

.footer h3 {
	font-size: 2rem;
	font-weight: 600;
	color: #ffffff;
}

.footer .lead {
	font-size: 1.25rem;
	color: #cccccc;
}

.footer p {
	font-size: 1.1rem;
	color: #aaaaaa;
	line-height: 1.8;
}

.footer-link {
	color: #6ea8fe;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s ease;
}

.footer-link:hover {
	color: #9ec5fe;
	text-decoration: underline;
}

/* Social media icons spacing */
.social-media {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.social-media a {
	color: #FFFFFF;
	font-size: 24px;
	margin: 0 10px;
}

/* Product section styles */
.product-section {
	min-height: 400px;
}

.product-section .product-image {
	position: relative;
	overflow: hidden;
}

.product-section .product-image img {
	transition: transform 0.3s ease;
}

.product-section .product-image:hover img {
	transform: scale(1.05);
}

.product-section .product-content h2 {
	font-size: 2.5rem;
	font-weight: bold;
	color: #333;
}

.product-section .product-content h4 {
	font-size: 1.25rem;
	font-weight: 400;
}

.product-section .product-content .lead {
	font-size: 1.1rem;
	line-height: 1.6;
	color: #555;
}

/* Responsive adjustments for product sections */
@media (max-width: 991px) {
	.product-section .product-content {
		text-align: center;
	}

	.product-section .product-content h2 {
		font-size: 2rem;
	}
}

/* Modal styling for image enlargement */
#graphiteModal .modal-dialog {
	max-width: 90vw;
}

#graphiteModal .modal-content {
	background-color: rgba(0, 0, 0, 0.95) !important;
}

#graphiteModal .modal-header {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 1050;
}

#graphiteModal .btn-close {
	opacity: 0.8;
	filter: brightness(0) invert(1);
}

#graphiteModal .btn-close:hover {
	opacity: 1;
}

#graphiteModal .modal-body img {
	max-height: 85vh;
	width: auto;
	margin: 0 auto;
}