/* CSS Variables matching Agrow Brand */
:root {
    --color-parchment: #F8ECCF;
    --color-soot: #3A3A3A;
    --color-pickle: #019B77;
    --color-gallery: #F2F2F2;
    --color-white: #ffffff;
    
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    
    --transition-standard: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-soft: 0 4px 20px rgba(58, 58, 58, 0.08);
    --shadow-hover: 0 8px 30px rgba(1, 155, 119, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-parchment);
    color: var(--color-soot);
    font-family: var(--font-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 680px;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Profile Section */
.profile {
    text-align: center;
    margin-bottom: 2.5rem;
    width: 100%;
}

.logo-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.profile-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.profile-name {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.75rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    color: var(--color-soot);
}

.profile-bio {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: var(--color-soot);
    opacity: 0.8;
    max-width: 400px;
    margin: 0 auto;
}

/* Links Section */
.links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.link-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-white);
    padding: 1rem 1.25rem;
    border-radius: 1rem; /* Rounded corners but not full pill */
    text-decoration: none;
    color: var(--color-soot);
    transition: var(--transition-standard);
    border: 1px solid rgba(58, 58, 58, 0.05);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

/* Hover Effects */
.link-card:hover {
    transform: translateY(-3px) scale(1.01);
    border-color: var(--color-pickle);
    box-shadow: var(--shadow-hover);
}

.link-card:active {
    transform: translateY(-1px) scale(1.00);
}

/* Icon Styles */
.icon-wrapper {
    font-size: 1.25rem;
    width: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-pickle);
    transition: var(--transition-standard);
}

.link-card:hover .icon-wrapper {
    transform: scale(1.1);
}

.link-text {
    flex-grow: 1;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.share-icon {
    font-size: 0.875rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-standard);
    color: var(--color-pickle);
}

.link-card:hover .share-icon {
    opacity: 1;
    transform: translateX(0);
}

/* Footer */
.footer {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: auto;
    font-family: var(--font-secondary);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .container {
        padding: 2rem 1.25rem;
    }
    
    .profile-name {
        font-size: 1.5rem;
    }
    
    .link-card {
        padding: 1rem;
    }
}
