/* Fake News Propaganda Bell - homepage rebuild */

:root {
	--accent: #d40000;
	--nav-bg: #0066bf;
	--nav-link: #ffff00;
	--nav-link-hover: #ffffff;
	--dark: #000000;
	--container-width: 1100px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #000000;
	background: #ffffff;
}

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

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

.container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 20px;
}

.skip-to-content {
	position: absolute;
	left: -9999px;
}

/* ---------- Top bar ---------- */
#top-bar-wrap {
	background: var(--dark);
	color: #ffffff;
	font-size: 13px;
	text-align: center;
}

#top-bar {
	padding: 10px 0;
}

.top-bar-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 4px 0;
}

.top-bar-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.top-bar-item a {
	color: #ffffff;
}

.top-bar-item a:hover {
	color: #dd3333;
}

.top-bar-line {
	display: block;
	margin-top: 6px;
}

.top-bar-highlight {
	color: #ffff00;
	font-weight: bold;
}

.top-bar-highlight.large {
	font-size: 20px;
}

/* ---------- Hero wrap (video spans header + nav + hero) ---------- */
#hero-wrap {
	position: relative;
	overflow: hidden;
}

#hero-video-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

#hero-wrap-overlay {
	position: absolute;
	inset: 0;
	background: rgba(60, 110, 165, 0.82);
	z-index: 1;
}

/* ---------- Header ---------- */
/* Flag background by default (used standalone on inner pages) */
#site-header {
	position: relative;
	z-index: 2;
	background-image: url("../images/header-bg.jpeg");
	background-size: cover;
	background-position: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Transparent over the hero video on the home page (video replaces the flag image) */
#hero-wrap #site-header {
	background-image: none;
	box-shadow: none;
}

#site-header-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	transition: padding 0.25s ease;
}

#site-logo img {
	max-height: 220px;
	width: auto;
	margin: 0 auto;
	transition: max-height 0.25s ease;
}

/* Sticky/condensed header once the page is scrolled: logo hides entirely,
   nav becomes the only sticky bar (colored to match the footer). */
body.is-scrolled #site-header {
	position: sticky;
	top: 0;
	background: none;
	box-shadow: none;
}

body.is-scrolled #site-header-inner {
	padding: 0;
}

body.is-scrolled #site-logo {
	display: none;
}

body.is-scrolled #site-navigation-wrap {
	position: sticky;
	top: 0;
	background: #0062bf;
}

/* Hamburger toggle (mobile only) */
.nav-toggle {
	display: none;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border: none;
	background: rgba(0, 0, 0, 0.35);
	border-radius: 6px;
	cursor: pointer;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: #ffffff;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Nav ---------- */
/* Solid nav bar by default (used standalone on inner pages) */
#site-navigation-wrap {
	position: relative;
	z-index: 3;
	background: var(--nav-bg);
}

/* Transparent over the hero video on the home page */
#hero-wrap #site-navigation-wrap {
	background: none;
	border-top: 1px solid rgba(255, 255, 255, 0.35);
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

#site-navigation {
	max-width: var(--container-width);
	margin: 0 auto;
}

.main-navigation-ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.main-navigation-ul > li {
	position: relative;
}

