:root {
    --bg-color: #fdfaf4; /* matching the cream background of the logo */
    --card-bg: rgba(255, 255, 255, 0.7);
    --card-border: rgba(0, 0, 0, 0.05);
    --card-hover: rgba(255, 255, 255, 1);
    --text-primary: #1a1a1a;
    --text-secondary: #5e5e5e;
    --accent: #d97706; /* warm accent color */
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 3rem 1.5rem;
    position: relative;
    overflow-x: hidden;
}

/* Subtle gradient blob in the background */
.bg-gradient {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
    background: radial-gradient(circle at 20% 30%, rgba(217, 119, 6, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
    filter: blur(60px);
    animation: pulse 10s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 1; }
}

.container {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.profile {
    text-align: center;
    margin-bottom: 2.5rem;
    animation: slideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.logo-wrapper {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 1.5rem;
}

/* A warm shadow around the logo */
.logo-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: var(--bg-color);
    z-index: -1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: var(--bg-color);
    border: 3px solid #1a1a1a;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 400;
}

.links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.link-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    color: var(--text-primary);
    text-decoration: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--glass-shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.link-item:nth-child(1) { animation-delay: 0.1s; }
.link-item:nth-child(2) { animation-delay: 0.2s; }
.link-item:nth-child(3) { animation-delay: 0.3s; }
.link-item:nth-child(4) { animation-delay: 0.4s; }
.link-item:nth-child(5) { animation-delay: 0.5s; }

.link-item:hover {
    background: var(--card-hover);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.1);
}

.icon-box {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(0,0,0,0.04);
    font-size: 1.25rem;
    margin-right: 1rem;
    transition: all 0.3s ease;
    color: #1a1a1a;
}

.link-item:hover .icon-box.shopify { background: #95bf47; color: #fff; border-color: transparent; }
.link-item:hover .icon-box.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; border-color: transparent; }
.link-item:hover .icon-box.facebook { background: #1877f2; color: #fff; border-color: transparent; }
.link-item:hover .icon-box.email { background: #ea4335; color: #fff; border-color: transparent; }
.link-item:hover .icon-box.contact { background: #1a1a1a; color: #fff; border-color: transparent; }

.link-text {
    flex: 1;
    font-weight: 600;
    font-size: 1.05rem;
}

.arrow {
    opacity: 0.3;
    transition: all 0.3s ease;
}

.link-item:hover .arrow {
    opacity: 1;
    transform: translateX(4px);
}

footer {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    opacity: 0;
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
}

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