﻿body {
	background-color: #272727;
	margin: 0;
	font-family: 'Quicksand', sans-serif;
}

.nav-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 2rem;
	background-color: #272727;
	padding-bottom: 0.5rem;
}

.logo {
	height: 42px;
}

.nav-bar {
	display: flex;
	gap: 2rem;
}

.nav-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #66c6ff; /* OpusWorks brand blue */
	text-decoration: none;
	font-size: 16px;
	letter-spacing: 0.4px;
	transition: color 0.3s ease;
}

.nav-icon {
	width: 16px;
	height: 16px;
	stroke: #66c6ff;
	vertical-align: middle;
	transition: stroke 0.3s ease;
}

.nav-item:hover {
	color: #ffffff; /* brighter hover blue */
}

	.nav-item:hover .nav-icon {
		stroke: #ffffff;
	}

.nav-item.current {
	color: #ffffff;
}

	.nav-item.current .nav-icon {
		stroke: #ffffff;
	}

.tagline-banner {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0px;
	margin-bottom: 0.5rem; /* tightened to bring subtext closer */
	font-size: 16px;
	color: silver;
	font-weight: bold;
	letter-spacing: 0.4px;
	text-align: center;
}

.tag-icon {
	width: 16px;
	height: 16px;
	stroke: #66c6ff;
	vertical-align: middle;
	position: relative;
	top: -1px;
}

.tag-key {
	color: #cccccc;
}

.tagline-subtext {
	text-align: center;
	font-size: 1.1rem;
	color: silver;
	margin-top: -.5rem;
	margin-bottom: 1.2rem;
}

p {
	font-size: 1.1rem;
	color: #6dc0fb;
	margin-top: 5px;
}

h1 {
	font-size: 1.3rem;
	font-weight: bold;
	color: #cccccc;
	margin: 0px;
}

h2 {
	font-size: 1.2rem;
	font-weight: bold;
	color: #cccccc;
	margin: 0px;
}

span {
	font-size: 1.0rem;
	color: #6dc0fb;
}

.image-container {
	position: relative;
	width: 100%;
	max-width: 500px;
	border-radius: 20px 0px 0px 20px;
	overflow: hidden;
}

.cta-button {
	display: inline-block;
	margin-top: 0px;
	padding: 0.6rem 1.5rem;
	border-radius: 30px;
	border: none; 
	background-color: #38b6ff; /* Soft glowing blue */
	color: #1a1a1a; /* Dark text for contrast */
	font-weight: bold;
	font-size: 1rem;
	text-decoration: none;
	transition: background-color 0.3s ease, transform 0.2s ease;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

	.cta-button:hover {
		background-color: #62cfff;
		transform: translateY(-2px);
		cursor: pointer; 
	}

.background-image {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: auto;
	opacity: 0.7;
	pointer-events: none;
	z-index: 0;
	mix-blend-mode: screen;
}

.subscription-select {
	background-color: #1a1a1a;
	color: #ffffff;
	border: 1px solid #444;
	border-radius: 8px;
	padding: 0.5rem 1rem;
	font-size: 1rem;
	width: 100%;
	max-width: 300px;
	appearance: none;
	outline: none;
	transition: border-color 0.3s ease;
}

	.subscription-select:focus {
		border-color: #1ea7fd;
	}

.form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: bold;
	color: #a5d7ff;
}

input[type="radio"] {
	appearance: none;
	width: 18px;
	height: 18px;
	border: 2px solid #00bfff;
	border-radius: 50%;
	outline: none;
	cursor: pointer;
	background-color: #1f1f1f;
	transition: all 0.2s ease-in-out;
	position: relative;
}

	input[type="radio"]::before {
		content: '';
		position: absolute;
		top: 3px;
		left: 3px;
		width: 8px;
		height: 8px;
		background-color: greenyellow;
		border-radius: 50%;
		transform: scale(0);
		transition: transform 0.2s ease-in-out;
	}

	input[type="radio"]:checked::before {
		transform: scale(1);
	}

	input[type="radio"]:hover {
		box-shadow: 0 0 5px #00bfff;
	}

input[type="checkbox"] {
	appearance: none;
	width: 18px;
	height: 18px;
	border: 2px solid #00bfff;
	border-radius: 4px; /* Slightly rounded corners */
	outline: none;
	cursor: pointer;
	background-color: #1f1f1f;
	transition: all 0.2s ease-in-out;
	position: relative;
}

	input[type="checkbox"]::before {
		content: '';
		position: absolute;
		top: 2px;
		left: 2px;
		width: 10px;
		height: 10px;
		background-color: greenyellow;
		transform: scale(0);
		transition: transform 0.2s ease-in-out;
		border-radius: 2px;
	}

	input[type="checkbox"]:checked::before {
		transform: scale(1);
	}

	input[type="checkbox"]:hover {
		box-shadow: 0 0 5px #00bfff;
	}

::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}

::-webkit-scrollbar-thumb {
	background-color: #419fd6; /* darker blue */
	border-radius: 10px;
	box-shadow: inset 0 0 4px rgba(0, 140, 200, 0.3);
}

	::-webkit-scrollbar-thumb:hover {
		background-color: #5ab4e8; /* still darker than original hover */
		box-shadow: inset 0 0 8px rgba(90, 180, 232, 0.5);
	}

::-webkit-scrollbar-track {
	background-color: #1f1f1f;
	border-radius: 10px;
}

::-webkit-scrollbar-corner {
	background-color: #1f1f1f;
}

input[type="email"],
input[type="password"],
input[type="text"] {
	padding: 0.4rem 1rem;
	border-radius: 30px;
	border: 2px solid #6dc0fb;
	width: 300px;
	font-size: 0.9rem;
	margin-right: 0.5rem;
	text-align: center;
	background-color: #1a1a1a;
	color: #ffffff;
	transition: all 0.3s ease;
	box-shadow: 0 0 8px rgba(109, 192, 251, 0.2);
}

	input[type="email"]:focus,
	input[type="password"]:focus,
	input[type="text"]:focus {
		outline: none;
		border-color: #8dd8ff;
		box-shadow: 0 0 16px rgba(109, 192, 251, 0.5);
	}

.submit-button {
	background: none;
	border: 2px solid #6dc0fb;
	color: #ffffff;
	padding: 0.4rem 1rem;
	font-size: 0.9rem;
	cursor: pointer;
	border-radius: 30px;
	transition: all 0.3s ease;
	box-shadow: 0 0 8px rgba(109, 192, 251, 0.3);
	white-space: nowrap;
}

	.submit-button:hover {
		background-color: rgba(255, 255, 255, 0.1);
		border-color: #8dd8ff;
		box-shadow: 0 0 16px rgba(109, 192, 251, 0.6);
	}

#ask-opus-button {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
	background-color: white; /* Optional background */
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	z-index: 9999;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s ease;
}

	#ask-opus-button:hover {
		transform: scale(1.1);
	}

	#ask-opus-button img {
		width: 80%;
		height: 80%;
	}