/* ============================================
CSS VARIABLES - PRODUCTION COLOUR SCHEME
============================================ */
:root {
	--ochre: #D4A574;
	--deep-red: #8B3A3A;
	--black: #000000;
	--cream: #F5F1E8;
	--light-gray: #f9f9f9;
	--medium-gray: #ddd;
	--dark-gray: #666;
	--font-primary: 'Georgia', serif;
	--font-secondary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ============================================
RESET & NORMALIZE
============================================ */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
}

body {
	font-family: var(--font-secondary);
	line-height: 1.6;
	color: #333;
	background-color: white;
}

/* ============================================
SITE HEADER WITH FULL-WIDTH BANNER
============================================ */
.site-header {
	margin: 0;
	padding: 0;
	background-color: white;
	border-bottom: 2px solid var(--ochre);
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-banner-wrapper {
	width: 100%;
	height: auto;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.header-banner-image {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	max-height: 200px;
	margin: 0;
	padding: 0;
}

.header-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
}

.site-title h1 {
	margin: 0;
	font-size: 1.8em;
	color: var(--deep-red);
	font-family: var(--font-primary);
}

.site-title h1 a {
	color: var(--deep-red);
	text-decoration: none;
}

.site-title h1 a:hover {
	color: var(--ochre);
}

.site-tagline {
	color: var(--ochre);
	font-style: italic;
	font-size: 0.9em;
	margin: 5px 0 0 0;
}

/* ============================================
MAIN NAVIGATION
============================================ */
.main-menu {
	background-color: var(--black);
	padding: 0;
	margin: 0;
}

.menu-list {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	max-width: 1400px;
	margin: 0 auto;
}

.menu-item {
	flex: 1;
	position: relative;
}

.menu-item > a {
	display: block;
	padding: 15px 20px;
	color: var(--cream);
	text-align: center;
	transition: background-color 0.3s ease;
	text-decoration: none;
	font-size: 0.95em;
}

.menu-item > a:hover {
	background-color: var(--deep-red);
	text-decoration: none;
}

.menu-item.active > a {
	background-color: var(--ochre);
	color: var(--deep-red);
}

.submenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background-color: var(--deep-red);
	list-style: none;
	padding: 0;
	margin: 0;
	z-index: 1000;
}

.menu-item.has-submenu:hover .submenu {
	display: block;
}

.submenu li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.submenu li:last-child {
	border-bottom: none;
}

.submenu a {
	display: block;
	padding: 12px 20px;
	color: var(--cream);
	transition: background-color 0.3s ease;
	text-decoration: none;
	font-size: 0.9em;
}

.submenu a:hover {
	background-color: var(--ochre);
	color: var(--deep-red);
	text-decoration: none;
}

/* ============================================
CONTENT AREA
============================================ */
.content-area {
	max-width: 1400px;
	margin: 0 auto;
	padding: 40px 20px;
	min-height: calc(100vh - 300px);
}

/* ============================================
TYPOGRAPHY
============================================ */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-primary);
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 15px;
	color: var(--deep-red);
}

h1 {
	font-size: 2.5em;
}

h2 {
	font-size: 2em;
}

h3 {
	font-size: 1.5em;
}

p {
	margin-bottom: 15px;
	line-height: 1.8;
}

a {
	color: var(--deep-red);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: var(--ochre);
	text-decoration: underline;
}

/* ============================================
RESPONSIVE DESIGN
============================================ */
@media (max-width: 768px) {
	.header-banner-image {
		max-height: 150px;
	}

	.header-container {
		flex-direction: column;
		padding: 15px;
		gap: 15px;
	}

	.site-title h1 {
		font-size: 1.5em;
	}

	.menu-list {
		flex-direction: column;
	}

	.menu-item {
		flex: none;
	}

	.menu-item > a {
		padding: 12px 15px;
		font-size: 0.9em;
	}

	.content-area {
		padding: 20px 15px;
	}
}

@media (max-width: 480px) {
	.header-banner-image {
		max-height: 120px;
	}

	.header-container {
		padding: 10px;
	}

	.site-title h1 {
		font-size: 1.2em;
	}

	.site-tagline {
		font-size: 0.8em;
	}

	h1 {
		font-size: 1.8em;
	}

	h2 {
		font-size: 1.4em;
	}

	.content-area {
		padding: 15px 10px;
	}
}


/* =========================================
   CULTURAL WARNING POPUP (APH.GOV.AU STYLE)
========================================= */
.cultural-warning-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.cultural-warning-content {
    background-color: var(--cream);
    border: 3px solid var(--deep-red);
    border-radius: 8px;
    max-width: 650px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    margin: 20px;
}

.cultural-warning-header {
    background-color: var(--black);
    color: var(--ochre);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid var(--ochre);
}

.cultural-warning-header h2 {
    margin: 0;
    font-size: 1.8em;
    color: var(--ochre);
    border-bottom: none;
    padding-bottom: 0;
}

.close-btn {
    background: none;
    border: none;
    color: var(--ochre);
    font-size: 2em;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.cultural-warning-body {
    padding: 24px;
    color: #111111;
    line-height: 1.6;
}

.cultural-warning-body p {
    margin-bottom: 12px;
}

.cultural-warning-body ul {
    margin-top: 5px;
    margin-bottom: 15px;
    padding-left: 20px;
}

.cultural-warning-footer {
    padding: 20px 24px;
    background-color: var(--cream);
    border-top: 1px solid var(--ochre);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-primary {
    background-color: var(--deep-red);
    color: var(--white);
    border: none;
    padding: 10px 22px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.95em;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: var(--ochre);
    color: var(--black);
}

/* Contact Form Styles */
.contact-page {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 2.5em;
    color: var(--deep-red);
    margin-bottom: 10px;
}

.page-header .subtitle {
    font-size: 1.1em;
    color: #666;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info {
    background: var(--cream);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--deep-red);
}

.contact-info h2 {
    color: var(--deep-red);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-info a {
    color: var(--deep-red);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form-wrapper h2 {
    color: var(--deep-red);
    margin-bottom: 20px;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--deep-red);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1em;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--deep-red);
    box-shadow: 0 0 5px rgba(139, 58, 58, 0.3);
}

.form-group textarea {
    resize: vertical;
}

.alert {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
