/* =========================
   Global theme + base
========================= */
:root {
	--bg: #03035a;
	--panel: #1b3b65;
	--panel-2: #0f2a4b;
	--text: #ffffff;
	--ink: #03035a;
	--accent: #e5d000;
	--muted: #d9d9d9;

	--radius: 16px;
	--card-shadow: 0 8px 24px rgba(0, 0, 0, .18);

	--field-bg: #fff;
	--field-border: rgba(3, 3, 90, .18);
	--focus: rgba(229, 208, 0, .55);
}

html,
body {
	margin: 0;
	padding: 0;
	background: var(--bg);
	color: var(--text);
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.5;
}

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

.container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 16px;
}

/* =========================
   Header + nav
========================= */
.site-header {
	background: var(--bg);
	color: var(--text);
}

.header-inner {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	padding: 12px 0;
}

.logo img {
	display: block;
}

.nav-icons {
	display: flex;
	flex-wrap: nowrap;
	/* never wrap */
	align-items: flex-end;
	justify-content: center;
	gap: 0;
	white-space: nowrap;
}

.nav-icons a {
	display: inline-flex;
}

.nav-icons img {
	height: 92px;
	width: auto;
}

@media (max-width:860px) {
	.header-inner {
		flex-direction: column;
		align-items: center;
	}

	.nav-icons img {
		height: 72px;
	}
}

@media (max-width:520px) {
	.nav-icons img {
		height: 60px;
	}
}

/* Optional: hide spacer images on smaller screens */
@media (max-width:860px) {
	.nav-icons .spacer {
		display: none;
	}
}

/* =========================
   Footer
========================= */
.site-footer {
	background: var(--bg);
	color: var(--text);
	padding: 14px 0;
	font-size: 12px;
	text-align: center;
}

.site-footer a {
	color: var(--text);
	text-decoration: none;
}

.site-footer a:hover {
	text-decoration: underline;
}

.social {
	display: flex;
	gap: 30px;
	justify-content: center;
	align-items: center;
	margin: 10px 0 8px;
	flex-wrap: wrap;
}

.social img,
.social svg,
.social png {
	width: 25px;
	height: 25px;
}


/* =========================
   Shared page wrappers
========================= */
.page-title {
	text-align: center;
	font-size: 32px;
	font-weight: 800;
	margin: 0 0 22px;
	color: var(--text);
}

.about-section,
.contact-section,
.gallery-section,
.privacy-section {
	background: var(--panel);
	padding: 32px 0 48px;
}

/* =========================
   About page
========================= */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	align-items: start;
}

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

.about-copy p,
.about-aside p {
	font-size: 14px;
	color: var(--text);
}

.about-aside img {}

/* Team cards */
.team {
	margin-top: 28px;
}

.grid-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 18px;
}

.card {
	background: #fff;
	color: var(--ink);
	border-radius: 16px;
	padding: 18px;
	box-shadow: var(--card-shadow);
}

.card h3 {
	margin: 0 0 4px;
	font-size: 18px;
	color: var(--ink);
}

.card p {
	margin: 0 0 10px;
	font-size: 14px;
	color: var(--ink);
}

.card .role {
	margin: 4px 0 0;
	font-size: 14px;
	font-weight: 600;
	color: #1b3b65;
}

.card-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 14px;
}

.avatar {
	width: 88px;
	height: 88px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.card blockquote {
	position: relative;
	margin: 16px 0 0;
	padding: 20px 18px;
	border-radius: 12px;
	font-style: italic;
	line-height: 1.6;
}

.card blockquote::before {
	content: "“";
	position: absolute;
	top: -10px;
	left: 10px;
	font-size: 48px;
	color: green;
	font-weight: bold;
}

.card blockquote::after {
	content: "”";
	position: absolute;
	bottom: -20px;
	right: 14px;
	font-size: 48px;
	color: green;
	font-weight: bold;
}

/* =========================
   Contact page
========================= */
.page-subtitle {
	text-align: center;
	margin: 0 0 22px;
	font-size: 14px;
	color: var(--text);
	opacity: .95;
}

.form-card {
	background: #fff;
	color: var(--ink);
	border-radius: 16px;
	box-shadow: var(--card-shadow);
	padding: 22px;
}

.form-head {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 14px;
}

.form-head img {
	width: 72px;
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px 16px;
	margin-top: 12px;
}

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

.field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

label {
	font-size: 14px;
	font-weight: 700;
	color: var(--ink);
}

input[type="text"],
input[type="email"],
select,
textarea {
	width: 100%;
	box-sizing: border-box;
	font-family: inherit;
	font-size: 14px;
	padding: 10px 12px;
	border-radius: 10px;
	border: 1px solid var(--field-border);
	background: var(--field-bg);
	color: var(--ink);
	outline: none;
}

textarea {
	min-height: 160px;
	resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 4px var(--focus);
}

.full {
	grid-column: 1 / -1;
}

.actions {
	display: flex;
	justify-content: flex-end;
	margin-top: 14px;
}

button {
	appearance: none;
	border: 0;
	border-radius: 12px;
	padding: 12px 16px;
	font-weight: 800;
	cursor: pointer;
	background: var(--accent);
	color: #111;
}

button:hover {
	filter: brightness(.97);
}

/* =========================
   Gallery page
========================= */
.gallery-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 28px;
	align-items: center;
}

@media (max-width:900px) {
	.gallery-grid {
		grid-template-columns: 1fr;
		align-items: start;
	}
}

.gallery-copy {
	font-size: 14px;
	color: var(--text);
}

.gallery-copy p {
	margin: 0 0 12px;
}

.gallery-copy ul {
	margin: 0 0 12px 18px;
	padding: 0;
}

.gallery-copy li {
	margin: 6px 0;
}

.gallery-copy ul ul {
	margin: 8px 0;
}

.gallery-media {
	background: rgba(255, 255, 255, .08);
	border-radius: var(--radius);
	padding: 14px;
}

.gallery-media img {
	border-radius: 12px;
	width: 100%;
}

.note {
	opacity: .95;
	font-size: 14px;
	margin-top: 8px;
}

/* =========================
   Privacy page
========================= */
.hero {
	display: flex;
	justify-content: center;
	margin-bottom: 18px;
}

.hero img {
	border-radius: var(--radius);
	box-shadow: var(--card-shadow);
}

.content-card {
	background: #fff;
	color: var(--ink);
	border-radius: var(--radius);
	box-shadow: var(--card-shadow);
	padding: 22px;
}

.content-card h2 {
	margin: 18px 0 10px;
	font-size: 18px;
	color: var(--ink);
}

.content-card h2:first-child {
	margin-top: 0;
}

.content-card p {
	margin: 0 0 12px;
	font-size: 14px;
	color: var(--ink);
}

.content-card a {
	color: #1b3b65;
	text-decoration: underline;
	word-break: break-word;
}

/* =========================
   Your original legacy classes (keep if older pages still use them)
========================= */
.Header {
	background-color: #03035a;
	font-size: 12px;
	color: #fff;
}

.Section1 {
	background-color: #1b3b65;
}

.SectionHeader {
	font-size: 24px;
	font-weight: bold;
	color: #fff;
}

.Section1Highlight {
	font-size: 18px;
	font-weight: bold;
	color: #e5d000;
}

.Section1MainText {
	font-size: 14px;
	color: #fff;
}

.Footer {
	background-color: #03035a;
}

.footerLinks {
	color: #fff;
	text-decoration: none;
}

.store-icons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
}

.divider {
	width: 2px;
	height: 35px;
	background: rgba(255, 255, 255, .85);
	border-radius: 2px;
}