.main-navigation-ul > li > a {
	display: block;
	padding: 22px 26px;
	font-family: "Arvo", serif;
	color: var(--nav-link);
	font-size: 18px;
	letter-spacing: 0.02em;
	white-space: nowrap;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.main-navigation-ul > li > a:hover,
.main-navigation-ul > li.current-menu-item > a {
	color: var(--nav-link-hover);
}

.menu-item-has-children > a::after {
	content: "\25BE";
	display: inline-block;
	margin-left: 6px;
	font-size: 12px;
	transition: transform 0.2s ease;
}

.menu-item-has-children:hover > a::after {
	transform: rotate(180deg);
}

.main-navigation-ul .sub-menu {
	list-style: none;
	margin: 0;
	padding: 8px 0;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translate(-50%, 8px);
	background: #ffffff;
	min-width: 220px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	z-index: 20;
}

.main-navigation-ul > li:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

.main-navigation-ul .sub-menu li + li {
	border-top: 1px solid #eeeeee;
}

.main-navigation-ul .sub-menu a {
	display: block;
	color: #222222;
	font-family: "Open Sans", sans-serif;
	font-size: 14px;
	padding: 12px 22px;
	white-space: nowrap;
	text-align: left;
	transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.main-navigation-ul .sub-menu a:hover {
	background: #f7f7f7;
	color: var(--accent);
	padding-left: 26px;
}

.nav-cart-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	margin-left: 6px;
	border-radius: 999px;
	background: var(--accent);
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	vertical-align: middle;
}

/* ---------- Hero ---------- */
#home-section {
	position: relative;
	z-index: 2;
	color: #ffffff;
	text-align: center;
	padding: 100px 20px 80px;
}

#home-section .hero-inner {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

#home-section .hero-inner.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.hero-kicker {
	font-family: "Abril Fatface", serif;
	font-weight: 400;
	font-size: 28px;
	margin: 0 0 10px;
}

.hero-title {
	font-family: Impact, Charcoal, sans-serif;
	color: #ffff00;
	font-size: 56px;
	line-height: 1.1;
	margin: 10px 0;
}

.hero-subtitle {
	font-family: Impact, Charcoal, sans-serif;
	color: #dd3333;
	font-size: 34px;
	line-height: 1.2;
	margin: 10px 0;
}

.hero-quote {
	font-size: 20px;
	margin: 25px 0;
}

.hero-tagline {
	font-family: Impact, Charcoal, sans-serif;
	color: #ffffff;
	font-size: 30px;
	margin: 25px 0;
}

.hero-scroll {
	display: inline-block;
	margin-top: 20px;
	font-size: 28px;
	animation: bounce 2s infinite;
}

@keyframes bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(8px); }
}

/* ---------- Inner page header bar ---------- */
.page-header {
	background: var(--accent);
	padding: 18px 0;
}

.page-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
}

.page-header-title {
	margin: 0;
	color: #ffffff;
	font-family: "Arvo", serif;
	font-size: 26px;
	font-weight: 700;
}

.free-shipping {
	color: #ffffff;
	font-weight: 700;
	font-size: 18px;
}

@media (max-width: 767px) {
	.free-shipping {
		font-size: 13px;
	}
}

/* ---------- Contact page form ---------- */
.contact-page-form {
	max-width: 900px;
	margin: 0 auto;
	padding: 50px 0 80px;
}

.cpf-field {
	margin-bottom: 40px;
}

.cpf-label {
	display: block;
	font-size: 18px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 14px;
}

.cpf-required {
	color: var(--accent);
	font-weight: 400;
	font-size: 14px;
}

.cpf-name-row {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.cpf-name-col {
	flex: 1 1 260px;
}

.cpf-sublabel {
	display: block;
	color: #555555;
	font-size: 14px;
	margin-bottom: 8px;
}

.contact-page-form input[type="text"],
.contact-page-form input[type="email"],
.contact-page-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #cccccc;
	border-radius: 4px;
	font-family: inherit;
	font-size: 15px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-page-form input[type="text"]:focus,
.contact-page-form input[type="email"]:focus,
.contact-page-form textarea:focus {
	outline: none;
	border-color: #204ce5;
	box-shadow: 0 0 0 3px rgba(32, 76, 229, 0.15);
}

.contact-page-form textarea {
	height: 180px;
	resize: vertical;
}

.cpf-description {
	color: #666666;
	font-size: 14px;
	margin: 0 0 12px;
}

.cpf-counter {
	color: #888888;
	font-size: 13px;
	margin: 8px 0 0;
}

.cpf-submit {
	padding: 14px 40px;
	background: #204ce5;
	color: #ffffff;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.cpf-submit:hover {
	background: #1a3cbd;
	transform: translateY(-2px);
}

.cpf-submit:disabled {
	background: #999999;
	cursor: not-allowed;
	transform: none;
}

@media (max-width: 600px) {
	.cpf-name-row {
		flex-direction: column;
		gap: 25px;
	}
}

/* ---------- Inner page article content ---------- */
#main .page-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 50px 0 70px;
	line-height: 1.7;
}

