/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* End of CSS Reset */

.audiowide-regular {
  font-family: "Audiowide", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.jura-uniquifier {
  font-family: "Jura", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}




header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: black;
    border-bottom: 2px solid black;
}

.logo {
    color: teal;
    font-size: 50px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color:rgb(0, 255, 247);
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.nav-links a:hover {
    color: blue;
}

.hamburger {
    display: none;
    font-size: 50px;
    color: red;
    cursor: pointer;
}




/* mobile style */
@media (max-width: 768px) {
    .nav-links {
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 40px;
        background-color: black;
        border: teal;
        padding: 15px;
    }

    .nav-links.show {
        display: flex;
    }

    .hamburger {
        display: block;
    }
}




.StyledSection{
    background-color: rgb(0, 11, 19);
    align-self: center;
    width: auto;
    height: 75px;
}




a img {
    border: none;
}

.box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* makes image fill box */
    display: block;
}

.box1 img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* makes image fill box */
    display: block;
}

.box2 img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* makes image fill box */
    display: block;
}




.logo {
    width: 200px;
    height: auto;
    padding-left: 30px;
    padding-top: 25px;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 150px; /* height for layout */
    font-size: 50px;
    color: turquoise;
    font-family: "Audiowide", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.header hr {
    width: 90%;
    border: 1px solid #333;
    margin: 0;
}

.header h1 {
    margin: 0;
    text-align: center;
    font-size: 100px;
    transform: translateY(2px);
}

h1 {
    text-align: center;
    margin: 100px 0;
}




form {
    display: flex;
    justify-content: center;
    margin: 20px;
}

input[type="search"] {
    padding: 8px;
    background-color: #333;
    color: rgb(0, 255, 247);
    border: 3px solid rgb(1, 210, 189);
    border-radius: 5px 0 0 5px;
}

.search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    background-color: transparent;
    color: turquoise;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}



button:hover {
    background-color: lightseagreen;
}

body {
    background-color: rgb(10, 24, 38);
}

section {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(13, 37, 50);
}


.grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* two equal halves of the screen */
    width: 100%;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 10px; /* small vertical space between boxes */
}

/* moves left column inward */
.column:first-child {
    align-items: flex-start;
    margin-left: 200px; /* pushes it away from left edge */
}

/* moves right column inward */
.column:last-child {
    align-items: flex-end;
    margin-right: 200px; /* pushes it away from right edge */
}

.center-text {
    color: aqua;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Jura", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    margin-right: 200px; /* pushes it away from right edge */
}


/* Areas on the grid */

.box {
    width: 350px;
    height: 250px;
    border: 2px solid rgb(61, 161, 255);
    background-color: rgb(179, 232, 234);
}

.box1 {
    width: 350px;
    height: 250px;
    border: 2px solid rgb(61, 161, 255);
    background-color: rgb(179, 232, 234);
}

.box2 {
    width: 350px;
    height: 250px;
    border: 2px solid rgb(61, 161, 255);
    background-color: rgb(179, 232, 234);
}


/* classed footer aligning to right */

.footer {
    color: rgb(74, 248, 190);
    text-align: right;
    font-family: "Jura", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 75px;
}


.footer2 {
    color: rgb(44, 126, 99);
    text-align: center;
    font-family: "Jura", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 25px;
}



.about-section {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.map iframe {
    width: 400px;
    height: 300px;
}

.about-text {
    color: black;
    max-width: 400px;
    text-align: center;
}

.About {
    text-align: center;
    color: aqua;
    margin-right: 200px;
    font-family: "Jura", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}

p {
    color:rgb(0, 255, 247);
    margin-right: 20px;
    font-family: "Jura", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}