/* WATERMARK - YUGATA LABS @yugata.labs */
/* 
=========================================================
THEME: Soft Pastel Minimal
STYLE: Cream x Blush x Brown (Default)
=========================================================
PRESETS (Reference for Setup):

1. Cream x Blush x Brown (Default)
   --primary: #8D6E63
   --primary-light: #F7DDE2
   --text: #4E342E
   --bg: #FFF7F0

2. Lavender x Lilac x Deep Purple
   --primary: #7B68EE
   --primary-light: #E6E6FA
   --text: #2D2D2D
   --bg: #F8F8FF

3. Mint x Soft Green x Dark Olive
   --primary: #556B2F
   --primary-light: #E0F2F1
   --text: #1A237E
   --bg: #F1F8E9
=========================================================
*/

:root {
    /* Default: Cream x Blush x Brown */
    --primary: #8D6E63;
    --primary-light: #F7DDE2;
    --text: #4E342E;
    --bg: #FFF7F0;

    --white: #ffffff;
    --shadow: rgba(141, 110, 99, 0.08);
    /* Tinted shadow */
    --radius: 24px;
    --radius-sm: 16px;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

/* UTILS */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 16px auto 0;
    border-radius: 10px;
}

/* NAVBAR */
.navbar {
    padding: 24px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text);
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
}

/* WATERMARK - YUGATA LABS @yugata.labs */
/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    /* Space for navbar */
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 16px;
    color: var(--primary);
}

.hero-text h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 24px;
    opacity: 0.9;
}

.tagline {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px var(--shadow);
    opacity: 0.95;
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.hero-img-wrapper {
    position: relative;
}

.profile-pic {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius);
    display: block;
    margin: 0 auto;
    box-shadow: 20px 20px 0 var(--primary-light);
}

/* ABOUT */
.about-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text);
}

/* SKILLS */
.skills-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.skill-card {
    background: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary);
    box-shadow: 0 4px 15px var(--shadow);
    transition: 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-3px);
    background: var(--primary-light);
}

/* EXPERIENCE & EDUCATION */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-item {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    box-shadow: 0 5px 20px var(--shadow);
    border-left: 5px solid var(--primary-light);
    transition: 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-3px);
    border-left-color: var(--primary);
}

.timeline-item h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.company {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 16px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.description {
    opacity: 0.9;
}

/* CONTACT */
.contact-section {
    text-align: center;
    background: var(--primary-light);
    border-radius: var(--radius);
    padding: 80px 24px;
    max-width: 900px;
    margin: 0 auto 100px;
}

.contact-section h2 {
    color: var(--primary);
    margin-bottom: 24px;
}

.contact-section p {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .section-title::after {
        margin: 16px auto 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        box-shadow: 0 10px 20px var(--shadow);
        gap: 20px;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .profile-pic {
        max-width: 300px;
    }
}

/* WATERMARK - YUGATA LABS @yugata.labs */