* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.animate-element {
    opacity: 0;
    transform: translateX(-10%);
    filter: blur(5px);
    transition: opacity 1s ease, transform  1s ease, filter 1s ease;
}

.animate-element.animate {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

.animate-image {
    opacity: 0;
    transform: scale(0.8) rotate(-5deg);
    filter: blur(3px);
    transition: opacity 1.8s ease, transform 1.8s ease, filter 1.8s ease;
}

.animate-image.animate {
    opacity: 1;
    transform: scale(1) rotate(0);
    filter: blur(0);
}

.hero {
    
    position: relative;
    background-size: cover;
    background-position: center;
    text-align: center;
    min-height: 55vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url('./img/pixel.webp');
 
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(121, 128, 255, 0.9) 30%, rgba(255,255,255,0.8) 100%);
    z-index: 1;
}


.hero-content {
    font-family: sans-serif;
    position: relative;
    z-index: 2;
    color: #fff;
    text-shadow: 0px 0px 4px rgba(0,0,0,1);
    max-width: 800px;
    padding: 1.5rem;
}

.hero-content > * {
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease, filter 1s ease;
}

.hero-content h1 {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: blur(10px);
    color:  #002F6C;
    text-shadow: 0px 0px 22px rgba(255,255,255,1);
}



.hero-content p {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    text-shadow: black 0 0 1em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.5rem;
}


.hero-content > p:nth-of-type(1) { transform: translateX(-50px); }
.hero-content > p:nth-of-type(2) { transform: translateX(50px); }
.hero-content > p:nth-of-type(3) { transform: translateX(-50px); }
.hero-content > p:nth-of-type(4) { transform: translateX(50px); }
.hero-content > p:nth-of-type(5) { transform: translateY(25px); }
.hero-content > h1.animate { opacity: 1; filter: blur(0); }
.hero-content > p.animate { opacity: 1; transform: translate(0); }

.sub-header {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 700;
    text-align: center;
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
}

.sub-header.animate {
    opacity: 1;
    transform: translateY(0);
}

.sub-header h2 {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: #333;
}

.content {
    padding: 2rem;
    max-width: 1080px;
    margin: 0 auto;
}

.row { display: flex; flex-wrap: wrap; }

.box {
    flex: 1 1 100%;
    margin: 1rem;
    padding: 1rem;
    background-color: #e9e9e9;
    border-radius: 5px;
   
    display: flex;
    align-items: center;
}

.box-content { flex: 1; }

.box img, .column img {
    max-width: 200px;
    height: auto;
    border-radius: 5px;
}

.box:nth-child(odd) { flex-direction: row-reverse; }

.split-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.split-row .box { flex-basis: calc(50% - 2rem); }

.down-arrow {
    text-align: center;
    font-size: 2rem;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    cursor: pointer;
    height: 60px;
    width: 40px;
    margin: 0 auto;
    position: relative;
}

.down-arrow::before,
.down-arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 3px;
    background-color: #333;
    transition: background-color 0.3s ease;
}

.down-arrow::before {
    left: 45%;
    transform: rotate(-45deg);
    transform-origin: 0 0;
}

.down-arrow::after {
    right: 45%;
    transform: rotate(45deg);
    transform-origin: 100% 0;
}

.down-arrow:hover::before,
.down-arrow:hover::after {
    background-color: #0066cc;
}

.down-arrow.animate {
    opacity: 1;
    transform: translateY(0);
}

.hover-reveal {
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-decoration: underline;
  
}

.hover-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px;
    text-shadow: none;
    z-index: 1;
    border-radius: 5px;
    font-size: 0.9em;
    color: #333;
}

.hover-reveal:hover .hover-content,
.hover-reveal.active .hover-content {
    display: block;
}

.headerLink
{
    color: blue;
    text-decoration: none;
    font-size: 0.8em;
}
footer {
     background-color: #002F6C;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; text-transform: uppercase;}
    .hero-content p { font-size: 1rem; text-transform: uppercase;}
    .sub-header h2 { font-size: 2rem; }
    .box, .column {
        flex-direction: column !important;
        text-align: center;
    }
    .box img, .column img { margin-bottom: 1rem; }
    .split-row .box { flex-basis: 100%; }
    .hover-content {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        max-width: 300px;
    }}