*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    width:100%;
    font-family:Arial, Helvetica, sans-serif;
    background:#00102A;
    color:#fff;
}

/* Background Animation */

.hero{
    min-height:100vh;
    background:url('syclonicswatermarkillustration.jpg') center center/cover no-repeat;
    position:relative;

    animation:backgroundFadeIn 1.2s ease-out;
}

.overlay{
    min-height:100vh;
    background:linear-gradient(
        135deg,
        rgba(0,16,42,.65),
        rgba(0,16,42,.85)
    );

    display:flex;
    align-items:center;
}

.content{
    width:100%;
    max-width:1000px;
    padding:6rem 5vw;
    position:relative;
    z-index:10;
}

/* Logo */

.hero-logo{
    margin-bottom:15px;
}

.hero-logo img{
    width:clamp(200px,13vw,320px);
    height:auto;
    display:block;

    filter:drop-shadow(
        0 10px 25px rgba(0,0,0,.40)
    );

    opacity:0;

    animation:
        logoFadeIn 1.2s ease-out .5s forwards;
}

/* Headline */

h1{
    font-size:clamp(3rem,6vw,5.8rem);
    line-height:1.05;
    color:#FFFFFF;
    margin-bottom:25px;

    text-shadow:
        0 0 15px rgba(127,216,255,.35);

    opacity:0;

    animation:
        contentFadeIn 1s ease-out 1.2s forwards;
}

/* Overview Panel */

.intro-panel{
    width:100%;
    max-width:1400px;

    padding:clamp(
        20px,
        2vw,
        40px
    );

    background:rgba(0,16,42,.88);

    border-left:5px solid #D4A843;

    border-radius:12px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.50);

    margin-bottom:30px;

    opacity:0;

    animation:
        contentFadeIn 1s ease-out 1.8s forwards;
}

.intro-panel p{
    color:#93C1FA;

    font-size:clamp(
        1.1rem,
        1.5vw,
        2rem
    );

    line-height:1.8;
}

/* Buttons */

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:15px;

    opacity:0;

    animation:
        contentFadeIn 1s ease-out 2.4s forwards;
}

.primary-btn,
.secondary-btn,
.contact-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 30px;

    border-radius:8px;

    text-decoration:none;

    font-weight:700;

    transition:.3s ease;
}

.primary-btn{
    background:#0A6EFF;
    color:white;
}

.secondary-btn{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.25);
    color:white;
}

.contact-btn{
    background:linear-gradient(
        180deg,
        #E0B44A,
        #B88718
    );

    color:#00102A;
}

.primary-btn:hover,
.secondary-btn:hover,
.contact-btn:hover{
    transform:translateY(-2px);
}

/* Footer */

.site-footer{
    width:100%;
    min-height:35px;
    background:#87b2e8;

    display:flex;
    align-items:center;

    padding:0 25px;

    border-top:1px solid #808080;
}

.footer-content{
    color:#000;
    font-size:12px;
}

/* Animations */

@keyframes backgroundFadeIn{

    from{
        opacity:0;
    }

    to{
        opacity:1;
    }
}

@keyframes logoFadeIn{

    from{
        opacity:0;
        transform:translateY(-15px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes contentFadeIn{

    from{
        opacity:0;
        transform:translateY(20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Mobile */

@media(max-width:768px){

    .hero-logo{
        display:flex;
        justify-content:center;
        margin-bottom:8px;
    }

    .hero-logo img{
        width:min(70vw,300px);
    }

    .content{
        padding:3rem 1.5rem;
    }

    h1{
        font-size:2.6rem;
    }

    .intro-panel{
        max-width:100%;
        padding:20px;
    }

    .intro-panel p{
        font-size:1rem;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .primary-btn,
    .contact-btn{
        width:100%;
    }
}