@font-face {
    font-family: 'glacial-indifference';
    src: url('/webfonts/GlacialIndifference-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'glacial-indifference';
    src: url('/webfonts/GlacialIndifference-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

h1, h2, h3, h4, h5 {
    font-family: 'glacial-indifference';
    font-weight: normal;
}

h1 {
    margin-bottom: 0px;
    margin-top: 0px;
    font-weight:lighter;
    font-size: 4em;
    color: white;
    font-family: 'glacial-indifference';
}

p {
    font-family: 'glacial-indifference';
    font-weight: normal;
    font-size: 1em;
    line-height: 1.5em;
}

ul, ol {
    padding-left: 0px;
    margin: 15px;
    list-style: none;
}

ul li, ol li {
    font-family: 'glacial-indifference';
    font-weight: normal;
    font-size: 1em;
    line-height: 1.5em;
    padding: 5px;
}

html {
    margin: 0px;
    padding: 0px;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    position: relative;
    padding: 0px;
    margin: 0px;
    max-width: 100%;
    overflow-x: hidden;
}


button {
    background-color: rgb(0, 85, 221);
    color: white;
    padding: 10px 20px;
    border-radius: 7px;
    border: 0px;
    font-size: 1.2em;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .75);
    z-index: 2000;
}

button:hover {
    background-color: white;
    color: black;
    cursor: pointer;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, .75);
}

.align-center {
    text-align: center;
}

.align-left {
    text-align: left;
}

body::before {
    content: "";
    position: fixed; /* Use fixed positioning */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/warehouse-background-2.jpg');
    background-position: calc(50% - 23px);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1; /* Ensure the background is behind the content */
    will-change: opacity; /* Hint to the browser */
    filter: blur(5px); /* Optional: Apply blur if needed */
    pointer-events: none; /* Allow clicks to pass through */
}

.header-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.header {
    text-align: center;
}

.header::before {
    content: "";
    position: absolute;
    top: 5%;
    left: 50%;
    width: 30%; /* Adjust size as needed */
    height: 20%; /* Adjust size as needed */
    background: rgba(255, 255, 255, 0.5); /* Adjust color and opacity as needed */
    transform: translate(-50%, -50%);
    border-radius: 50%; /* Optional: if you want a circular glow */
    box-shadow: 0 0 100px 100px rgba(255, 255, 255, 0.5); /* Adjust the color and spread as needed */
    z-index: -1; /* Ensure the glow effect is behind the content */
}

.header img {
    position: relative;
    z-index: 1; /* Ensure the image is above the glow effect */
    max-width: 70%;
    margin: 40px;
}

.headline {
    text-align: center;
    margin: 30px auto;
    max-width: 1000px;
    border-radius: 8px;
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 1);
    padding: 30px;
    
}

.headline-2 {
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    text-align: center;
    margin: 30px auto;
    max-width: 1000px;
    border-radius: 8px;
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 1);
    padding: 30px;
    font-size: .6em;
    color: white;
}

.headline-2 p {
    font-size: 1.5em;
    
}


/* Media query for smaller screens */
@media (max-width: 600px) {
    .headline h1 {
        font-size: 1.5em; /* Adjust font size for smaller screens */
    }
}


.hand-held {    
    width: 100%;
    text-align: center;
    animation: moveUp 2s ease-out forwards; /* Animation to move up */
    will-change: transform; /* Hint to the browser */
    z-index: 1;
}

.hand-held img {
    max-width: 100%;
    width: 450px;
    height: auto;
    margin-left: -125px;
}


.content-type-1 {
    display: grid;
    grid-template-columns: 40% 60%;
    position: relative;
    z-index: 100;
    max-width: 1000px;
    width: 100%;
    margin: auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 75px rgba(0, 0, 0, 1);
    overflow: hidden;
    margin-top: 30px;
}

.content-type-1 img {
    max-width: 100%;
    height: auto;
}

.content-type-1>div {
    padding: 40px;
}

.content-type-1 h2 {
    margin-top: 0px;
}

.grid-span-2 {
    grid-column: span 2;
}

.content-type-2 {
    display: grid;
    grid-template-columns: 60% 40%;
    position: relative;
    z-index: 1000;
    max-width: 1000px;
    width: 100%;
    min-height: 500px;
    margin: auto;
    background: linear-gradient(
        to bottom right, 
        rgba(255, 255, 255, 1) 0%, /* Strong white at the start */
        rgba(255, 255, 255, 1) 50%, /* Gradual fade */
        rgba(255, 255, 255, 0.6) 80%, /* Faster fade */
        rgba(255, 255, 255, 0) 90% /* Fully transparent near the end */
    );
    
    border-radius: 10px;
    pointer-events: none; /* Optional if the div is purely decorative */
}

.content-type-2 .site-map h2 {
    color:rgb(0, 85, 221);
    font-weight: bold;
}

.content-type-2 .site-map {
    text-align: center;
}

.content-type-2 .site-map>div {
    display: inline-block;
    text-align: center;
    padding: 15px;
    font-size: 1.5em;
    font-family: 'glacial-indifference';
    line-height: 1em;
}

.content-type-2 .site-map>div.description {
    max-width: 600px;
    font-size: 1.2em;
    font-family: 'glacial-indifference';
    text-align: left;
}

