/**
 * Author: YARU Creative
 */
@media screen { 
    @font-face {
        font-family: 'ProximaNovaLight';
        src: url('../fonts/proximanova-light-webfont.eot');
        src: url('../fonts/proximanova-light-webfont.eot?#iefix') format('embedded-opentype'),
             url('../fonts/proximanova-light-webfont.woff') format('woff'),
             url('../fonts/proximanova-light-webfont.ttf') format('truetype'),
             url('../fonts/proximanova-light-webfont.svg#ProximaNovaLight') format('svg');
        font-weight: normal;
        font-style: normal;
    }
    @font-face {
        font-family: 'ProximaNovaThBold';
        src: url('../fonts/proximanova-extrabold-webfont.eot');
        src: url('../fonts/proximanova-extrabold-webfont.eot?#iefix') format('embedded-opentype'),
             url('../fonts/proximanova-extrabold-webfont.woff') format('woff'),
             url('../fonts/proximanova-extrabold-webfont.ttf') format('truetype'),
             url('../fonts/proximanova-extrabold-webfont.svg#ProximaNovaThBold') format('svg');
        font-weight: normal;
        font-style: normal;
    }
    /* Reset */
    body, h1, h2, p, ul, li, ol, form, label, td {
        margin: 0;
        padding: 0;
        font-size: 12px;
        font-family: 'ProximaNovaLight', sans-serif;
        list-style: none;
        border: none;
    }
    header, footer, nav, aside, section {
        display: block;
    }
    body {
        font-size: 62.5%;
        line-height: 1.6;
    }

    /* Layout */
   #zero {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    background: #011309 url("../img/siza.png") repeat fixed 50% 15%; /* Fallback background */
    background-size: cover;
}

#zero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

#zero:after {
    content: "";
    background: url("../img/stripesblack.png") repeat;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

    .container {
        position: relative;
        width: 100%;
        margin: 0 auto;
    }

    .header {
        text-align: center;
        margin-bottom: 100px; /* Space between header and copyright */
        position: relative; /* Ensures it's above video and overlay */
        z-index: 1;
    }

    .main {
        overflow: hidden;
    }

    p.copyright {
        position: absolute;
        bottom: 0;
        width: 100%;
        text-align: center;
        z-index: 1; /* Keeps it above the video and overlay */
        color: white;
    }

    /* Social Media Icons */
    .social-media {
        margin-top: 20px;
    }

    .social-media a {
        display: inline-block;
        margin: 0 10px;
    }

    .social-media img {
        width: 40px;  /* Icon size */
        height: 40px;
        transition: transform 0.3s ease;
    }

    /* Hover effect on icons */
    .social-media a:hover img {
        transform: scale(1.1);
    }

    /* Make it responsive */
    @media (max-width: 768px) {
        #zero h1 {
            font-size: 60px;
        }

        .social-media img {
            width: 35px;
            height: 35px;
        }
    }

    @media (max-width: 480px) {
        #zero h1 {
            font-size: 50px;
        }

        .social-media img {
            width: 45px;
            height: 45px;
        }
    }

    /* Typography */
    h1 {
        font-family: 'ProximaNovaThBold';
        font-size: 40px;
        color: #fff;
        margin: 0;
    }

    h2 {
        font-family: 'ProximaNovaLight';
        font-size: 16px;
        text-align: center;
        color: #fff;
        margin: 0;
    }

    p {
        font-size: 12px;
        line-height: 1.6;
        color: white;
    }

    /* Links */
    a {
        color: #ff0099;
        text-decoration: none;
    }
    
    a:hover {
        text-decoration: underline;
    }

    *:focus {
        outline: none;
    }
}
