body {
    background-color: #1a1a1a;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    width: 100%;
    padding: 20px;
}

.hexagon-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hex-row {
    display: flex;
    justify-content: center;
    margin-bottom: -45px; /* Altıgenlerin iç içe geçme derinliği */
}

.hexagon {
    position: relative;
    width: 180px; 
    height: 205px;
    margin: 0 5px;
    background-size: cover;
    background-position: center;
    background-color: #222;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    
    /* Başlangıçta Siyah-Beyaz ve soluk */
    filter: grayscale(100%) brightness(0.6);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    z-index: 1;
}

/* Hover Efekti */
.hexagon:hover {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
    z-index: 10;
}

/* Sosyal Medya Footer */
.social-footer {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    gap: 35px;
}

.social-footer a {
    color: #ffffff;
    font-size: 30px;
    opacity: 0.5;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-footer a:hover {
    opacity: 1;
    transform: translateY(-5px);
}

/* Marka özel hover renkleri */
.social-footer a .fa-facebook-f:hover { color: #1877F2; }
.social-footer a .fa-instagram:hover { color: #E4405F; }
.social-footer a .fa-youtube:hover { color: #FF0000; }

/* MOBİL AYARLAR */
@media (max-width: 600px) {
    .hexagon {
        width: 110px;
        height: 125px;
        margin: 0 2px;
    }
    .hex-row {
        margin-bottom: -28px;
    }
    .social-footer {
        gap: 20px;
        margin-top: 70px;
    }
    .social-footer a {
        font-size: 24px;
    }
}