:root {
    --bg-color: #f8f9fa;
    --text-primary: #2d3436;
    --text-secondary: #636e72;
    --accent-color: #4d9edc;
    --card-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(255, 255, 255, 0.3);
    --font-elegant: 'Playfair Display', serif;
    --font-modern: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-modern);
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Background Canvas */
canvas#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: block;
}


.container {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    z-index: 1;
}

.logo-container {
    margin: -4rem 0 7rem 0;
    animation: fadeInDown 1s ease-out;
}

.logo {
    max-width: 200px;
    height: auto;
    mix-blend-mode: multiply;
    filter: invert(1) brightness(0.8) hue-rotate(180deg);
}

.hero {
    margin-bottom: 3rem;
}

.title {
    font-family: var(--font-elegant);
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.subtitle {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.5rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.spacer {
    height: 2rem;
}

.description {
    font-weight: 300;
    font-size: 1.1rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn {
    text-decoration: none;
    color: var(--text-primary);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.info-card-container {
    display: flex;
    justify-content: center;
    animation: fadeInUp 1s ease-out 1s both;
}

.info-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 1rem 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.info-icon {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.info-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .title {
        font-size: 2.5rem;
    }

    .subtitle {
        letter-spacing: 0.3rem;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 200px;
    }
}
