/* Digital Alchemy v3 - ABSOLUTE LAYOUT FIX */

:root {
    --bg-core: #050505;
    --primary: #d946ef;
    /* Magenta */
    --secondary: #06b6d4;
    /* Cyan */
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --glass-panel: rgba(20, 20, 20, 0.7);
    --border-color: rgba(255, 255, 255, 0.15);
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Impact', 'Arial Black', sans-serif;
    --max-width: 1200px;
}

/* Base Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
}

body {
    background-color: var(--bg-core);
    color: var(--text-white);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Canvas Background */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
}

/* Nav */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: var(--text-white);
    text-transform: uppercase;
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary);
}

/* Hero Section */
.hero-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px;
}

.hero-tag {
    color: var(--primary);
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 30px;
    text-transform: uppercase;
    background: linear-gradient(to right, #fff, #999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-heading);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Profile Section */
.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 20px;
}

.glass-box {
    background: var(--glass-panel);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.profile-left {
    flex: 1;
    min-width: 300px;
}

.profile-right {
    flex: 1;
    min-width: 300px;
    border-left: 1px solid var(--border-color);
    padding-left: 50px;
}

h2.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-white);
    text-transform: uppercase;
    border-left: 5px solid var(--secondary);
    padding-left: 15px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    list-style: none;
}

.info-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.info-label {
    color: var(--text-gray);
    text-transform: uppercase;
    font-size: 0.8rem;
}

.info-value {
    color: var(--text-white);
    font-weight: 600;
    text-align: right;
}

.bio-content {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Awards Grid */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.award-card {
    background: #0f0f0f;
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 12px;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.award-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.award-year {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.05);
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 20px;
}

.award-org {
    color: var(--secondary);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.award-title {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: bold;
}

.award-desc {
    color: #aaa;
    margin-bottom: 25px;
    flex-grow: 1;
}

.btn-link {
    display: inline-block;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: bold;
    transition: 0.3s;
    align-self: flex-start;
}

.btn-link:hover {
    background: var(--secondary);
    color: #000;
}

/* Footer */
.footer {
    text-align: center;
    padding: 80px 20px;
    background: #000;
    margin-top: 100px;
    border-top: 1px solid var(--border-color);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.3s;
    border: 1px solid #333;
}

.icon-box:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .glass-box {
        padding: 20px;
    }

    .profile-right {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--border-color);
        padding-top: 30px;
    }
}