.page-content-title {
	font-family: "Arvo", serif;
	color: var(--accent);
	font-size: 26px;
	margin: 0 0 20px;
}

.page-content p {
	margin: 0 0 18px;
}

.page-content-signature {
	font-weight: 700;
	font-style: italic;
}

/* Legal pages: multiple headed sections back to back */
.legal-content .page-content-title {
	margin-top: 40px;
	font-size: 20px;
}

.legal-content .page-content-title:first-child {
	margin-top: 0;
}

.legal-content p {
	font-size: 15px;
	color: #333333;
}

.legal-divider {
	text-align: center;
	font-weight: 700;
	color: #888888;
}

.legal-footer {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid #eeeeee;
	font-weight: 700;
	font-size: 13px;
	text-align: center;
	color: #666666;
}

/* ---------- Shop ---------- */
.shop-alert {
	max-width: 700px;
	margin: 50px auto;
	padding: 20px 24px;
	background: #fdecea;
	border: 1px solid #f5c2c0;
	border-radius: 6px;
	color: #a80000;
	text-align: center;
}

.shop-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	padding: 50px 0;
}

.shop-product-card {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.shop-product-media {
	position: relative;
	aspect-ratio: 1 / 1;
	background: #f2f2f2;
}

.shop-product-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.shop-product-media-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #eeeeee 0%, #dddddd 100%);
}

.shop-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	color: #ffffff;
	text-transform: uppercase;
}

.shop-badge-sale {
	background: var(--accent);
}

.shop-badge-soldout {
	background: #555555;
}

.shop-product-body {
	padding: 14px 16px 18px;
}

.shop-product-name {
	font-weight: 600;
	font-size: 15px;
	margin-bottom: 8px;
	color: #000000;
}

.shop-product-price .price {
	font-weight: 700;
	color: var(--accent);
}

.shop-product-price .price-compare {
	margin-left: 8px;
	color: #999999;
	text-decoration: line-through;
	font-size: 13px;
}

.shop-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding-bottom: 60px;
}

.shop-pagination-link {
	font-weight: 700;
	color: var(--accent);
	transition: color 0.2s ease;
}

.shop-pagination-link:hover {
	color: #a80000;
}

.shop-pagination-current {
	color: #666666;
	font-size: 14px;
}

@media (max-width: 991px) {
	.shop-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 767px) {
	.shop-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}

@media (max-width: 480px) {
	.shop-grid {
		grid-template-columns: 1fr;
	}
}

/* ---------- Product detail ---------- */
.product-breadcrumbs {
	padding: 20px 0 0;
	font-size: 14px;
	color: #666666;
}

.product-breadcrumbs a {
	color: var(--accent);
	font-weight: 600;
}

.product-detail {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	padding: 30px 0 70px;
}

.product-gallery-main {
	aspect-ratio: 1 / 1;
	background: #f2f2f2;
	border-radius: 8px;
	overflow: hidden;
}

.product-gallery-main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-gallery-thumbs {
	display: flex;
	gap: 10px;
	margin-top: 12px;
	flex-wrap: wrap;
}

.product-gallery-thumb {
	width: 70px;
	height: 70px;
	padding: 0;
	border: 2px solid transparent;
	border-radius: 6px;
	overflow: hidden;
	cursor: pointer;
	background: #f2f2f2;
	transition: border-color 0.2s ease;
}

.product-gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-gallery-thumb.is-active {
	border-color: var(--accent);
}

.product-info-price {
	font-size: 26px;
	font-weight: 700;
	color: var(--accent);
	margin-bottom: 10px;
}

.product-info-price .price-compare {
	margin-left: 10px;
	font-size: 16px;
	font-weight: 400;
	color: #999999;
	text-decoration: line-through;
}

