/* Genel stil ayarları */
body {
    color: #eee;
    font-family: 'Jost', sans-serif;
    margin: 0;
    background-image:
        radial-gradient(at 50% 50%, #2d2a44, #1d1b34);
}

::-webkit-scrollbar {
    width: 0;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
}

/* Header bölümü */
header {
    width: min(1200px, 90vw);
    margin: auto;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav ul {
    display: flex;
    gap: 30px;
}

/* Ana içerik alanı */
main {}

main .banner {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
    margin-top: -70px;
    position: relative;
    z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
}

/* Butonlar için kapsayıcı */
.buttons-container {
    display: flex;
    gap: 20px; /* Butonlar arasında boşluk */
}

/* Subscribe butonu */
.banner button.subscribe-button {
    all: unset;
    border: 1px solid #afaeae55;
    padding: 10px 20px;
    border-radius: 20px;
    background-image: linear-gradient(to bottom, #eee1, transparent, #eee1);
    cursor: pointer;
    transition: 0.5s;
    color: #eee;
    font-weight: 500;
}

.banner button.subscribe-button:hover {
    background-color: #c691e6;
    color: #040018;
    box-shadow: 0 0 50px #c691e6;
}

/* WhatsApp butonu */
.banner button.whatsapp-button {
    all: unset;
    border: 1px solid #25D36655; /* WhatsApp renginde yarı saydam kenarlık */
    padding: 10px 20px;
    border-radius: 20px;
    background-image: linear-gradient(to bottom, #25D36611, transparent, #25D36611); /* WhatsApp renginde hafif gradient */
    cursor: pointer;
    transition: 0.5s;
    color: #eee; /* Yazı rengi */
    font-weight: 500;
}

.banner button.whatsapp-button:hover {
    background-color: #25D366; /* Hover olduğunda WhatsApp yeşili */
    color: #fff; /* Hover olduğunda yazı rengi beyaz */
    box-shadow: 0 0 50px #25D366; /* WhatsApp yeşili ile parıltı efekti */
}

a {
  text-decoration: none;
}

/* Başlık stilleri */
h1 {
    --to: left;
    font-size: 3em;
    font-weight: bold;
    background-image: linear-gradient(to var(--to), #89a5df, #e46e7f, #e8e191);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: none;
}

h1.right {
    --to: right;
}

/* Banner içeriği */
.banner {
    position: relative;
}

.banner #dotsCanvas {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}