/* ==========================================================================
   Feel the Bern Salsa — archival recreation
   Rebuilt from the 2021 Wayback capture of feelthebernsalsa.com.
   Original design by Dither (dithermade.com); theme "dithered".
   Original fonts were Typekit (proxima-nova / league-gothic / clarendon-urw);
   substituted here with Montserrat / League Gothic / Zilla Slab.
   ========================================================================== */

:root {
	--blue:  #327bb8;
	--red:   #9d2024;
	--navy:  #0a1f40;
	--ink:   #4d4d4d;
	--gray:  #cccccc;

	--display: "League Gothic", "Oswald", sans-serif;
	--slab:    "Zilla Slab", "Rockwell", serif;
	--body:    "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	background: var(--blue);
	font-family: var(--body);
	font-size: 100%;
	line-height: 1.5;
	color: var(--ink);
}

img { max-width: 100%; display: block; }

h1, h2, h3 { margin: 0; font-weight: normal; }

a { color: inherit; text-decoration: none; }

s { text-decoration: line-through; }

/* ---- Archival banner -------------------------------------------------- */
.archive-banner {
	background: var(--navy);
	color: #fff;
	font-family: var(--body);
	font-size: 0.82rem;
	line-height: 1.4;
	letter-spacing: 0.01em;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 6px 18px;
	padding: 10px 16px;
	text-align: center;
}
.archive-banner__pepper { margin-right: 4px; }
.archive-banner em { font-style: italic; opacity: 0.95; }
.archive-banner__link {
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	white-space: nowrap;
	transition: border-color 0.2s ease;
}
.archive-banner__link:hover { border-color: #fff; }
.archive-banner__link strong { font-weight: 700; }

/* ---- Header ----------------------------------------------------------- */
.site-header {
	text-align: center;
	margin: 40px auto 0;
	padding: 0 16px;
}
.site-header__logo {
	width: 85%;
	max-width: 600px;
	margin: 0 auto;
}
.tagline { margin-bottom: 60px; }
.tagline__title {
	color: #fff;
	font-family: var(--display);
	text-transform: uppercase;
	font-size: clamp(1.9rem, 6vw, 2.8rem);
	letter-spacing: 0.03em;
	margin: 30px 0 20px;
}
.tagline__stars {
	color: #fff;
	font-size: clamp(1.6rem, 5vw, 2.6rem);
	letter-spacing: 0.06em;
	margin: 0;
}

/* ---- Three steps ------------------------------------------------------ */
.steps {
	background: #fff;
	padding: 30px 0;
	border-top: solid 10px var(--red);
}
.steps__inner {
	width: 85%;
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 3.5%;
}
.step { flex: 1 1 250px; }
.step__title {
	font-family: var(--display);
	text-transform: uppercase;
	font-size: clamp(2.2rem, 5vw, 3.1rem);
	color: var(--navy);
	letter-spacing: 0.02em;
}
.step__num {
	font-family: var(--slab);
	font-weight: 700;
	font-size: 0.85em;
	color: var(--gray);
	transition: color 0.2s ease;
}
.step:hover .step__num { color: var(--red); }
.step__copy {
	color: var(--red);
	font-size: 1.15rem;
	margin-top: 10px;
}

/* ---- Product card ----------------------------------------------------- */
.product {
	min-height: 500px;
	background-position: 50% 50%;
	background-size: cover;
	margin-top: -10px;
	padding: 90px 20px 60px;
	color: #fff;
}
.product__text {
	max-width: 400px;
	margin: 0 auto;
	text-align: center;
	text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
}
.product__hot {
	font-family: var(--slab);
	font-weight: 600;
	font-size: clamp(1.8rem, 6vw, 3rem);
	margin: 0;
}
.product__name {
	font-family: var(--display);
	text-transform: uppercase;
	font-size: clamp(4.5rem, 22vw, 9rem);
	letter-spacing: 0.04em;
	line-height: 0.9;
	margin: 0;
}
.product__price {
	margin: 4px 0 0;
	display: flex;
	justify-content: center;
	align-items: baseline;
	gap: 8px;
}
.product__foronly {
	font-family: var(--display);
	text-transform: uppercase;
	font-size: 1.8rem;
	letter-spacing: 0.02em;
}
.product__amount {
	font-family: var(--slab);
	font-weight: 600;
	font-size: 3rem;
}
.product__badge {
	display: inline-block;
	margin: 22px 0 12px;
	padding: 10px 16px;
	background: #fff;
	color: var(--red);
	font-family: var(--body);
	font-weight: 700;
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	text-shadow: none;
}
.product__locale {
	margin: 0;
	font-family: var(--body);
	font-weight: 600;
	letter-spacing: 0.02em;
}

/* ---- Long quote ------------------------------------------------------- */
.quote {
	background: #fff;
	color: var(--navy);
	padding: 36px 0;
	border-bottom: solid 10px var(--navy);
}
.quote__inner {
	width: 85%;
	max-width: 1350px;
	margin: 0 auto;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2%;
}
.quote__star {
	color: var(--blue);
	font-size: clamp(2rem, 5vw, 3.4rem);
	flex: 0 0 auto;
}
.quote__copy {
	margin: 0;
	width: 80%;
	text-align: center;
	text-transform: uppercase;
}
.quote__copy p {
	font-family: var(--display);
	letter-spacing: 0.01em;
	color: var(--navy);
	font-size: clamp(1.9rem, 4.5vw, 2.9rem);
	line-height: 1;
	margin: 0;
}

/* ---- Slogan ----------------------------------------------------------- */
.slogan {
	background: var(--red);
	color: #fff;
	padding: 32px 16px;
	text-align: center;
}
.slogan__text {
	font-family: var(--display);
	text-transform: uppercase;
	letter-spacing: 0.02em;
	font-size: clamp(1.9rem, 5vw, 2.9rem);
}

/* ---- Donations -------------------------------------------------------- */
.donations {
	background: #fff;
	padding: 50px 16px;
	text-align: center;
}
.donations p {
	width: 85%;
	max-width: 620px;
	margin: 0 auto 15px;
	color: var(--navy);
	letter-spacing: 0.02em;
	font-size: 1.15rem;
}
.donations a { text-decoration: underline; font-weight: 600; }
.donations a:hover { text-decoration: none; }
.donations__stars {
	font-size: clamp(2.5rem, 7vw, 5rem);
	letter-spacing: 0.06em;
	color: var(--red);
	margin: 40px 0 0;
}

/* ---- Footer ----------------------------------------------------------- */
.site-footer {
	text-align: center;
	color: #fff;
	padding-top: 50px;
}
.social {
	margin-bottom: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
}
.social__item { display: inline-flex; }
.social__item svg {
	width: 44px;
	height: 44px;
	fill: #fff;
	transition: fill 0.2s ease;
}
.social__item:hover svg { fill: var(--navy); }

.paid-by {
	display: inline-block;
	padding: 15px;
	border: 2px solid #fff;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	font-weight: 600;
	margin: 0;
}

.dither-link {
	display: block;
	margin: 20px auto 70px;
	padding: 10px;
	color: rgba(255, 255, 255, 0.6);
	letter-spacing: 0.07em;
	font-weight: 500;
	font-size: 0.7rem;
	text-transform: uppercase;
	transition: color 0.4s ease;
}
.dither-link:hover { color: rgba(255, 255, 255, 0.95); }

.site-footer__logo {
	width: 300px;
	max-width: 80%;
	margin: 0 auto;
}

/* ---- Small screens ---------------------------------------------------- */
@media (max-width: 600px) {
	.tagline { margin-bottom: 40px; }
	.steps__inner { text-align: center; }
	.quote__copy { width: 86%; }
}
