/* Root colors are defined in your global variables CSS */

/* General */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg);
    color: var(--text-primary);
}

.container {
    width: 100%;
}

header {
    margin-bottom: 40px;
}

.header-content {
    margin-top: 0px;
}

.icon {
    font-size: 28px;
    color: var(--accent);
}

.dot {
    font-size: 5px;
    border-radius: 5px;
    color: var(--warning);
}

.contact a {
    font-size: 1rem;
    line-height: 1;
    color: var(--text-secondary);
    font-weight: 500;
}

.menu {
    font-size: 24px;
    cursor: pointer;
}

.profile {
    padding: 0;
    display: flex;
    gap: 1.2rem;
}

.detail {
    gap: 1rem;
}

.profile-img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.65);
}

h2 {
    font-size: 1.6em;
    margin: 0 0;
    color: var(--text-secondary);
    line-height: 1.2;
}

.name {
    display: block;
    font-size: 2rem; 
    color: var(--text-primary);
}

.alias {
    display: block; 
    font-size: 1rem; 
    color: var(--text-secondary);
}

.title {
    color: var(--text-primary);
    font-weight: 400;
    font-size: 1.1em;
}

.working {
    color: var(--warning);
}

.working:hover {
    color: var(--warning);
}

p {
    color: var(--text-secondary); 
    font-size: 1.1em;
    line-height: 1.6;
    margin-top: 10px;
}

.company {
    color: var(--warning);
    font-weight: 700;
    font-size: 1.8em;
}

.open-to-work {
    color: var(--text-primary) !important;
    vertical-align: middle;
    display: flex;
    padding: 8px;
    margin-right: 4px;
    align-items: center;
    gap: 10px;
}

.open-to-work img {
    height: 20px;
    width: 20px;
}

.open-to-work span {
    font-size: 0.8rem;
    font-weight: 600;
}

.call-section {
    display: flex;
    margin: 25px 0;
    gap: 1rem;
}

.book-call {
    white-space: nowrap; 
    background-color: var(--button-bg);
    color: var(--button-text);
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 100px;
    transition: background-color 0.3s;
}

.book-call:hover {
    background-color: var(--button-hover);
}

.connect {
    color: var(--text-secondary);
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 400px;
    /* margin: 0 auto; */
}

/* Project Section (Glassy Card) */
.project-section {
    background: var(--bg-glass);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    /* border: 1px solid var(--border-dark); */
    border-radius: 20px;
    padding: 20px;
    /* margin-top: 10px; */
    max-width: 95%;
    max-height: 375px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    overflow-y: auto;
    color: var(--text-primary);
}
