/* 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;
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&family=PT+Mono:wght@400;700&display=swap');


body {
    font-family: 'PT Sans', sans-serif;
    background-color: #000000;
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 16px;
    display: flex;
    flex-direction: column;
}

a {
    color: #00ff00;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}

a:hover {
    color: #66ff66;
    transform: scale(1.05);
}

header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #111111;
    border-bottom: 2px solid #00ff00;
}

.logo img {
    height: 72px;
    width: auto;
    border-radius: 5px;
}

nav a {
    margin-left: 1.5rem;
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    border: 1px solid #00ff00;
    transition: background-color 0.25s, box-shadow 0.25s;
}

nav a:hover {
    background-color: #00ff00;
    color: #000;
    box-shadow: 0 0 10px #00ff00;
}

main {
    flex: 1 0 auto;
    display: grid;
    gap: 2rem;
    padding: 2rem;
}

.hero {
    display: grid;
    place-items: center;
    text-align: center;
    padding: 3rem 1rem;
    background-color: #111111;
    border-radius: 8px;
    border: 1px solid #00ff00;
    box-shadow: 0 0 15px #00ff00 inset;
}

.hero h1 {
    font-family: 'PT Mono', monospace;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00ff00;
    text-shadow: 0 0 8px #00ff00;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero img {
    border-radius: 8px;
    max-width: 100%;
    box-shadow: 0 0 12px #00ff00;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero img:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px #00ff00;
}

.about-content {
    animation: fadeInUp 1s ease-in-out;
    background-color: #111111;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #00ff00;
    box-shadow: 0 0 10px #00ff00 inset;
}

.about-content h1 {
    font-family: 'PT Mono', monospace;
    color: #00ff00;
    font-size: 2rem;
    text-shadow: 0 0 6px #00ff00;
}

.about-content p {
    font-size: 1rem;
    color: #ffffff;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    /*Help I can't change it I was testing stuf to look good and this is the only fix*/
}

.gallery-grid img {
    width: 100%;
    border-radius: 6px;
    border: 1px solid #00ff00;
    box-shadow: 0 0 10px #00ff00 inset;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #00ff00;
}

form {
    display: grid;
    gap: 1rem;
    max-width: 500px;
    background-color: #111111;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #00ff00;
    box-shadow: 0 0 10px #00ff00 inset;
}

label {
    font-weight: 500;
    color: #ffffff;
}

label span.required {
    color: #ff5252;
    margin-left: 0.25rem;
}

input,
textarea {
    padding: 0.6rem;
    border: 1px solid #00ff00;
    border-radius: 6px;
    width: 100%;
    font-size: 1rem;
    background-color: #000;
    color: #fff;
    transition: border-color 0.25s, box-shadow 0.25s;
}

input:focus,
textarea:focus {
    border-color: #66ff66;
    box-shadow: 0 0 8px #00ff00;
}

input:required {
    border-color: #ff5252;
}

button {
    padding: 0.7rem;
    background-color: #000;
    color: #00ff00;
    font-weight: 700;
    border: 1px solid #00ff00;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.2s;
}

button:hover {
    background-color: #00ff00;
    color: #000;
    box-shadow: 0 0 12px #00ff00;
    transform: scale(1.03);
}

/* Google Map */
iframe {
    border-radius: 8px;
    border: 1px solid #00ff00;
    margin-top: 1rem;
    box-shadow: 0 0 10px #00ff00;
}

footer {
    background-color: #111111;
    border-top: 2px solid #00ff00;
    padding: 1.5rem 2rem;
    color: #ffffff;
    text-align: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    header {
        grid-template-columns: 1fr;
        text-align: center;
    }

    nav {
        margin-top: 1rem;
    }

    nav a {
        margin: 0.4rem;
        display: inline-block;
    }

    main {
        padding: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}