/* ================= RESET ================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #05070c;
    color: #ffffff;
}

/* ================= HEADER ================= */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 64px;
    background: rgba(5, 7, 12, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
}

.header-inner {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-links a,
.social-links a {
    margin-left: 12px;
    text-decoration: none;
    color: #ffffff;
    font-size: 0.9rem;
    opacity: 0.85;
}

    .nav-links a:hover,
    .social-links a:hover {
        opacity: 1;
    }

/* ================= SCROLL SNAP ================= */
.snap-container {
    scroll-snap-type: y mandatory;
}

/*
.section {
  min-height: 100vh;
  scroll-snap-align: start;
  scroll-margin-top: 64px;
  padding: 96px 16px 32px;
}
    */

.section {
    min-height: 100vh;
    scroll-snap-align: start;
    scroll-margin-top: 64px;
    padding: 96px 16px 32px;
}


/* ================= HOME ================= */
/*
.hero {
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.85)), url("assets/hero.jpg") center / cover no-repeat;
}
*/
.home {
    position: relative;
    overflow: hidden;
    background-color: #000;
    display: flex;
    align-items: last baseline;
    justify-content: center;
}

.home-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}


.home-overlay {
    
    position: relative;
    z-index: 2;
    text-align: center;    
    max-width: 768px;
}

.home::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.85) );
    z-index: 1;
}

.home h1 {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.tagline {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 24px;
}

.cta-buttons img {
    height: 48px;
}

/* ================= CONTENT ================= */
.content-section {
    background-color: #070a12;
}

.content-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

    .content-inner h2 {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }

    .content-inner p {
        line-height: 1.6;
        opacity: 0.9;
    }

.feature-list {
    list-style: none;
    margin-top: 16px;
}

    .feature-list li {
        margin: 8px 0;
        opacity: 0.9;
    }

/* ================= FOOTER ================= */
.site-footer {
    background-color: #02030a;
    padding: 32px 16px;
    scroll-snap-align: none;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

    .footer-inner a {
        color: #aaa;
        text-decoration: none;
        font-size: 0.85rem;
    }

    .footer-inner span {
        font-size: 0.8rem;
        opacity: 0.6;
    }


/* ================= HERO VIDEO RESPONSIVE ================= */
@media (max-width: 768px) {
    .home-video {
        display: none;
    }

    .home {
        background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.85)), url("assets/FeatureImage_1024x500.png") center / cover no-repeat;
    }
}

/* ================= SHOWCASE ================= */
.showcase {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.showcase-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 16px;
}

.showcase-title {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.showcase-text {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 16px;
}

.showcase-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.showcase-btn {
    background: rgba(255, 255, 255, 0.08);
    border:  none;
   padding: 0;

     outline: none;
  background-color: transparent;

    font-size: 1.4rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
}



    .showcase-btn:hover {
        background: rgba(255, 255, 255, 0.15);
    }

/*

        This place the image and text side by side on larger screens
       but as well as the page turn buttons, so it is commented out for now.

@media (min-width: 900px) {
    .showcase {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        text-align: left;
        align-items: center;
    }
}
*/

/* ================= SHOWCASE ANIMATION ================= */
.showcase {
    transition: opacity 0.35s ease, transform 0.35s ease;
}

    .showcase.is-transitioning {
        opacity: 0;
        /*
           add/remove this makes image bounce to right and back, not ideal
           transform: translateX(12px);
        */
        transition: opacity 0.35s ease, transform 0.35s ease;
    }


.social-links a img {
    width: 32px; /* width of icon */
    height: 32px; /* height of icon */
    object-fit: contain; /* keeps aspect ratio */
    display: inline-block;
    transition: transform 0.2s ease; /* optional hover effect */
}

.social-links a:hover img {
    transform: scale(1.1); /* subtle hover grow */
}