.product-availability {
	display: inline-block;
	margin-bottom: 20px;
	padding: 4px 12px;
	border-radius: 999px;
	background: #e6f6ec;
	color: #1a7a3d;
	font-size: 13px;
	font-weight: 700;
}

.product-availability.is-out-of-stock {
	background: #f2f2f2;
	color: #666666;
}

.option-group {
	margin-bottom: 22px;
}

.option-group-label {
	display: block;
	font-weight: 700;
	margin-bottom: 8px;
	font-size: 14px;
}

.option-swatches {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.option-swatch {
	padding: 8px 16px;
	border: 1px solid #cccccc;
	border-radius: 6px;
	background: #ffffff;
	cursor: pointer;
	font-size: 14px;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.option-swatch:hover {
	border-color: var(--accent);
}

.option-swatch.is-selected {
	border-color: var(--accent);
	background: #fdecea;
	font-weight: 700;
}

.qty-stepper {
	display: inline-flex;
	align-items: center;
	border: 1px solid #cccccc;
	border-radius: 6px;
	overflow: hidden;
}

.qty-stepper button {
	width: 38px;
	height: 38px;
	border: none;
	background: #f2f2f2;
	font-size: 18px;
	cursor: pointer;
}

.qty-stepper input {
	width: 50px;
	height: 38px;
	border: none;
	border-left: 1px solid #cccccc;
	border-right: 1px solid #cccccc;
	text-align: center;
	font-size: 15px;
}

.buy-now-form {
	margin-bottom: 25px;
}

.product-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.btn-buy-now,
.btn-view-cart {
	flex: 1 1 200px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 30px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-buy-now {
	background: var(--accent);
	color: #ffffff;
	border: none;
}

.btn-buy-now:hover {
	background: #a80000;
	transform: translateY(-2px);
}

.btn-view-cart {
	background: #f2f2f2;
	color: #222222;
	border: 1px solid #dddddd;
}

.btn-view-cart:hover {
	background: #e8e8e8;
	transform: translateY(-2px);
}

.product-description {
	margin-top: 20px;
	line-height: 1.7;
	color: #333333;
}

@media (max-width: 767px) {
	.product-detail {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

/* ---------- Cart ---------- */
.shop-alert-success {
	background: #e6f6ec;
	border-color: #b8e2c8;
	color: #1a7a3d;
}

.cart-empty-state {
	max-width: 500px;
	margin: 60px auto;
	text-align: center;
}

.cart-empty-state h2 {
	margin-bottom: 10px;
}

.cart-empty-state p {
	margin-bottom: 25px;
	color: #666666;
}

.cart-layout {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 40px;
	padding: 40px 0 70px;
	align-items: start;
}

.cart-item {
	display: grid;
	grid-template-columns: 90px 1fr auto;
	gap: 18px;
	align-items: center;
	padding: 18px 0;
	border-bottom: 1px solid #eeeeee;
}

.cart-item-media {
	width: 90px;
	height: 90px;
	border-radius: 6px;
	overflow: hidden;
	background: #f2f2f2;
}

.cart-item-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cart-item-name a {
	font-weight: 700;
	color: #000000;
}

.cart-item-name a:hover {
	color: var(--accent);
}

.cart-item-variant {
	font-size: 13px;
	color: #777777;
	margin: 4px 0 10px;
}

.cart-item-controls {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.cart-qty-form {
	display: inline-block;
}

.qty-stepper-sm {
	display: inline-flex;
	align-items: center;
	border: 1px solid #cccccc;
	border-radius: 6px;
	overflow: hidden;
}

.qty-stepper-sm input {
	width: 50px;
	height: 34px;
	border: none;
	text-align: center;
	font-size: 14px;
}

.qty-update-btn {
	padding: 0 12px;
	border: none;
	border-left: 1px solid #cccccc;
	background: #f2f2f2;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	flex-shrink: 0;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.qty-update-btn:hover {
	background: #e6e6e6;
}

.cart-remove-form {
	display: inline-block;
}

.cart-remove-btn {
	border: none;
	background: none;
	color: var(--accent);
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	text-decoration: underline;
}

.cart-remove-btn:hover {
	color: #a80000;
}

.cart-item-price {
	font-weight: 700;
	white-space: nowrap;
}

.cart-continue {
	margin-top: 20px;
}

.cart-continue a {
	color: var(--accent);
	font-weight: 600;
}

.cart-summary-card {
	background: #f9f9f9;
	border-radius: 8px;
	padding: 24px;
	position: sticky;
	top: 20px;
}

.cart-summary-card h3 {
	margin-top: 0;
}

.cart-summary-row {
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px solid #e5e5e5;
}

.cart-summary-total {
	font-weight: 700;
	font-size: 18px;
	border-bottom: none;
}

.cart-summary-note {
	font-size: 12px;
	color: #888888;
	margin: 10px 0;
}

.cart-summary-footnote {
	font-size: 12px;
	color: #888888;
	margin-top: 12px;
	text-align: center;
}

.cart-summary-card .btn-buy-now {
	width: 100%;
}

@media (max-width: 767px) {
	.cart-layout {
		grid-template-columns: 1fr;
	}
	.cart-item {
		grid-template-columns: 70px 1fr;
	}
	.cart-item-price {
		grid-column: 2;
	}
}

/* ---------- Quotes ---------- */
.quotes-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	padding: 40px 0 70px;
	align-items: start;
}

.quote-card {
	background: #f7f7f7;
	border: 1px solid #eeeeee;
	border-radius: 4px;
	padding: 20px;
}

.quote-card-name {
	font-weight: 700;
	margin-bottom: 12px;
}

.quote-card-text {
	margin: 0;
	line-height: 1.6;
	color: #333333;
}

@media (max-width: 991px) {
	.quotes-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.quotes-grid {
		grid-template-columns: 1fr;
	}
}

/* ---------- Section 2 ---------- */
#section-two {
	background-image: url("../images/section2-bg.jpeg");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	padding: 110px 20px;
}

.section-two-grid {
	max-width: var(--container-width);
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	min-height: 380px;
}

.section-two-col {
	flex: 1 1 320px;
	display: flex;
	align-items: center;
	padding: 60px;
}

.section-two-col.left {
	background: rgba(90, 40, 140, 0.55);
	text-align: center;
}

.section-two-col.right {
	background: rgba(212, 0, 0, 0.35);
	justify-content: center;
}

.section-two-col.left h4 {
	color: #ffffff;
	font-size: 22px;
	line-height: 1.5;
	margin: 0 0 25px;
}

.btn-read-more {
	display: inline-block;
	background: var(--accent);
	color: #ffffff;
	padding: 12px 30px;
	border-radius: 999px;
	font-weight: bold;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-read-more:hover {
	background: #a80000;
	color: #ffffff;
	transform: translateY(-2px);
}

/* ---------- Footer ---------- */
#footer-builder {
	background-image: url("../images/footer-bg.png");
	background-color: #0062bf;
	padding: 40px 0 10px;
	color: #ffffff;
}

.footer-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	padding-bottom: 20px;
}

.footer-col {
	flex: 1 1 220px;
}

.footer-col h3 {
	margin-top: 0;
}

.footer-logo img {
	width: 150px;
	margin-bottom: 15px;
}

.footer-links a {
	display: block;
	padding: 4px 0;
	color: #ffffff;
	font-weight: 600;
	transition: color 0.2s ease;
}

.footer-links a:hover {
	color: #ffff00;
}

.footer-col address {
	font-style: normal;
	line-height: 1.6;
}

.footer-col address a {
	text-decoration: underline;
}

.footer-cards img {
	max-width: 100%;
	margin-top: 15px;
}

.contact-form label {
	display: block;
	margin-top: 10px;
	font-size: 14px;
	font-weight: 600;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
	width: 100%;
	padding: 10px;
	margin-top: 4px;
	border: 1px solid transparent;
	border-radius: 3px;
	font-family: inherit;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(212, 0, 0, 0.2);
}

.contact-form textarea {
	height: 90px;
	resize: vertical;
}

.contact-form .name-fields {
	display: flex;
	gap: 10px;
}

.contact-form .name-fields > div {
	flex: 1;
}

.contact-form button {
	margin-top: 12px;
	width: 100%;
	padding: 12px;
	background: var(--accent);
	color: #ffffff;
	border: none;
	border-radius: 3px;
	font-weight: bold;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.contact-form button:hover {
	background: #a80000;
}

.contact-form button:disabled {
	background: #999999;
	cursor: not-allowed;
}

.footer-trademark {
	text-align: center;
	font-weight: bold;
	padding: 15px 0;
}

#footer-bottom {
	background: #000000;
	color: #ffffff;
	text-align: center;
	font-size: 12px;
	padding: 10px 0;
}

/* ---------- Back to top ---------- */
#back-to-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 46px;
	height: 46px;
	border: none;
	border-radius: 50%;
	background: var(--accent);
	color: #ffffff;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.2s ease;
	z-index: 100;
}

#back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

#back-to-top:hover {
	background: #a80000;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
	#section-two {
		background-attachment: scroll;
	}
	.section-two-col {
		flex: 1 1 100%;
	}
	.footer-grid {
		gap: 25px;
	}
}

