/* Linktree-style landing page styles */

body {
    background: #fff5f0;
    min-height: 100vh;
    padding-bottom: 2rem;
    margin: 0;
}

.linktree-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.profile-section {
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.profile-avatar {
    margin-bottom: 1.5rem;
}

.profile-avatar img {
    width: 120px;
    height: 120px;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header {
    color: #333;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.flow-text {
    color: #8b5a3c;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 300;
}

.links-section {
    margin-top: 2rem;
}

.collection {
    border: none;
    background: #ffb366;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(255, 140, 0, 0.2);
}

.collection-item {
    border-bottom: 1px solid #ffa64d;
    padding: 1.25rem 1.5rem;
    transition: all 0.3s ease;
    color: #333;
    text-decoration: none;
    background-color: white;
}

.collection-item:hover {
    background-color: #ffe2c5 !important;
    transform: translateX(4px);
}

.collection-item:last-child {
    border-bottom: none;
}

.collection-item > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.collection-item .link-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.collection-item .link-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
}

.collection-item .link-icon {
    font-size: 1.25rem;
    margin-right: 0.5rem;
    display: inline-block;
}

.collection-item .link-description {
    font-size: 0.875rem;
    color: #8b5a3c;
    font-weight: 400;
}

.collection-item .secondary-content {
    color: #d97706;
    font-size: 1.5rem;
}

/* Responsive adjustments */
@media only screen and (max-width: 600px) {
    .linktree-container {
        padding: 1rem 0.5rem;
    }

    .profile-section {
        padding-top: 1rem;
        margin-bottom: 2rem;
    }

    .collection-item {
        padding: 1rem 1.25rem;
    }

    .collection-item .link-text {
        font-size: 1rem;
    }
}

