:root{
--accent-color-text: #fff;
--accent-color-bg: #333;
--color-tagline: #666;
}

/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;

}
main {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
}
.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Skill Item (badge-like) */
.skill-item {
    background-color: white;
    color: #333;
    padding: 8px 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95em;
    transition: all 0.3s ease;
}
.skill-item:hover {
    background-color: var(--accent-color-bg);
    color: white;
    border-color: var(--accent-color-bg);
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.skill-item i {
    font-size: 1.1em;
}


/* Header Styles */
header {
    background: var(--accent-color-bg);
    color: var(--accent-color-text);
    padding: 10px 0;
    text-align: center;
}
header h1 {
    margin: 0;
}

/* Navigation Styles */
nav {
    margin: 20px 0;
    font-size: 2rem;
}
nav, footer .social-icons {
    user-select: none;
    cursor: default;
}
nav a {
    color: var(--accent-color-text);
    text-decoration: none;
    margin: 0 15px;
}
nav a:hover {
    text-decoration: underline;
}

/* Profile Styles */
.profile {
    text-align: center;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.profile-text {
    text-align: left;
}
.profile img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
}
.tagline {
    font-style: italic;
    color: var(--color-tagline);
}

/* Footer Styles */
footer {
    background: var(--accent-color-bg);
    color: var(--accent-color-text);
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}
footer a {
    color: var(--accent-color-text);
    text-decoration: none;
    margin: 0 10px;
    user-select: all;
}
footer a:hover {
    text-decoration: underline;
}

a.unstyled-link {
    text-decoration: none;
    color: inherit;
}

/* Divider Styles */
hr {
    border: 0;
    height: 1px;
    width: 20%;
}
hr.footer-divider {
    background: var(--accent-color-text);
}

/* Button Styles */
button {
    background-color: var(--accent-color-bg);
    color: var(--accent-color-text);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

/* Header Styles */
header span a {
    color: var(--accent-color-text);
    position: relative;
    display: inline-block;
}
header span a::after, header span a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--accent-color-bg), var(--accent-color-text));
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease-out;
}
header span a::before {
    top: -5px;
    transform-origin: left;
}
header span a:hover {
    text-decoration: none;
}
header span a:hover::after, header span a:hover::before {
    transform: scaleX(1);
}


@media (max-width: 600px) {
    /* Global Styles */
    .container {
        width: 95%;
    }
    /* Profile Styles */
    .profile {
        flex-direction: column;
        text-align: center;
    }
    .profile-text {
        text-align: center;
    }
    .profile img {
        width: 100px;
        height: 100px;
    }
}