﻿@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 100px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    header .logo {
        color: white;
        text-transform: uppercase;
        cursor: pointer;
        font-size: 30px;
    }

/* .toggle {
    position: relative;
    width: 60px;
    height: 60px;
    background: url(assets/images/menu.png);
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: center;
    cursor: pointer;
}

.toggle.active {
    background: url(assets/images/close.png);
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: center;
    cursor: pointer;
} */

.main {
    position: absolute;
    right: 0;
    width: 100%;
    min-height: 100vh;
    padding: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: 0.5s;
    z-index: 2;
}

    /* .main.active {
    right: 300px;
} */

    .main video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.text {
    position: relative;
    z-index: 10;
}

    .text h2 {
        font-size: 5em;
        font-weight: 800;
        color: white;
        line-height: 1em;
        text-transform: uppercase;
    }

    .text h5 {
        font-size: 3.6em;
        font-weight: 700;
        color: white;
        line-height: 1em;
        text-transform: uppercase;
    }

    .text p {
        font-size: 1.2em;
        color: white;
        margin: 20px 0;
        font-weight: 400;
        max-width: 700px;
    }

    .text a {
        display: inline-block;
        font-size: 1em;
        background: white;
        padding: 10px 30px;
        border-radius: 20px;
        text-transform: uppercase;
        text-decoration: none;
        font-weight: 500;
        margin-top: 10px;
        color: black;
        letter-spacing: 2px;
        transition: 0.2s;
        cursor: pointer;
    }

        .text a:hover {
            letter-spacing: 6px;
            background-color: black;
            color: white;
        }

.social {
    position: absolute;
    z-index: 10;
    bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .social li {
        list-style: none;
    }

        .social li a {
            display: inline-block;
            margin-right: 20px;
            filter: invert(1);
            transform: scale(0.5);
            transition: 0.5s;
            cursor: pointer;
        }

            .social li a:hover {
                transform: scale(0.5) translateY(-15px);
            }

/* .menu {
    background-color: rgb(236, 236, 236);
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

 .menu.active {
    opacity: 1;
} 

 .menu ul {
    position: relative;
}

.menu ul li {
    list-style: none;
}

.menu ul li a {
    text-decoration: none;
    font-size: 30px;
    color: black;
}

.menu ul li a:hover {
    color: grey;
    transition: 0.5s;
} */

@media (max-width: 991px) {

    .main,
    .main header {
        padding: 40px;
    }

    .text h2 {
        font-size: 3em;
    }

    .text h5 {
        font-size: 2em;
    }

    .text a {
        margin-bottom: 40px;
    }
}

body {
    margin: 0;
    background-color: #000;
    color: #fff;
    overflow: hidden;
    /* Taşmaları önlemek için */
}

.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
    z-index: 10;
    /* Üstte görünmesi için */
}

    .banner .content {
        text-align: center;
        animation: fadeUp 4.5s ease-in-out forwards;
        /* Animasyon uygulanıyor */
    }

        .banner .content .title {
            font-size: 9em;
            margin-bottom: -15px;
            animation: fadeUp 5s ease-in-out forwards;
        }

        .banner .content a {
            text-decoration: none;
            color: #fff;
            margin-left: -285px;
            font-size: 1.5em;
            animation: fadeUp 5s ease-in-out 0.5s forwards;
        }

    .banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: url(../images/welcome.png);
        background-size: cover;
        background-position: center;
        z-index: -1;
        mask-image: url(../images/ink_lv2.gif);
        mask-size: cover;
        mask-position: center;
        mask-repeat: no-repeat;
        animation: fadeOutBg 4s ease-in-out forwards;
        /* Arka plan için fade out */
    }

.main-site {
    position: absolute;
    inset: 0;
    background-color: #fff;
    /* Ana sitenin arka plan rengi */
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    /* Başlangıçta görünmez */
    z-index: 5;
    /* Alt katmanda */
    transition: opacity 1s ease-in-out;
    /* Geçiş efekti */
}

    /* Geçiş yapılacak sayfanın görünür olması */
    .main-site.active {
        opacity: 1;
        z-index: 10;
        /* Geçiş sonrası üstte olacak */
    }

/* Fade-out animasyonu */
@keyframes fadeUp {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
    }
}

/* Arka plan görselini kaybetmek için */
@keyframes fadeOutBg {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* Yukarı doğru kayma animasyonu */
@keyframes fadeUp {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-50px);
    }
}

.caard {
    width: 190px;
    height: 44px;
    margin-left: 790px;
    margin-top: -300px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 5px;
    color: white;
}

    .caard .item {
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: #ffffff81;
        width: 100%;
        height: 100%;
    }

.item:hover {
    transform: scale(1.2);
    transition: all 1s;
}

.icon {
    width: 40px;
    height: 40px;
    margin-bottom: 7px;
}

.circle {
    color: rgb(0, 0, 0);
}


.triangle {
    color: black;
}

.square {
    color: black;
}

.star {
    color: black;
}

.quantity {
    font-size: 25px;
    font-weight: 600;
    color: #000;
}

.first-text {
    font-size: 16px;
    font-family: inherit;
    font-weight: 600;
}

.text--1,
.text--2,
.text--3,
.text--4 {
    color: black;
}
@media (max-width: 680px) {
    .banner .content .title {
        font-size:110px;
    }

    .banner .content a {
        font-size:25px;
    }
}
