/* Custom Font */
@font-face {
	font-family: 'aptly';
	src: url('../fonts/aptly-9.woff2') format('woff2'),
		 url('../fonts/aptly-9.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

/* Global Reset */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* Body Styles */
body, html {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: 'Arial', sans-serif;
	background-color: black;
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/Drone_waiting2.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #e8a900;
	text-align: center;
	overflow: auto;
	font-size: 22px;
}

/* Link Styles */
a {
	color: #e8a900;
	text-decoration: none;
}
a:hover {
	color: green;
}
a:visited {
	color: #e8a900;
}
a:active {
	color: red;
}

/* Content Container */
.content {
	padding: 20px;
	justify-content: center;
}

/* Heading Styles */
h1 {
	font-family: aptly;
	font-size: 4vw; /* Responsive font size */
	text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.7);
	filter: drop-shadow(-1px -1px 0 black) drop-shadow(1px -1px 0 black) drop-shadow(-1px 1px 0 black) drop-shadow(1px 1px 0 black);
	font-weight: bold;
	margin-bottom: 20px;
}

hr {
	width: 850px; 
	margin: 20px; 
	border: 2px solid rgba(0, 0, 0, 0.5);
}


/* Logo Image Styles */
.logo {
	width: 100%;
	max-width: 700px; /* Limit max size */
	border: solid #e8a900 5px;
	margin: 20px auto;
	filter: drop-shadow(-1px -1px 0 black) drop-shadow(1px -1px 0 black) drop-shadow(-1px 1px 0 black) drop-shadow(1px 1px 0 black);
}

/* Contact Title Styles */
h2 {
	font-family: aptly;
	font-size: 45px; /* Responsive font size */
	text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.7);
	filter: drop-shadow(-1px -1px 0 black) drop-shadow(1px -1px 0 black) drop-shadow(-1px 1px 0 black) drop-shadow(1px 1px 0 black);
	font-weight: bold;
	margin-top: 20px;
}

.two-column-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px; /* Space between columns */
	width: 20%;
	justify-content: center; /* Centers columns horizontally */
    text-align: left; /* Ensures bullets and text are aligned correctly */
}
.two-column-list ul {
	flex: 1 1 45%; /* Adjusts width of each column */
	list-style-type: disc;
	padding-left: 20px; /* Space for bullet points */
}

.important_text {
	font-size: 30px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	h1 {
		font-size: 10vw;
	}
	hr {
		width: 80vw; 
		margin: 1px; 
	}
	.logo {
		max-width: 400px;
	}
	.contact-title {
		font-size: 7vw;
	}
	.two-column-list{
        width: 80%; 
        justify-content: left; /* Centers columns horizontally */
	}
	.two-column-list ul {
		flex: 1 1 100%; /* Stacks columns on smaller devices */
	}
	.important_text {
	    font-size: 5vw;
	}
	.content {
	    padding: 20px;
	    justify-content: center;
	}
}

@media (max-width: 480px) {
	h1 {
		font-size: 12vw;
	}
	hr {
		width: 80vw; 
		margin: 1px; 
	}
	.logo {
		max-width: 300px;
	}
	.contact-title {
		font-size: 7vw;
	}
	.two-column-list{
		width: 80%; 
		justify-content: left; /* Centers columns horizontally */
	}
	.two-column-list ul {
		flex: 1 1 100%; /* Stacks columns on smaller devices */
	}
		.important_text {
		font-size: 5vw;
	}
}
