body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
}

.hero-section {
    background-color: #ffffff;
    padding: 80px 0;
    border-bottom: 1px solid #eaeaea;
}

.hero-title {
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-weight: 400;
    color: #4a5568;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-image-container {
    text-align: right;
}

.hero-image {
    max-width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.btn-social {
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 30px;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.btn-x {
    background-color: #000000;
    color: #ffffff;
}

    .btn-x:hover {
        background-color: #333333;
        color: #ffffff;
    }

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    border: none;
}

    .btn-instagram:hover {
        opacity: 0.9;
        color: #ffffff;
    }
/* Sosyal Medya Kartları İçin Yeni Stiller */
.social-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    text-decoration: none; /* Alt çizgi olmasını engeller */
    display: block;
}

    .social-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }

    .social-card h5 {
        font-size: 1.1rem;
    }

    .social-card p {
        color: #4a5568;
    }

/* Instagram İkon Rengi */
.ig-icon {
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}