/* Temel Sıfırlamalar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0f1115; /* Derin antrasit/siyah arka plan */
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Arka plan parlama efektleri */
.background-effects {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: #d4af37; /* Altın sarısı */
    top: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite;
}

.glow-2 {
    width: 300px;
    height: 300px;
    background: #2a3b4c; /* Koyu mavi/gri taş tonu */
    bottom: -50px;
    right: -50px;
    animation: float 10s ease-in-out infinite reverse;
}

/* Ana İçerik Konteyneri */
.container {
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
    width: 100%;
    z-index: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 40px;
    font-weight: 600;
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
    background: linear-gradient(to right, #ffffff, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #a0aab5;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.contact {
    margin-bottom: 40px;
}

.contact p {
    font-size: 0.85rem;
    color: #6c7a89;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.contact a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
    padding-bottom: 4px;
}

.contact a:hover {
    color: #d4af37;
    border-bottom-color: #d4af37;
}

/* Sosyal Medya İkonları */
.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-links a {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: #d4af37;
    color: #0f1115;
    border-color: #d4af37;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

/* Animasyonlar */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

/* Mobil Uyumluluk (Responsive) */
@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
        margin: 20px;
        border-radius: 16px;
    }
    
    .title {
        font-size: 3rem;
    }
    
    .brand {
        font-size: 1rem;
        letter-spacing: 4px;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .contact a {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2.2rem;
    }
    
    .description {
        font-size: 0.95rem;
    }
}