﻿body {
    font-family: "Roboto", sans-serif;
    font-weight: normal;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: linear-gradient(45deg, #f3ec78, #af4261);
    animation: gradient 15s ease infinite;
    background-size: 400% 400%;
    overflow-x: hidden;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

* {
    box-sizing: inherit;
}

/* Header Stili */
header.header-coming .header-wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3E2945;
    position: relative;
    text-align: center;
}

.img-wrapper {
    margin-left: -100px;
}

    .img-wrapper img {
        max-width: 100%;
        height: auto;
    }

@media (max-width: 991px) {
    .img-wrapper {
        margin-left: 0;
    }
}

/* Başlık ve Metin Stili */
h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    h1 {
        font-size: 60px;
    }
}

@media (min-width: 992px) {
    h1 {
        font-size: 70px;
    }
}

/* İçerik Stili */
header.header-coming .content-wrapper {
    margin-left: -40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (max-width: 767px) {
    header.header-coming .content-wrapper {
        margin-left: 0;
        margin-bottom: 30px;
    }
}

header.header-coming .content-wrapper h1 {
    font-size: 100px;
    font-weight: 700;
    margin-bottom: 20px;
}

header.header-coming .content-wrapper p {
    font-size: 16px;
    line-height: 26px;
    margin: 10px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

    header.header-coming .content-wrapper p > span {
        display: block;
    }

/* Sosyal İkon Stili */
header.header-coming .social-icons {
    margin-top: 20px;
    text-align: center;
}

    header.header-coming .social-icons a {
        display: inline-block;
        margin: 0 10px;
        color: #3E2945;
        text-decoration: none;
        font-size: 24px;
        transition: color 0.3s;
    }

        header.header-coming .social-icons a:hover {
            color: #af4261;
        }

/* Sosyal İkonlar için Bilgi Penceresi Stili */
.social-icons a {
    position: relative;
}

    .social-icons a::after {
        content: attr(data-tooltip);
        position: absolute;
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgba(0, 0, 0, 0.5);
        color: #fff;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 14px;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .social-icons a:hover::after {
        opacity: 1;
    }

/* Büyük Metin Stili */
.larger-text {
    font-size: 40px;
    font-weight: bold;
    color: #808080;
    transition: color 0.3s ease;
}

@media (max-width: 767px) {
    header.header-coming .content-wrapper h1 {
        font-size: 35px;
    }
}

@media (max-width: 767px) {
    .larger-text {
        font-size: 30px;
    }
}

/* Şekil Stili */
.shape {
    display: none;
}

@media (min-width: 768px) {
    .shape {
        display: block;
        position: absolute;
        z-index: -1;
    }
}

.shape-1 {
    left: 50%;
    top: 15%;
    transform: translate(-50%, -50%);
}

.shape-2 {
    right: 20%;
    top: 10%;
    transform: translate(50%, -50%);
}

.shape-3 {
    right: 5%;
    top: 45%;
}

.shape-4 {
    right: 45%;
    bottom: 10%;
}

.shape-5 {
    right: 2%;
    bottom: 15%;
}

.shape-6 {
    right: 30%;
    bottom: 2%;
}






