/* WATERMARK - YUGATA LABS @yugata.labs */
:root {
    --primary-color: #00b894;
    /* Soft Blue */
    --secondary-color: #1A4D2E;
    /* Darker accent if needed, or just dark text */
    --text-color: #333;
    --bg-color: #fff;
    --bg-light: #f4f9fc;
    /* Very light blueish gray */
    --white: #fff;
    --transition: all 0.3s ease;
}

/* WATERMARK - YUGATA LABS @yugata.labs  */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    scroll-behavior: smooth;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
/* WATERMARK - YUGATA LABS @yugata.labs */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e0f2fe 100%);
    padding-top: 70px;
    /* Navbar height */
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.highlight {
    color: var(--primary-color);
}

.hero-text h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #666;
}

/* WATERMARK - YUGATA LABS @yugata.labs  */
.tagline {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
}

.btn-social {
    display: inline-block;
    margin-right: 10px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-social:hover {
    color: var(--primary-color);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    margin: 10px auto 0;
}

.bg-light {
    background: var(--bg-light);
}

.about-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Skills */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.skill-card {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    transition: var(--transition);
}

.skill-card:hover {
    transform: translateY(-5px);
}

/* Experience */
.timeline-item {
    border-left: 2px solid var(--primary-color);
    padding-left: 20px;
    margin-bottom: 30px;
}

.timeline-item h3 {
    margin-bottom: 5px;
}

.company {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

/* Contact */
.big-btn {
    display: block;
    width: max-content;
    margin: 20px auto 0;
}

/* Footer */
footer {
    background: #333;
    color: var(--white);
    text-align: center;
    padding: 20px 0;
}

/* Mobile */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 5px 0;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-image {
        margin-bottom: 30px;
    }

    .hero-image img {
        width: 200px;
        height: 200px;
    }

    .nav-links {
        position: absolute;
        right: 0;
        top: 70px;
        background: var(--white);
        flex-direction: column;
        width: 100%;
        text-align: center;
        transform: translateY(-150%);
        transition: var(--transition);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links li {
        margin: 20px 0;
    }

    .hamburger {
        display: block;
    }
}

/* WATERMARK - YUGATA LABS @yugata.labs */
/* WATERMARK - YUGATA LABS @yugata.labs */