/* Genel stil */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url('assets/arkaplan.jpg');  /* Arka plana resim ekledik */
    background-size: cover;  /* Resmin boyutunu sayfayı tamamen kaplayacak şekilde ayarlar */
    background-position: center;  /* Resmi ortalar */
    background-attachment: fixed;  /* Arka planın sabit kalmasını sağlar, sayfa kaydırıldığında resim hareket etmez */
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    margin: 0;
}

/* Konteyner (Yazıyı ve okları yerleştiren bölüm) */
.container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80%;
    width: 100%;
    flex-direction: column;
}

/* Ana yazı (Great Vibes Fontu ile) */
.main-text p {
    font-family: 'Great Vibes', cursive; /* Great Vibes Fontu */
    font-size: 3em;
    color: #ff6347;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    text-align: center;
}

/* Oklar ve başlıklar için stil */
.arrows {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* Oklar ve başlıklar */
.arrow-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    margin: 15px; /* Kutuların üst üste binmemesi için boşluk bırakıyoruz */
}

/* Kıvrımlı oklar */
.arrow {
    font-size: 3em;
    color: #ff1493;
    margin-bottom: 10px;
    transition: transform 0.3s;
}

/* Farklı ok yönleri */
.top {
    top: 10%;
}

.left {
    left: 10%;
}

.bottom {
    bottom: 10%;
}

.right {
    right: 10%;
}

/* Hover efekti */
.arrow-container:hover .arrow {
    transform: scale(1.3);  /* Oklar üzerine gelindiğinde büyüme */
    color: #ff69b4;  /* Hoverda renk değişimi */
}

/* Başlık yazıları */
.sub-heading {
    background-color: transparent;
    border: none;
    font-family: 'Great Vibes', cursive;
    font-size: 1.5em;
    color: #ff6347;
    cursor: pointer;
    text-align: center;
    margin-bottom: 15px;
}

.sub-heading:hover {
    color: #ff69b4; /* Hoverda renk değişimi */
}

/* Paragrafların başlangıçta gizlenmesi */
.description {
    display: none;
    font-family: 'Roboto', sans-serif;
    color: #333;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.8); /* Yarı şeffaf kutu */
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    text-align: left;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
    transition: opacity 0.3s ease;
}

/* Görünür yapma */
.description.visible {
    display: block;
}
