html, body {
    background-color: black;
}

h1, p {
    color: white;
}

@font-face {
    font-family: 'Ropames';
    src: url("../fonts/Ropames.otf") format("truetype");
}

@font-face {
    font-family: 'Bryant Pro Medium';
    src: url("../fonts/RealWorks_font/BRYANTPRO-MEDIUM.OTF") format("opentype");
}

@font-face {
    font-family: 'Bryant Pro Regular';
    src: url("../fonts/RealWorks_font/BRYANTPRO-REGULAR.OTF") format("opentype");
}

.home-design {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    padding: 20px 0;
}

.home {
    height: 100vh;
    background-color: black;
}

.nav-right {
    text-align: end;
}

.video {
    width: 100%;
    height: 600px;
}

.logo {
    width: 120px;
}

.logo-text {
    font-family: 'Ropames';
    font-size: 62px;
    font-weight: 700;
    color: white;
    text-align: start;
}

.section {
    background-color: black;
    padding-top: 100px;
}


.vision-pro {
    padding: 0 20px;
    width: 95%;
}

.eye-image {
    max-width: 290px;
}

.section-text {
    font-family: 'Bryant Pro Medium';
    font-size: 40px;
    line-height: 40px;
    font-weight: 500;
    padding: 0 20px;
    background: linear-gradient(90deg, #FFD000 0%, #FF3D17 100%);
    -webkit-background-clip: text; /* Safari için */
    background-clip: text;
    color: transparent; /* Metin rengini şeffaf yapar */
    -webkit-text-fill-color: transparent; /* Safari için */
    text-fill-color: transparent;
}

.app-store {
    max-height: 55px;
}


.arrow {
    width: 50px;
    height: 30px;
}

.line {
    color: white;
}

.nav-item {
    background: linear-gradient(90deg, #FFD000 0%, #FF3D17 100%);
    -webkit-background-clip: text; /* Safari için */
    background-clip: text;
    color: transparent; /* Metin rengini şeffaf yapar */
    -webkit-text-fill-color: transparent; /* Safari için */
    text-fill-color: transparent;
}

.footer {
    background-color: black;
    padding: 150px 0 20px 0;
} 

@media (max-width: 768px) {
    .home-design {
        padding: 20px 0;
    }

    .nav-left {
        text-align: center;
    }

    .nav-right {
        text-align: center;
    }

    .col-md-6 {
        justify-content: center;
    }

    .logo-text {
        font-size: 40px;
        text-align: center;
        padding-top: 10px;
    }

    .section-text {
        font-size: 30px;
        line-height: 30px;
    }

    .vision-pro {
        padding: 0 10px;
    }

    .section {
        padding: 50px 0;
    }

    .section .row {
        padding: 20px 0;
    }

    .eye-image {
        max-width: 200px;
    }

    .app-store {
        max-height: 30px;
    }

    .logo {
        width: 70px;
    }

    .arrow {
        width: 40px;
        height: 20px;
    }

    .video {
        width: 95%;
        height: auto;
    }
    
}