* {
	box-sizing: border-box;
}

/* ----- Main Configurations ----- */
html, body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	background: #f8f8f8;
	color: #222;
}

main {
	max-width: 900px;
	margin: auto;
	padding: 20px;
}

a {
	color: #AFAFFF;
	text-decoration: none;
}

p, h1, h2, h3, h4 {
	margin: 0px;
}

hr {
	margin: 4px;
}

footer {
	margin-top: 65px;
	padding: 10px;
	text-align: center;
	background: #333;
	color: white;
	font-size: 0.9rem;
}

/* ----- Front Page Banner ----- */
.main-banner {
	position: relative;
	height: 350px;
	overflow: hidden;
}

.main-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.main-banner-fade {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 120px;
	background: linear-gradient(transparent, #f8f8f8);
}

.main-banner-text h1 {
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    text-align: center;
    color: whitesmoke;
    width: 90%;

    font-size: 5rem;
    text-shadow: 2px 2px 5px black;
}

.info-boxes {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	margin: 30px 0;
}

.box {
	background: white;
	padding: 20px;
	border-radius: 8px;
	flex: 1;
	min-width: 250px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.box p + h3 {
    margin-top: 20px;
}

.map img {
    width: 100%;
    max-width: 250px;
    border-radius: 8px;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.map img:hover {
    transform: scale(1.02);
}

.history {
	margin-top: 40px;
	background: white;
	padding: 25px;
	border-radius: 8px;
}


/* Phone screens */
@media (max-width: 600px) {

	h1 {
		font-size: 1.8rem;
	}

	main {
		padding: 15px;
	}

	.main-banner {
        height: 250px;
    }

    .main-banner-text h1 {
        font-size: 1.8rem;
    }

}