/* Base Styles */
:root {
    --bg-color: #f8f6f2;
    --text-color: #b4a896;
    --accent-color: #b4a896;
    --card-bg: #f0ece6;
    --card-hover: #d3d3d3;
    --transition: all 0.3s ease;
    --soon-color: #ff0000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.links-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

/* Header Styles */
.links-header {
    text-align: center;
    margin-bottom: 3rem;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--accent-color);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.links-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.subtitle {
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 300;
}

/* Links Grid */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.link-card {
    background: var(--card-bg);
    border: 1px solid #b4a896;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.link-card:hover {
    background: var(--card-hover);
    transform: translateY(-2px);
    border-color: var(--accent-color);
}

.coming-soon {
    opacity: 0.7;
    cursor: not-allowed;
}

.coming-soon:hover {
    transform: none;
    background: var(--card-bg);
    border-color: #b4a896;
}

.soon {
    color: var(--soon-color);
    font-size: 0.8em;
    margin-left: 0.5em;
    font-weight: 400;
}

.link-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d1c8b9;
    border-radius: 50%;
}

.link-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.link-content p {
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: 300;
}

/* Footer */
.links-footer {
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 1rem;
    }
    
    .links-header h1 {
        font-size: 2rem;
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .links-header h1 {
        font-size: 1.8rem;
    }
    
    .profile-image {
        width: 80px;
        height: 80px;
    }
    
    .link-card {
        padding: 1.25rem;
    }
    
    .link-icon {
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.links-header {
    animation: fadeIn 0.8s ease-out forwards;
}

.link-card {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.link-card:nth-child(1) { animation-delay: 0.1s; }
.link-card:nth-child(2) { animation-delay: 0.2s; }
.link-card:nth-child(3) { animation-delay: 0.3s; }
.link-card:nth-child(4) { animation-delay: 0.4s; }

/* Custom Cursor */
@media (min-width: 768px) {
    .link-card:not(.coming-soon) {
        cursor: none;
    }
    
    .custom-cursor {
        width: 20px;
        height: 20px;
        background-color: var(--accent-color);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9999;
        mix-blend-mode: difference;
        transition: transform 0.2s ease;
    }
    
    .link-card:not(.coming-soon):hover ~ .custom-cursor {
        transform: scale(1.5);
    }
} 