/* =================================
   GENEL
================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html,
body {

    width: 100%;
    height: 100%;

    overflow: hidden;

    background: #000;

    color: #fff;

    font-family:
        Arial,
        Helvetica,
        sans-serif;
}



/* =================================
   SLIDER
================================= */

.slider {

    position: fixed;

    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    background: #000;

}


.slide {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;

    opacity: 0;

    transform: scale(1.08);

    transition:
        opacity 1.3s ease,
        transform 7s ease;

    z-index: 1;

}


.slide.active {

    opacity: 1;

    transform: scale(1);

}



/* =================================
   KARANLIK EFEKT
================================= */

.dark-overlay {

    position: absolute;

    inset: 0;

    z-index: 5;

    pointer-events: none;

    background:

        linear-gradient(
            90deg,
            rgba(0,0,0,0.72),
            rgba(0,0,0,0.18) 45%,
            rgba(0,0,0,0.72)
        ),

        linear-gradient(
            180deg,
            rgba(0,0,0,0.52),
            transparent 35%,
            rgba(0,0,0,0.78)
        );

}



/* =================================
   FILM GRAIN
================================= */

.grain {

    position: absolute;

    inset: -50%;

    z-index: 6;

    pointer-events: none;

    opacity: 0.055;

    background-image:

        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");

    animation:
        grain 0.25s steps(2) infinite;

}


@keyframes grain {

    0% {
        transform: translate(0,0);
    }

    25% {
        transform: translate(2%,-1%);
    }

    50% {
        transform: translate(-1%,2%);
    }

    75% {
        transform: translate(1%,1%);
    }

    100% {
        transform: translate(-2%,-2%);
    }

}



/* =================================
   ANA İÇERİK
================================= */

.hero {

    position: relative;

    z-index: 20;

    width: 100%;
    height: 100vh;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 40px;

}



/* =================================
   ÜST YAZI
================================= */

.top-line {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    margin-bottom: 10px;

}


.top-line span {

    width: 80px;

    height: 1px;

    background:
        rgba(255,255,255,0.65);

}


.top-line p {

    font-size: 13px;

    letter-spacing: 8px;

    font-weight: 500;

    color: #fff;

}



/* =================================
   MAYK
   GTA TARZI
================================= */

.mayk-title {

    font-family:
        "New Rocker",
        cursive;

    font-size:
        clamp(
            125px,
            18vw,
            250px
        );

    line-height: 0.85;

    font-weight: 400;

    letter-spacing: 3px;

    color: #fff;

    text-transform: none;

    margin-top: 5px;

    margin-bottom: 55px;

    text-shadow:

        5px 5px 0 #111,

        10px 10px 0
        rgba(0,0,0,0.9),

        0 0 20px
        rgba(255,255,255,0.18),

        0 0 45px
        rgba(0,0,0,0.9);

    animation:
        logoAppear 1.1s ease forwards;

}


@keyframes logoAppear {

    from {

        opacity: 0;

        transform:
            translateY(20px)
            scale(0.94);

    }

    to {

        opacity: 1;

        transform:
            translateY(0)
            scale(1);

    }

}



/* =================================
   SOSYAL BUTONLAR
================================= */

.social-buttons {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

}


.social {

    min-width: 190px;

    height: 58px;

    padding: 0 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    border:
        1px solid
        rgba(255,255,255,0.7);

    border-radius: 12px;

    background:
        rgba(0,0,0,0.42);

    backdrop-filter:
        blur(10px);

    -webkit-backdrop-filter:
        blur(10px);

    color: #fff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;

}


.social:hover {

    transform:
        translateY(-5px);

    background:
        rgba(255,255,255,0.13);

    border-color: #fff;

    box-shadow:
        0 10px 30px
        rgba(0,0,0,0.5);

}


.social img {

    width: 25px;

    height: 25px;

    object-fit: contain;

}



/* =================================
   ALT BİLGİLER
================================= */

.bottom-info {

    position: absolute;

    left: 5%;

    right: 5%;

    bottom: 50px;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

}



/* =================================
   SOL ALT
================================= */

.info-left {

    display: flex;

    flex-direction: column;

    gap: 5px;

}


.info-left span {

    font-size: 11px;

    letter-spacing: 5px;

    color:
        rgba(255,255,255,0.85);

}


.small-line {

    width: 40px;

    height: 1px;

    margin-top: 12px;

    background: #fff;

}



/* =================================
   İLETİŞİM
================================= */

.contact {

    display: flex;

    align-items: center;

    gap: 15px;

    text-align: left;

}


.mail-symbol {

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,0.8);

    border-radius: 5px;

    font-size: 17px;

}


.contact small {

    display: block;

    font-size: 9px;

    letter-spacing: 4px;

    margin-bottom: 5px;

    color:
        rgba(255,255,255,0.65);

}


.contact a {

    color: #fff;

    text-decoration: none;

    font-size: 14px;

}


.contact a:hover {

    text-decoration: underline;

}



/* =================================
   SAĞ ALT
================================= */

.info-right {

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 5px;

}


.info-right span {

    font-size: 11px;

    letter-spacing: 5px;

}


.info-right small {

    font-size: 9px;

    letter-spacing: 5px;

    color:
        rgba(255,255,255,0.65);

}



/* =================================
   SLIDER NOKTALARI
================================= */

.slider-dots {

    position: absolute;

    right: 30px;

    top: 50%;

    transform:
        translateY(-50%);

    display: flex;

    flex-direction: column;

    gap: 25px;

}


.dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.35);

    cursor: pointer;

    transition: 0.3s;

}


.dot.active {

    background: #fff;

    transform:
        scale(1.5);

    box-shadow:
        0 0 12px #fff;

}



/* =================================
   MOBİL
================================= */

@media (max-width: 700px) {

    .hero {

        padding:
            30px 20px;

    }


    .top-line {

        gap: 10px;

    }


    .top-line span {

        width: 35px;

    }


    .top-line p {

        font-size: 9px;

        letter-spacing: 5px;

    }


    .mayk-title {

        font-size: 105px;

        letter-spacing: 2px;

        margin-bottom: 45px;

        line-height: 0.9;

    }


    .social-buttons {

        width: 100%;

        flex-wrap: wrap;

        justify-content: center;

        gap: 8px;

    }


    .social {

        min-width: 0;

        width: 30%;

        height: 50px;

        padding: 0 8px;

        font-size: 10px;

    }


    .social img {

        width: 21px;

        height: 21px;

    }


    .bottom-info {

        left: 20px;

        right: 20px;

        bottom: 25px;

    }


    .info-left,
    .info-right {

        display: none;

    }


    .contact {

        margin: auto;

    }


    .slider-dots {

        right: 15px;

        gap: 20px;

    }

}



/* =================================
   KÜÇÜK TELEFON
================================= */

@media (max-width: 400px) {

    .mayk-title {

        font-size: 85px;

    }


    .social {

        width: 31%;

        font-size: 9px;

    }

}