*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body
{
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    background: #000;
    color: white;
}
html
{
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}
body
{
    display: flex;
    flex-direction: column;
    font-family: "Libre Baskerville", serif;
}
.hero
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    background: #ffd700;
    border-bottom: 1px solid #ff2400;
    z-index: 1000;
}
.nav-left
{
    display: flex;
    align-items: center;
}
.nav-right
{
    display: flex;
    gap: 20px;
}
.navigation a,
.nav-right a
{
    display: inline-block;
    min-width: 180px;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    background-color: #305cde;
    border: 1px solid #2323ff;
    border-radius: 8px;
    transition: background-color .2s, transform .2s, border-color .2s;
    font-family: "Cinzel", serif;
}
.navigation
{
    display: flex;
    gap: 20px;
}
.navigation a:hover,
.nav-right a:hover
{
    background-color: #66f6ff;
    border-color: #6ff66f;
    color: #0b1f3a;
    transform: translateY(-2px);
}
.navigation a:active,
.nav-right a:active
{
    transform: translateY(0);
}
main
{
    flex: 1;
    margin-top: 70px;
    padding: 32px;
}
footer
{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1b1b1b;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}
.menu-toggle
{
    display: none;
    background: #305cde;
    border: 1px solid #2323ff;
    border-radius: 8px;
    width: 52px;
    height: 52px;
    cursor: pointer;
}
.menu-toggle span
{
    display: block;
    width: 26px;
    height: 3px;
    margin: 5px auto;
    background: white;
    border-radius: 2px;
    transition: all .3s ease;
}
.menu-toggle.active span:nth-child(1)
{
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2)
{
    opacity: 0;
}
.menu-toggle.active span:nth-child(3)
{
    transform: translateY(-8px) rotate(-45deg);
}
@media (max-width: 1100px)
{
    .hero
    {
        min-height: 70px;
        height: auto;
        padding: 10px 16px;
    }
    .menu-toggle
    {
        display: block;
        margin: 0;
    }
    .navigation
    {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 10px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height .3s ease, opacity .3s ease;
        margin-top: 10px;
    }
    .navigation.show
    {
        max-height: 600px;
        opacity: 1;
    }
    .navigation a
    {
        width: 100%;
        min-width: unset;
    }
    main
    {
        margin-top: 90px;
    }
    .nav-left
    {
        display: flex;
        align-items: center;
        width: 100%;
    }
    .nav-right
    {
        display: flex;
        gap: 10px;
        margin-left: auto;
    }
    .nav-right a
    {
        min-width: fit-content;
        padding: 10px 12px;
    }
}
section
{
    scroll-snap-align: start;
}
.landing
{
    min-height: calc( 100vh - 70px );
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.landing-content
{
    display: flex;
    justify-content: center;
    align-items: center;
}
.landing-logo
{
    width: min(500px, 80vw);
    height: auto;
}
.scroll-indicator
{
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}
.scroll-indicator span
{
    width: 18px;
    height: 18px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin: -4px;
    animation: scrollArrow 2s infinite;
}
.scroll-indicator span:nth-child(2)
{
    animation-delay: .2s;
}
@keyframes scrollArrow
{
    0%
    {
        opacity: 0;
        transform: rotate(45deg) translate(-6px,-6px);
    }
    50%
    {
        opacity: 1;
    }
    100%
    {
        opacity: 0;
        transform: rotate(45deg) translate(6px,6px);
    }
}
.sector
{
    min-height: calc(100vh - 70px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    padding: 80px;
}
.sector-image
{
    flex: 1;
    display: flex;
    justify-content: center;
}
.sector-image img
{
    width: min(400px, 100%);
    height: auto;
}
.sector-content
{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.sector-content h2
{
    font-family: "Cinzel", serif;
    font-size: 3rem;
}
.sector-content p
{
    font-size: 1.2rem;
    line-height: 1.8;
}
.sector-button
{
    width: fit-content;
    padding: 14px 28px;
    color: white;
    text-decoration: none;
    background: #305cde;
    border: 1px solid #2323ff;
    border-radius: 8px;
    transition: .2s;
}
.sector-button:hover
{
    background: #66f6ff;
    color: #0b1f3a;
}
.visually-hidden
{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect( 0, 0, 0, 0 );
    white-space: nowrap;
    border: 0;
}