.content-type-2 .site-map>div.arrow {
    line-height: 4em;
    color:rgb(0, 85, 221);
}

.content-type-2>div {
    padding: 40px;
}

.content-type-2 img {
    margin-left: -175px;
    margin-top: 75px;
}

.content-type-3 {
    max-width: 1000px;
    margin: auto;
    color: white;
    font-size: 2em;
    padding: 40px;
    text-align: center;
    font-family: 'glacial-indifference';
}

.content-type-3>div {
    display: inline-block;
    text-align: center;
    padding: 15px;
}


.content-type-4 {
    display: grid;
    grid-template-columns: 40% 60%;
    position: relative;
    z-index: 100;
    max-width: 1000px;
    width: 100%;
    min-height: 500px;
    margin: auto;
    margin-top: 50px;
    background: linear-gradient(
        to bottom left, 
        rgba(255, 255, 255, 1) 0%, /* Strong white at the start */
        rgba(255, 255, 255, 1) 50%, /* Gradual fade */
        rgba(255, 255, 255, 0.6) 80%, /* Faster fade */
        rgba(255, 255, 255, 0) 90% /* Fully transparent near the end */
    );
    
    border-radius: 10px;
    pointer-events: none; /* Optional if the div is purely decorative */
}

.content-type-4 .site-map h2 {
    color:rgb(0, 85, 221);
    font-weight: bold;
}

.content-type-4 .site-map {
    text-align: center;
}

.content-type-4 .site-map>div {
    display: inline-block;
    text-align: center;
    padding: 15px;
    font-size: 1.5em;
    font-family: 'glacial-indifference';
    line-height: 1em;
}

.content-type-4 .site-map>div.description {
    max-width: 600px;
    font-size: 1.2em;
    font-family: 'glacial-indifference';
    text-align: left;
}

.content-type-4 .site-map>div.arrow {
    line-height: 4em;
    color:rgb(0, 85, 221);
}

.content-type-4>div {
    padding: 40px;
}

.content-type-4 img {
    margin-left: 0px;
    margin-top: 75px;
}

.profile {
    text-align: center;
    margin: 30px auto;
    max-width: 600px;
    border-radius: 8px;
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 1);
    padding: 30px;
    text-align: center;
}

.profile h2 {
    margin-bottom: 0px;
}

.profile h3 {
    margin-top: 0px;
    font-size: .8em;
}

.profile-img {
    display: inline-block;
    background-image: url('/images/Nate-sm.jpeg');
    background-size: cover; /* Ensure the image covers the entire element */
    background-position: center;
    border-radius: 50%; /* Make it rounded */
    overflow: hidden;
    width: 100px; /* Adjust the width as needed */
    height: 100px; /* Adjust the height as needed */
}

.profile-body {
    margin-top: -40px;
    background-color: rgba(255, 255, 255, .75);
    border-radius: 8px;
    padding: 30px;
    text-shadow: none;
}

.contact {
    text-align: center;
    margin: 30px auto;
    max-width: 400px;
    border-radius: 8px;
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 1);
    padding: 30px;
    background-color: rgba(255, 255, 255, .75);
}

.input-group {
    display: grid;
    grid-template-columns: 1fr;
    margin: 15px 0px;
}

input, textarea {
    width: 100%;
    padding: 6px;
    border-radius: 7px;
    border: 0px;
    border: 1px solid #ccc;
    font-size: 1em;
    padding: 8px;
}

textarea {
    min-height: 200px;
}

label {
    box-sizing: border-box;
    display: inline-block;
    text-align: left;
    width: 100%;
    font-family: 'glacial-indifference';
    text-shadow: none;
    padding: 8px 0px;

}


.packer-background {
    background-image: url('/images/packer.webp');
    background-size: cover;
    background-position: center;
    min-height: 470px;
}

.background-tracking {
    background-image: url('/images/inventory-tracking-2.jpg');
    background-size: cover;
    background-position: center;
    min-height: 470px;
}

.website {
    display: none;
}

@media (max-width: 877px) {
    .content-type-2 {
        grid-template-columns: 1fr; /* Stack columns on smaller screens */
    }

    .content-type-2 img {
        margin-left: 25px;
        margin-top: -75px;
        margin-right: -450px;
    }
}

/* Media query for smaller screens */
@media (max-width: 600px) {
    .content-type-1 {
        grid-template-columns: 1fr; /* Stack columns on smaller screens */
    }

    .content-type-4 {
        grid-template-columns: 1fr; /* Stack columns on smaller screens */
    }

    .content-type-2 img {
        margin-left: -125px;
        margin-top: -50px;
        margin-right: -450px;
    }
}

.footer {
    min-height: 300px;
    background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0)); /* White to transparent gradient */
    text-align: center;
    font-family: 'glacial-indifference';

}

.footer a {
    color: black;
}

@keyframes moveUp {
    from {
        transform: translateY(100px); /* Start position */
    }
    to {
        transform: translateY(0); /* End position */
    }
}

@keyframes fadeInBackground {
    from {
        opacity: 0; /* Start hidden */
    }
    to {
        opacity: 1; /* End fully visible */
    }
}