/* 
 * Mina Emlak - Premium Links Style 🧬🛰️⚓
 * RBN 3.5 "Masterpiece" Architecture.
 */

.links-bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/hero-bg.jpg') center/cover;
    filter: blur(15px) brightness(0.4);
    z-index: -1;
    transform: scale(1.1);
}

.links-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 100px);
    /* Header payı */
    padding: 40px 20px;
    margin: 0;
}

.links-container {
    width: 100%;
    max-width: 500px;
    text-align: center;
    z-index: 2;
}

.links-header {
    margin-bottom: 2.5rem;
}

.links-logo {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px auto;
    background: white;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.links-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
}

.link-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.link-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    border-color: var(--accent-color);
}

.link-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
    margin-right: 15px;
}

.link-text {
    flex: 1;
    text-align: left;
    color: white;
    font-weight: 500;
}

.link-arrow {
    color: rgba(255, 255, 255, 0.5);
}

.links-footer {
    margin-top: 3rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.link-item-home {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin-top: 30px;
}

.link-item-home .link-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.link-item-home .link-text {
    color: rgba(255, 255, 255, 0.8);
}

.link-item-home:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.link-item-home:hover .link-text, 
.link-item-home:hover .link-arrow {
    color: #fff;
}

.link-item-home:hover .link-icon {
    background: #fff;
    color: #000;
}