:root {
    --primary-color: #555;
    --text-color: #333;
    --bg-color-1: #e0e0e0;
    --bg-color-2: #f5f5f5;
    --bg-color-3: #dcdcdc;
}

body {
    font-family: 'Comfortaa', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
    color: var(--text-color);
    text-align: center;
    background-color: var(--bg-color-1);
    position: relative;
    padding: 10px; /* Mobil uyum için eklendi */
}

.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-color-1), var(--bg-color-2), var(--bg-color-3));
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    z-index: -2;
}

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

.content-wrapper {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    max-width: 800px;
    width: 90%;
}

.logo {
    width: 200px;
    height: 200px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #662C91;
    text-shadow: none;
}

p {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.contact-info a {
    color: var(--text-color);
    font-size: 1.0rem;
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
    text-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info a i {
    margin-right: 10px;
    font-size: 1.5rem;
}

.contact-info a:hover {
    transform: scale(1.05);
    text-decoration: underline;
}

.social-links a {
    color: var(--text-color);
    font-size: 2rem;
    margin: 0 1rem;
    transition: transform 0.3s ease-in-out;
    text-shadow: none;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Yeni Pati Animasyonu Stilleri */
.paw-prints-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.paw-print {
    position: absolute;
    font-size: 50px;
    color: rgba(102, 44, 145, 0.3);
    opacity: 0;
    animation: pawAnimation 10s linear forwards;
}

@keyframes pawAnimation {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0.5) rotate(0deg);
    }
    10% {
        opacity: 0.2;
        transform: translate(calc(var(--endX) * 0.1), calc(var(--endY) * 0.1)) scale(0.8) rotate(var(--angle));
    }
    80% {
        opacity: 0.2;
        transform: translate(calc(var(--endX) * 0.8), calc(var(--endY) * 0.8)) scale(0.8) rotate(var(--angle));
    }
    100% {
        opacity: 0;
        transform: translate(var(--endX), var(--endY)) scale(0.5) rotate(var(--angle));
    }
}

/*
 * MOBİL UYUM STİLLERİ
 * 768px ve daha küçük ekranlar için
 */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .content-wrapper {
        padding: 2rem 1rem;
    }

    .logo {
        width: 150px;
        height: 150px;
        margin-bottom: 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .contact-info {
        margin-bottom: 2rem;
    }

    .contact-info a {
        font-size: 0.9rem;
    }

    .contact-info a i {
        font-size: 1.2rem;
    }

    .paw-print {
        font-size: 30px;
    }
}