:root {
	--primary: #003d73;
	--secondary: #e6f0ff;
	--accent: #ff8552;
	--light-grey: #f8f9fa;
	--text: #333333;
	--header-height: 160px;
	--mobile-header-height: 110px;
	--max-width: 1050px;
	--box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
	color: var(--text);
	line-height: 1.6;
	overflow-x: hidden;
	background-color: #e9ecef;
}

.page-wrapper {
	max-width: var(--max-width);
	margin: 0 auto;
	box-shadow: var(--box-shadow);
	background-color: white;
}

.header {
	background: url("../img/banner-3.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	color: white;
	padding: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	height: var(--header-height);
	position: relative;
}

.header h1 {
	font-size: 2.5rem;
	text-align: center;
	font-weight: 700;
	text-transform: uppercase;
	/*text-shadow: 2px 2px 5px #eceaea;*/
	background-color: rgba(0, 0, 0, 0.5);
	color: rgb(252, 252, 252);
	display: inline-block;
	padding: 0.8em 1em;
}

.container {
	display: flex;
	min-height: calc(
		100vh - var(--header-height) - 40px
	); /* 40px for top/bottom margins */
}

.hamburger-menu {
	display: none;
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	z-index: 10;
	width: 25px;
	height: 20px;
	flex-direction: column;
	justify-content: space-between;
}

.hamburger-line {
	width: 100%;
	height: 2px;
	background-color: white;
	border-radius: 5px;
	transition: all 0.3s ease;
}

.content {
	flex: 1;
	padding: 2rem;
}

.section {
	margin-bottom: 2.5rem;
}

.card {
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	border: 1px solid #e2e8f0;
	transition: box-shadow 0.3s ease;
}

.meeting-board {
	color: #1e293b;
	font-weight: 600;
}

.date-time-section {
	background: #f1f5f9;
	padding: 20px;
	border-radius: 8px;
	margin: 20px 0;
	border-left: 4px solid #3b82f6;
}

.date-time {
	font-weight: 700;
	font-size: 20px;
	color: #1e293b;
	margin: 0;
	text-align: center;
}

.address-section {
	padding-top: 20px;
	border-top: 1px solid #e2e8f0;
}

.address-label {
	color: #64748b;
	font-weight: 500;
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.address {
	color: #374151;
	font-weight: 500;
}

.address-line {
	display: block;
}

.icon {
	display: inline-block;
	margin-right: 8px;
	opacity: 0.7;
}

.section-title {
	color: var(--primary);
	border-bottom: 2px solid var(--accent);
	padding-bottom: 0.5rem;
	margin-bottom: 1.2rem;
	font-size: 1.5rem;
}

.footer {
	background-color: var(--secondary);
	color: var(--text);
	text-align: center;
	padding: 0.6rem;
	font-size: 0.8rem;
}

.content-columns {
	margin-top: 1rem;
	display: flex;
	gap: 2rem;
}

.main-content {
	flex: 2;
}
.meeting-item {
	margin-bottom: 15px;
}

.meeting-date {
	font-size: 12px;
	color: #666;
}

.side-content {
	flex: 1;
}

.notice-card {
	margin: 0 auto;
	border: 1px solid #dee2e6;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

.card-header {
	background: var(--secondary);
	padding: 14px 22px;
	text-align: center;
}

.card-header h1 {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
}

.card-body {
	padding: 32px;
}

.meeting-details {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.detail-item {
	display: flex;
	flex: 1;
	padding: 16px 20px;
	background: #f8fafc;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
	transition: all 0.2s ease;
}

.detail-icon {
	width: 16px;
	height: 16px;
	fill: #666;
}

.detail-content {
	flex: 1;
}

.detail-label {
	color: #666;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.detail-value {
	color: #1e293b;

	line-height: 1.3;
	display: flex;
	align-content: end;
	justify-content: flex-start;
}

.notice-container {
	background: white;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	width: 100%;
	overflow: hidden;
}

.notice-header {
	background: linear-gradient(100deg, #1e3c72 0%, #2a5298 100%);
	padding: 10px;
	text-align: center;
	position: relative;
}

.notice-header h1 {
	color: white;
	font-size: 1.3rem;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.notice-body {
	padding: 15px;
	text-align: center;
}

.meeting-notice-item {
	margin-bottom: 35px;
}

.meeting-notice-label {
	font-size: 0.8rem;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
}

.meeting-notice-value {
	font-size: 1.3rem;
	color: #202a3a;
	font-weight: 600;
}

@media (max-width: 600px) {
	.notice-body {
		padding: 30px 25px;
	}

	.meeting-notice-value {
		font-size: 1.6rem;
	}
}
