

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');
#container {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}
body {
    background-color: #101010;
    margin: 0;
    overflow: hidden;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
}

#title {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 30px;
    font-family: Candara;
    width: 400px;
    padding: 40px;
    animation: fadeIn 1.2s ease forwards;
    opacity: 0;
}

#subtitle {
    position: absolute;
    top: 80px;
    left: 40px;
    font-size: 14px;
    color: #cccccc;
    font-style: italic;
    animation: fadeIn 1.8s ease forwards;
    opacity: 0;
}

/* Sosyal Linkler */
#socials {
    position: absolute;
    top: 110px;
    left: 40px;
    font-size: 13px;
    margin-top: 10px;
}

#socials a {
    margin-right: 10px;
    color: #cccccc;
    text-decoration: none;
}

#socials a:hover {
    color: #ffffff;
}

/* WebGIS Butonu */
#webgis-button, #sender-button {
    position: absolute;
    top: 20px;
    right: 30px;
    background-color: #1e1e2f;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    border: 1px solid #444;
    font-size: 14px;
    transition: all 0.3s ease;
    z-index: 1000;
}

#webgis-button:hover, #sender-button:hover {
    background-color: #3b3b5c;
    transform: translateY(-2px);
}

/* Atıflar */
#credits {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 11px;
    color: #888888;
    line-height: 1.5;
    text-align: right;
}

#credits a {
    color: #8888ff;
}

#credits a:hover {
    color: #ffffff;
}

/* Footer */
#footer {
    position: absolute;
    bottom: 5px;
    left: 30px;
    font-size: 10px;
    color: #555;
}

/* Fade-in Animasyon */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive Tasarım */
@media screen and (max-width: 600px) {
    #webgis-button, #sender-button  {
        top: 10px;
        right: 10px;
        padding: 8px 14px;
        font-size: 12px;
    }

    #title, #subtitle, #socials {
        left: 20px;
        padding: 0;
    }
}

#webgis-button { top: 24px; }
#sender-button { top: 70px; }  /* aradaki dikey boşluk */
