/* 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;
}

a,
button,
.menu-icon {
    -webkit-tap-highlight-color: transparent;
}

/* End of reset.css */

/* Start of global.css */
:root {
    --mossgreen: #044040;
    --offgreen: #3C8B8B;
    --textwhite: #F2F2F2;
    --textblack: #2D2D2D;
    --pricered: #D92526;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--textwhite);
    color: var(--textblack);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    /* height: 100dvh; */
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 999;
    background-color: var(--mossgreen);
    color: var(--textwhite);
}

.nav-container {
    padding: 10px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Burger Menu Animation */

.menu-icon {
    cursor: pointer;
    width: 32px;
    height: 32px;
    padding: 4px;
    box-sizing: content-box;
    display: flex;
    align-items: center;
    justify-content: center;

}

.bar {
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Animation to close Icon */
.menu-icon.active .top {
    transform: rotate(45deg) translate(0px, 9px);
}

.menu-icon.active .middle {
    opacity: 0;

}

.menu-icon.active .bottom {
    transform: rotate(-45deg) translate(0px, -9px);
}

/* End Burger Menu Animation */

/* Mobile Navigation */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(4, 64, 64, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 10;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu li {
    margin: 20px 0px;
}

.mobile-menu a {
    color: var(--textwhite);
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--offgreen);
}

.mobile-menu.open {
    transform: translateX(0%);
}

/* End Mobile Navigation */

header {
    margin: 0px 16px;
}

h1 {
    font-size: 22px;
    font-weight: 900;
    line-height: normal;
    padding: 140px 0px 60px 0px;
}

a {
    color: var(--textblack);
    text-decoration: none;
}

main {
    margin: 0px 16px;
    padding-top: 30%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


@media screen and (min-width: 768px) {
    .desktopWrapper {

        padding: 0px 120px;
    }
}



.mainButton {
    background-color: var(--mossgreen);
    color: var(--textwhite);
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin: 10px 0px;
    min-width: 120px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.1s ease, background-color 0.3s ease;
    touch-action: manipulation;
}

.mainButton:active {
    background-color: var(--offgreen);
    transform: scale(0.96);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    background-color: var(--offgreen);
}

.mainButton:hover {
    background-color: var(--offgreen);
}

@keyframes slideFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mainButton {
    animation: slideFadeIn 0.5s ease-out forwards;
    opacity: 0;
    /* Start hidden */
}

/* Optional: delay per button */
.mainButton:nth-child(1) {
    animation-delay: 0.2s;
}

.mainButton:nth-child(2) {
    animation-delay: 0.4s;
}