:root {
    --black: #222222;
    --white: #F4F3EF;
    --gray-light: #ecebe6;
    --gray-mid: #999999;
    --accent: #B4C4A8;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --container-max: 1200px;
    
    /* Static Colors (Replaced dynamic ones) */
    --bg-color: var(--white);
    --text-primary: var(--black);
    --text-secondary: var(--gray-mid);
    --header-bg: rgba(244, 243, 239, 0.9);
    --card-bg: var(--gray-light);
    --border-color: #e4e3de;
}

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

html {
    scroll-behavior: smooth;
}

body.minime-theme {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-color);
    line-height: 1.8;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Header */
.main-header {
    height: 100px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.main-header nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}

.burger {
    display: none;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn-dark {
    background: var(--text-primary);
    color: var(--bg-color);
    border: 1px solid var(--text-primary);
}

.btn-dark:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(180, 196, 168, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: var(--text-primary);
    color: var(--bg-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-sm {
    padding: 0.8rem 2rem;
    font-size: 0.75rem;
}

/* Sections */
.section {
    padding: 120px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-tag {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 15px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    max-width: 700px;
}

.bg-black {
    background: #222;
    color: var(--white);
}

.white-text h2 {
    color: var(--white);
}

/* Hero */
.split-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 5%;
}

.hero-text {
    flex: 1;
}

.sub-heading {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    display: block;
}

.hero-text h1 {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -3px;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 450px;
    margin-bottom: 2rem;
}

.hero-badges {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 1rem;
}

.hero-badges img {
    height: 100px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    transition: var(--transition);
    display: block;
    cursor: pointer;
}

.hero-badges img.badge-dbt {
    height: 115px;
    max-width: 180px;
}

.hero-badges img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.image-wrapper {
    width: 350px;
    height: 350px;
    background: transparent;
    overflow: hidden;
    border-radius: 50%;
    border: 5px solid var(--white);
    box-shadow: 0 15px 45px rgba(0,0,0,0.15); /* Increased shadow */
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About */
.about-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
}

.about-bio p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.about-expertise h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.expertise-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

.expertise-list li span {
    color: var(--accent);
    margin-right: 15px;
    font-size: 0.8rem;
}

.skills-tags {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.skill-tag {
    font-size: 0.8rem;
    font-weight: 700;
    background: var(--card-bg);
    padding: 0.3rem 1rem;
}

/* Social Icons */
.social-minimal i {
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-minimal a:hover i {
    color: var(--accent);
    transform: scale(1.1);
}


.experience-groups {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.exp-category-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: -1px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.experience-list {
    display: flex;
    flex-direction: column;
}

.exp-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.exp-item:last-child {
    border-bottom: none;
}

.exp-company {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    margin-left: 10px;
}

.exp-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.exp-skills span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    background: rgba(180, 196, 168, 0.15);
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(180, 196, 168, 0.3);
}

.exp-year {
    font-weight: 700;
    color: var(--accent);
}

.exp-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
}

.exp-company {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent);
    margin-left: 10px;
    opacity: 0.9;
}

/* Portfolio (Removed) */

/* Certificates */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.cert-item {
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 10px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: var(--transition);
}

.cert-item:hover {
    transform: translateY(-5px);
    background: var(--bg-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.cert-year {
    font-weight: 800;
    color: var(--accent);
    font-size: 1.1rem;
}

.cert-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.cert-info p {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.massive-title {
    font-size: 6rem;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -3px;
}

.social-minimal {
    margin-top: 3rem;
    display: flex;
    gap: 2rem;
}

.social-minimal a {
    font-weight: 700;
    border-bottom: 2px solid var(--text-primary);
}

.social-minimal a i {
    padding-bottom: 5px;
}

.contact-form-box {
    background: var(--card-bg);
    padding: 60px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    background: var(--bg-color);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
}

textarea {
    margin-bottom: 20px;
}

/* Footer */
.minimal-footer {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    opacity: 0.7;
}

.footer-content .social-minimal {
    margin: 0;
}

.footer-content .social-minimal a {
    border: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-text h1 { font-size: 4.5rem; }
    .massive-title { font-size: 4.5rem; }
}

@media (max-width: 768px) {
    .main-header nav { justify-content: flex-end; }
    .burger { display: block; }
    .hero-container { flex-direction: column-reverse; text-align: center; }
    .hero-text h1 { font-size: 3.5rem; margin-top: 2rem; }
    .hero-desc { margin: 0 auto 2rem; }
    .hero-badges { justify-content: center; }
    .hero-btns { justify-content: center; }
    .about-split, .contact-wrapper { grid-template-columns: 1fr; gap: 50px; }
    .exp-item { grid-template-columns: 1fr; gap: 10px; }
    .cert-grid { grid-template-columns: 1fr; }
    .massive-title { font-size: 3.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .image-wrapper { width: 250px; height: 250px; margin: 0 auto; }
}
