@font-face {
    font-family: "AppleChanceryCustom";
    src: url("../fonts/apple-chancery.ttf") format("truetype");
}

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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: #f5f5f5;
    min-height: 100vh;
    background: url("../images/background.jpg") no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.background-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: -1;
}

.container {
    max-width: 900px;
    width: 100%;
}

.hero {
    text-align: center;
    margin-bottom: 40px;
}

.name {
    font-family: "AppleChanceryCustom", cursive;
    font-size: clamp(48px, 8vw, 90px);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.tagline {
    font-size: clamp(16px, 2.5vw, 20px);
    opacity: 0.85;
}

.about-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.about-box h2 {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 26px;
}

.about-box p {
    margin-bottom: 20px;
    line-height: 1.7;
    opacity: 0.9;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.skills span {
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.social h3 {
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 18px;
    opacity: 0.9;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-links a {
    text-decoration: none;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 600px) {
    .about-box {
        padding: 25px;
    }

    .about-box h2 {
        font-size: 22px;
    }
}
