:root {
    --primary-color: #6d8b74; /* Sage Green */
    --secondary-color: #d1b894; /* Muted Gold/Tan */
    --accent-color: #f5eedc; /* Cream */
    --text-color: #4a4a4a;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    background-color: #fdfaf5;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
}

/* Background Animations */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: blur(80px);
}

.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    animation: move 20s infinite alternate;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: var(--secondary-color);
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: #e9c46a;
    top: 40%;
    right: 20%;
    animation-delay: -10s;
}

@keyframes move {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(50px, 50px) scale(1.1); }
}

/* Container */
.container {
    width: 100%;
    max-width: 500px;
    text-align: center;
    z-index: 1;
}

/* Profile Section */
.profile {
    margin-bottom: 40px;
    animation: fadeInDown 1s var(--transition);
}

.logo-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 5px;
    background: var(--white);
    box-shadow: var(--shadow);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: var(--transition);
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.tagline {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.location {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location i {
    margin-right: 5px;
}

/* Links Section */
.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: fadeInUp 1s var(--transition) 0.2s both;
}

.link-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 18px 25px;
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.link-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: var(--white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.link-content {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    font-size: 1.05rem;
}

.link-content i {
    font-size: 1.4rem;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
}

.link-card .fa-chevron-right {
    font-size: 0.9rem;
    color: #ccc;
    transition: var(--transition);
}

.link-card:hover .fa-chevron-right {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Footer Section */
.footer {
    margin-top: 50px;
    animation: fadeIn 1s var(--transition) 0.5s both;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
}

.social-icons a {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    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; }
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .brand-name { font-size: 1.8rem; }
    .link-card { padding: 15px 20px; }
}
