/**
 * Naked Baits Team Application form styles
 */

.nbta-page {
	padding: 1.5rem 1rem 3rem;
}

@media (min-width: 768px) {
	.nbta-page {
		padding: 2.5rem 1.5rem 4rem;
	}
}

.nbta-team-app {
	max-width: 760px;
	margin: 0 auto;
	font-family: "Exo 2", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	color: #1a1a1a;
}

.nbta-team-app__header {
	margin-bottom: 1.75rem;
	padding-top: 0.5rem;
}

@media (min-width: 768px) {
	.nbta-team-app__header {
		margin-bottom: 2rem;
		padding-top: 1rem;
	}
}

.nbta-team-app__title {
	font-family: Impact, "Arial Narrow", sans-serif;
	font-size: clamp(1.65rem, 5vw, 2.35rem);
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 0.75rem;
	color: #76001f;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.nbta-team-app__intro {
	margin: 0;
	color: #555;
	line-height: 1.6;
	font-size: 1rem;
}

.nbta-form {
	background: #fff;
	border: 1px solid #e6e0e0;
	border-radius: 10px;
	box-shadow: 0 8px 28px rgba(18, 12, 12, 0.06);
	overflow: hidden;
}

.nbta-section {
	padding: 1.25rem 1rem;
	border-bottom: 1px solid #efe9e9;
}

@media (min-width: 768px) {
	.nbta-section {
		padding: 1.5rem 1.75rem;
	}
}

.nbta-section:last-of-type {
	border-bottom: 0;
}

.nbta-section__title {
	margin: 0 0 1rem;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #76001f;
}

.nbta-notice {
	padding: 0.9rem 1rem;
	border-radius: 8px;
	margin: 0 0 1.25rem;
	font-weight: 600;
	font-size: 0.9375rem;
}

.nbta-notice--success {
	background: #edf5e8;
	border: 1px solid #627d47;
	color: #1a3310;
}

.nbta-notice--error {
	background: #fdeef1;
	border: 1px solid #76001f;
	color: #430011;
}

.nbta-form-grid {
	display: grid;
	gap: 1rem;
}

@media (min-width: 640px) {
	.nbta-form-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.nbta-field {
	display: grid;
	gap: 0.4rem;
	margin-bottom: 1rem;
}

.nbta-field:last-child {
	margin-bottom: 0;
}

.nbta-field label {
	font-weight: 600;
	font-size: 0.9375rem;
	line-height: 1.35;
	color: #222;
}

.nbta-required {
	color: #a71d39;
}

.nbta-field input[type="text"],
.nbta-field input[type="email"],
.nbta-field input[type="number"],
.nbta-field textarea {
	width: 100%;
	padding: 0.8rem 0.9rem;
	border: 1px solid #cfc7c7;
	border-radius: 6px;
	background: #faf9f9;
	font-size: 1rem;
	line-height: 1.4;
	box-sizing: border-box;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
}

.nbta-field textarea {
	resize: vertical;
	min-height: 6rem;
}

.nbta-field input:focus,
.nbta-field textarea:focus {
	outline: none;
	border-color: #76001f;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(118, 0, 31, 0.12);
}

.nbta-field--file {
	padding: 1rem;
	border: 1px dashed #c9bdbd;
	border-radius: 8px;
	background: #fcfafa;
}

.nbta-field--file label {
	margin-bottom: 0.25rem;
}

.nbta-field input[type="file"] {
	width: 100%;
	padding: 0.65rem 0;
	border: 0;
	background: transparent;
	font-size: 0.9375rem;
}

.nbta-help {
	margin: 0.35rem 0 0;
	font-size: 0.875rem;
	color: #666;
	line-height: 1.45;
}

.nbta-field--honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	pointer-events: none !important;
}

.nbta-actions {
	padding: 1.25rem 1rem 1.5rem;
	background: #f8f5f5;
}

@media (min-width: 768px) {
	.nbta-actions {
		padding: 1.5rem 1.75rem 1.75rem;
	}
}

.nbta-submit {
	display: block;
	width: 100%;
	padding: 0.95rem 1.5rem;
	background: #76001f;
	color: #fff;
	border: 0;
	border-radius: 6px;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.15s ease;
}

@media (min-width: 640px) {
	.nbta-submit {
		display: inline-block;
		width: auto;
		min-width: 220px;
	}
}

.nbta-submit:hover,
.nbta-submit:focus {
	background: #a71d39;
}

.nbta-submit:active {
	transform: translateY(1px);
}

/* Flatsome / theme page spacing */
body.nbta-application-page #main,
body.nbta-application-page .content-area {
	padding-top: 0;
}

body.nbta-application-page .page-title {
	display: none;
}

body.nbta-application-page #wrapper {
	overflow-x: hidden;
}

@media (max-width: 849px) {
	body.nbta-application-page .nbta-page {
		padding-top: 1.25rem;
	}

	body.nbta-application-page .nbta-team-app__title {
		font-size: 1.5rem;
	}

	body.nbta-application-page .nbta-section {
		padding: 1.1rem 0.9rem;
	}

	body.nbta-application-page .nbta-field input[type="text"],
	body.nbta-application-page .nbta-field input[type="email"],
	body.nbta-application-page .nbta-field input[type="number"],
	body.nbta-application-page .nbta-field textarea {
		font-size: 16px;
	}
}
