:root {
    --brand-pink: #EEA5CC;
    --brand-pink-light: #fbeaf3;
    --bg-dark: #2E1523; /* Deep sophisticated berry/burgundy */
    --bg-darker: #1A0A13;
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.65);
    
    /* Premium Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(238, 165, 204, 0.15); /* Brand pink with low opacity */
}

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

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Luxury Grain Overlay for Texture */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    z-index: -1;
    pointer-events: none;
}

/* Elegant Ambient Glows */
.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -2;
    opacity: 0.4;
    pointer-events: none;
}

.bg-glow-1 {
    width: 600px;
    height: 600px;
    top: -150px;
    left: -200px;
    background: radial-gradient(circle, var(--brand-pink) 0%, transparent 70%);
    animation: float 14s ease-in-out infinite alternate;
}

.bg-glow-2 {
    width: 500px;
    height: 500px;
    bottom: -100px;
    right: -150px;
    background: radial-gradient(circle, #8a4869 0%, transparent 70%);
    animation: float 18s ease-in-out infinite alternate-reverse;
}

@keyframes float {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(40px) scale(1.05); }
}

.container {
    width: 100%;
    max-width: 520px;
    padding: 3.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.avatar-container {
    position: relative;
    margin-bottom: 1.8rem;
    width: 110px;
    height: 110px;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
    background: #fff; /* White background to make the transparent logo pop */
    border: 2px solid rgba(255, 255, 255, 0.8);
    z-index: 2;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255,255,255,0.1);
}

.avatar-pulse {
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    border: 1px solid var(--brand-pink);
    animation: pulse 3.5s infinite cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 1;
    opacity: 0.3;
}

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

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
    color: var(--brand-pink);
}

.brand-name span {
    font-style: normal;
}

.brand-bio {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Links Grid */
.links-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.link-card {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    text-decoration: none;
    color: var(--text-main);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.8s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

/* Subtle inner glow for premium feel */
.link-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.link-card:hover {
    transform: translateY(-3px);
    background: var(--glass-hover);
    border-color: rgba(238, 165, 204, 0.4); /* Subtle brand pink border on hover */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.link-icon {
    font-size: 1.5rem;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.link-card:hover .link-icon {
    background: var(--brand-pink);
    color: var(--bg-darker);
    transform: scale(1.05);
    border-color: var(--brand-pink);
}

.link-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.link-title {
    font-weight: 500;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
}

.link-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
}

.link-arrow {
    font-size: 1.2rem;
    color: var(--text-muted);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.link-card:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--brand-pink);
}

/* Highlight Link (WhatsApp) */
.link-card.highlight {
    background: var(--glass-highlight);
    border: 1px solid rgba(238, 165, 204, 0.3);
}

.link-card.highlight .link-icon {
    background: var(--brand-pink);
    color: var(--bg-darker);
    border-color: transparent;
}

.link-card.highlight:hover {
    background: rgba(238, 165, 204, 0.25);
    border-color: rgba(238, 165, 204, 0.6);
}

/* Footer Section */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4rem;
    opacity: 0;
    animation: fadeIn 1s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.social-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-row a {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-row a:hover {
    color: var(--bg-darker);
    background: var(--brand-pink);
    transform: translateY(-3px);
    border-color: var(--brand-pink);
}

.footer p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    letter-spacing: 1px;
}

/* Animations */
.slide-down {
    opacity: 0;
    animation: slideDown 1s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

/* Location Card */
.location-card {
    padding: 0;
    flex-direction: column;
    align-items: stretch;
    border-radius: 18px;
    overflow: hidden;
    gap: 0;
}

.location-img-wrapper {
    width: 100%;
    height: 140px;
    overflow: hidden;
    position: relative;
}

.location-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 0%;
    animation: panImage 12s ease-in-out infinite alternate;
    transition: transform 0.5s ease;
}

@keyframes panImage {
    0% { object-position: 50% 0%; }
    100% { object-position: 50% 100%; }
}

.location-card:hover .location-img {
    transform: scale(1.05);
}

.location-info {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.02);
}

.location-info .link-content {
    flex-grow: 1;
}

.location-info .link-arrow {
    opacity: 0.8;
    transform: translateX(0);
    color: var(--text-main);
    font-size: 1.4rem;
}

.location-card:hover .location-info .link-arrow {
    color: var(--brand-pink);
    transform: scale(1.1);
}

/* Responsive constraints */
@media (max-width: 400px) {
    .container { padding: 2.5rem 1.2rem; }
    .avatar-container { width: 100px; height: 100px; }
    .brand-name { font-size: 1.8rem; }
    .link-card { padding: 1rem; }
}
