@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pinyon+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300&display=swap');

:root {
    --background: transparent;
    --text: #ffffff;
    --card-bg: rgba(40, 40, 40, 0.08);
    --hover: rgba(60, 60, 60, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('../images/phone.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 40px 20px;
}

.profile {
    text-align: center;
    margin-bottom: 40px;
}

.profile-img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin-bottom: 16px;
}

.name-logo {
    width: 300px;
    height: auto;
    margin-bottom: 8px;
    opacity: 0.95;
}

.profile p {
    color: #ffffff;
}

.links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    max-width: 900px;
    margin: 100px auto 0;
    padding: 0 20px;
}

.link-card {
    background-color: var(--card-bg);
    padding: 8px 8px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    color: #C5BDB4;
    text-shadow: 0 0 1px #C5BDB4,
                 0 0 2px #C5BDB4,
                 0 0 3px #C5BDB4,
                 0 0 70px #000,
                 0 0 120px #000,
                 0 0 170px #000,
                 0 0 220px #000,
                 0 0 270px #000;
    letter-spacing: 3px;
    font-weight: 300;
    opacity: 1;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    text-align: center;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(40, 40, 40, 0.05);
    text-transform: uppercase;
}

.link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.profile h1 {
    font-family: 'MedievalSharp', cursive;
    font-size: 72px;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7),
                 0 0 20px rgba(255, 255, 255, 0.5),
                 0 0 30px rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
    font-weight: normal;
}

.subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    color: #C5BDB4;
    text-shadow: 0 0 1px #C5BDB4,
                 0 0 2px #C5BDB4,
                 0 0 3px #C5BDB4,
                 0 0 70px #000,
                 0 0 120px #000,
                 0 0 170px #000,
                 0 0 220px #000,
                 0 0 270px #000;
    margin: 50px 0 16px 0;
    font-weight: 300;
    letter-spacing: 3px;
    opacity: 1;
}

.subtitle:hover {
    opacity: 1;
}

@media (prefers-color-scheme: dark) {
    :root {
        --text: #ffffff;
        --card-bg: rgba(255, 255, 255, 0.1);
        --hover: rgba(255, 255, 255, 0.2);
    }
}

@media (max-width: 768px) {
    .links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .links {
        grid-template-columns: repeat(2, 1fr);
    }
} 