:root {
    --bg-color: #0f172a; /* Slate 900 */
    --text-color: #e2e8f0; /* Slate 200 */
    --accent-color: #c0a062; /* Gold/Bronze */
    --secondary-bg: #1e293b; /* Slate 800 */
    --card-bg: rgba(30, 41, 59, 0.7);
    --nav-bg: rgba(15, 23, 42, 0.95);
    
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: #fff;
    font-weight: 600;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Utilities */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--accent-color);
    color: #000;
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-color);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.2);
    color: #fff;
    margin-left: 1rem;
}

.btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 1rem;
    opacity: 0.8;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: var(--accent-color);
}

.btn-contact {
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
}

.btn-contact:hover {
    background: var(--accent-color);
    color: #000 !important;
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-color);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu a {
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, rgba(192, 160, 98, 0.1), transparent 40%);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
}

.hero-text em {
    font-style: italic;
    color: var(--accent-color);
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-wrapper {
    width: 400px;
    height: 500px;
    border-radius: 20px; /* Slight rounding, not circle */
    overflow: hidden;
    position: relative;
    box-shadow: 20px 20px 0 rgba(192, 160, 98, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

/* Section Header */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.line {
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 1rem auto 0;
}

/* About Section */
.about-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 3rem;
    background: var(--secondary-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: var(--font-heading);
}

.stat-desc {
    font-size: 0.9rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    color: rgba(226, 232, 240, 0.9);
}
.about-text p { margin-bottom: 1.5rem; }

/* Experience Section */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: rgba(255,255,255,0.1);
}

.timeline-item {
    padding-left: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 24px;
    width: 14px;
    height: 14px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(192, 160, 98, 0.2);
}

.timeline-content {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: rgba(192, 160, 98, 0.3);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.company {
    display: block;
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.job-details li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    opacity: 0.8;
}

.job-details li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.experience-note {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    opacity: 0.7;
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.expertise-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.expertise-card:hover {
    background: var(--secondary-bg);
    transform: translateY(-10px);
    border-color: rgba(192, 160, 98, 0.3);
}

.expertise-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.expertise-card h3 {
    font-size: 1.25rem;
    font-family: var(--font-main);
    margin-bottom: 1.5rem;
}

.expertise-card ul li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    opacity: 0.8;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 0.5rem;
}

.expertise-card ul li:last-child {
    border: none;
}

/* Approach Section */
.approach {
    background: var(--secondary-bg);
}

.approach-text .lead {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
}

.approach-list {
    max-width: 800px;
    margin: 0 auto;
}

.approach-list li {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.approach-list li i {
    color: var(--accent-color);
}

/* Contact Section */
.contact-wrapper {
    background: linear-gradient(135deg, var(--secondary-bg), var(--bg-color));
    padding: 4rem;
    border-radius: 30px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
}

.contact-info p {
    max-width: 600px;
    margin: 1rem auto 3rem;
    font-size: 1.1rem;
    opacity: 0.8;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 50px;
    transition: var(--transition);
}

.contact-item:hover {
    background: var(--accent-color);
    color: #000;
}

.footer-bottom {
    text-align: center;
    margin-top: 4rem;
    opacity: 0.5;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .h1 { font-size: 2.5rem; }
    .hero-content { flex-direction: column-reverse; text-align: center; }
    .hero-text { margin-top: 2rem; }
    .hero-text p { margin: 0 auto 2rem; }
    .image-wrapper { width: 100%; max-width: 400px; height: 400px; }
    
    .nav-links { display: none; }
    .hamburger { display: block; }
    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: #fff;
        margin: 5px 0;
    }
}

@media (max-width: 600px) {
    .about-stats { flex-direction: column; gap: 2rem; }
}
