/* Layout reset */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family:
		system-ui,
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		sans-serif;
	background-color: #f5f5f5;
	color: #222;
	min-height: 100vh;
}


/* Background Image */
html,
body {
	font-family: Arial, Helvetica, sans-serif;
	background: url("../images/airport terminal edited.jpg") no-repeat center center fixed;
	background-size: cover;
	color: #222;
	line-height: 1.5;
}

.site-main {
    position: relative;
    width: 100%;
    min-height: 100vh;
}


/* NAV BAR */
.site-header {
	display: flex;
	justify-content: center;
	background: #000;
	width: 100%;
	align-items: center;
}

.main-nav {
    width: 100%;
    display: flex;
    justify-content: center;   /* centers the nav-list inside */
}

.nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex; /* forces horizontal layout */
	flex-direction: row; /* ensures horizontal */
	align-items: center;
	background: #000; /* black bar */
}

.nav-list > li {
	position: relative;
}

.nav-link,
.nav-link-external {
	color: #fff;
	text-decoration: none;
	padding: 15px 20px;
	display: block;
	font-size: 18px;
	cursor: pointer;
	background: none;
	border: none;
	outline: none;
}

/* Remove default button styling */
.nav-link {
	background: none;
	border: none;
	outline: none;
}

/* Hover styling: no background, red text */
.nav-link:hover,
.nav-link-external:hover,
.dropdown-item:hover {
	background-color: transparent;
	color: red;
}



/* Dropdown menus */
.dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 20px; /* move dropdown menu to the right */
	background: #000;
	list-style: none;
	min-width: 220px;
	z-index: 1000;
}

.dropdown-menu.show {
	display: block;
}

.dropdown-item {
	color: #fff;
	text-align: left;
	width: 100%;
	display: block;
	background: none;
	border: none;
	outline: none;
	padding: 4px 12px; /* set vertical spacing */
	line-height: 1.3; /* keeps text compact but readable */
	margin: 0; /* ensures no extra gaps */
}

/* Ensure BOTH dropdown menus use the same font size */
.dropdown-menu,
.dropdown-item {
	font-size: 16px;
}


/* Main content */
.site-main {
	/* max-width: 900px; */
	width: 100%;
	margin: 2rem auto;
	padding: 0 1rem 3rem;
}



/* Home section */
.home-section {
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
}

.home-inner {
	text-align: center;
	max-width: 600px;
}

.home-inner p {
	font-size: 1.8rem; /* larger text */
	font-weight: 700; /* bold */
	line-height: 1.7; /* increase space between lines */
}

.home-logo {
	width: 600px; /* adjust to shrink/grow */
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto 1.5rem;
}



/* Info box */
.info-box {
    display: none;        
    overflow: hidden;
		width: fit-content;
    margin: 0 auto;		/* top, left/right */
}

.info-box.show {
	display: flex;		
}

.info-box-inner {
    background: #fff;
    /* border: 2px solid #ccc; */
    padding: 2rem;
		min-width: 550px;  /* sets a minimum width so the box doesn't keep shrinking and growing */
    width: auto;
    margin: 0 auto 0;
		text-align: center;

    /* Height control */
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

#info-box-text {
	line-height: 1.5;
}


/* PDF box */
.pdf-viewer {
    width: 100%;
		height: calc(100vh - 210px);
    overflow-y: auto;
    /* border: 1px solid #ccc; */
    background: #fff;
    padding: 0;
		margin: 0;
}

.pdf-page {
    margin-bottom: 2px;
    display: flex;
    justify-content: center;
}



/* Airpark */
.columns {
	display: flex;
	justify-content: center;
	gap: 3rem;
	margin-top: 1.5rem;
}

.col p {
	margin: 0.3rem 0;
}

.spaced {
	margin-bottom: 1rem;
}


/* Common Formatting */

.red {
	color: red;
}