@media (max-width: 767px) {
	#site-header-inner {
		padding: 15px;
	}
	#site-logo img {
		max-height: 130px;
	}
	.top-bar-item {
		margin: 3px 0;
		font-size: 12px;
	}
	.top-bar-highlight.large {
		font-size: 16px;
	}
	#home-section {
		padding: 60px 15px 50px;
	}
	.hero-kicker {
		font-size: 20px;
	}
	.hero-title {
		font-size: 34px;
	}
	.hero-subtitle {
		font-size: 22px;
	}
	.hero-quote {
		font-size: 16px;
	}
	.hero-tagline {
		font-size: 20px;
	}
	.nav-toggle {
		display: flex;
	}
	#site-header-inner {
		justify-content: flex-start;
		padding-right: 70px;
	}
	/* Keep the hamburger toggle usable once the logo hides on scroll */
	body.is-scrolled #site-header-inner {
		padding: 8px 70px 8px 20px;
		min-height: 44px;
	}
	body.is-scrolled #site-navigation-wrap {
		top: 60px;
	}
	.main-navigation-ul {
		display: none;
		flex-direction: column;
		align-items: stretch;
		background: rgba(5, 15, 30, 0.94);
	}
	.main-navigation-ul.is-open {
		display: flex;
	}
	.main-navigation-ul > li > a {
		padding: 14px 20px;
		font-size: 15px;
		text-align: center;
	}
	.menu-item-has-children > a::after {
		float: right;
		margin-right: 4px;
	}
	.main-navigation-ul .sub-menu {
		display: none;
		position: static;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: none;
		border-radius: 0;
		box-shadow: none;
		width: 100%;
		background: rgba(0, 0, 0, 0.25);
	}
	.menu-item-has-children.sub-menu-open > .sub-menu {
		display: block;
	}
	.menu-item-has-children.sub-menu-open > a::after {
		transform: rotate(180deg);
	}
	.main-navigation-ul .sub-menu li + li {
		border-top-color: rgba(255, 255, 255, 0.15);
	}
	.main-navigation-ul .sub-menu a {
		color: #ffffff;
		text-align: center;
		padding: 12px 20px;
	}
	.main-navigation-ul .sub-menu a:hover {
		background: rgba(255, 255, 255, 0.1);
		color: #ffff00;
		padding-left: 20px;
	}
	.section-two-col {
		padding: 40px 25px;
	}
	.footer-grid {
		flex-direction: column;
	}
	.contact-form .name-fields {
		flex-direction: column;
		gap: 0;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 26px;
	}
	.hero-subtitle {
		font-size: 17px;
	}
	.hero-tagline {
		font-size: 17px;
	}
	.btn-read-more {
		padding: 10px 22px;
		font-size: 14px;
	}
}
