:root {
	--smash-green: #114735;
	--smash-yellow: #ffc62f;
	--smash-text-light: #eee;
}

body {
	background: #111;
	color: var(--smash-text-light);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.8rem); }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }
h2, h3, h4, h5, h6 {
	color: var(--smash-yellow);
	font-weight: bold;
}

h1 {
	color: var(--smash-text-light);
}

a {
	color: inherit;
}

a:hover {
	color: inherit;
}

a:visited {
	color: inherit;
}

.header .logo img {
	padding: .3em;
    box-sizing: border-box;
}

.content a {
	color: var(--smash-yellow);
}


.header {
	background: var(--smash-green);
}

.header ul li.top {
	color: var(--smash-yellow);
}

.header ul a {
	color: inherit;
}

.content section {
	max-width: 1024px;
}

/* survey segment — themes/smashandshake/segments/survey.php */
.survey {
	max-width: 420px;
	margin: 0 auto;
}
.survey-intro {
	margin-bottom: 1.5rem;
}
.survey-intro p {
	margin-top: 0.5rem;
	opacity: 0.85;
}
.survey-answers {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.survey-form {
	display: none;
	flex-direction: column;
	gap: 12px;
}
.survey-form.survey-form-open {
	display: flex;
}
.survey-form label {
	font-weight: 600;
	margin-bottom: -6px;
}
.survey-form input,
.survey-form textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid rgba(255, 198, 47, 0.35);
	border-radius: 4px;
	background: #1a1a1a;
	color: var(--smash-text-light);
	box-sizing: border-box;
}
.survey-btn {
	display: block;
	width: 100%;
	padding: 14px 20px;
	border: 2px solid var(--smash-yellow);
	border-radius: 4px;
	background: transparent;
	color: var(--smash-yellow);
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}
.survey-btn:hover {
	background: var(--smash-yellow);
	color: var(--smash-green);
}
.survey-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}
.survey-submit {
	margin-top: 4px;
}
.survey-status-error {
	color: #e74c3c;
	font-weight: 600;
}
.survey-status-ok {
	color: var(--smash-yellow);
	font-weight: 600;
}


































@media screen and (max-width: 1000px) {


	.content section {
		padding: .5em;
	}

	.survey {
		max-width: 100%;
	}
	.survey-btn {
		padding: 12px 16px;
		font-size: 0.95rem;
	}

}