/* WATERMARK - YUGATA LABS @yugata.labs */
/* 
=========================================================
THEME: Aurora Web3 Gradient (Futura)
STYLE: Futuristic Blur & Neon Glow UI
=========================================================
*/

:root {
    /* Default Gradient (Aurora Blue -> Purple -> Cyan) */
    --gradient-start: #3F5EFB;
    --gradient-mid: #9F6BFF;
    --gradient-end: #48C6EF;

    --bg-dark: #0a0a0a;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);

    --radius: 16px;
    --blur: 20px;
    --glow: 0 0 20px rgba(63, 94, 251, 0.5);
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* BACKGROUND AURORA EFFECT */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%,
            rgba(63, 94, 251, 0.15),
            rgba(159, 107, 255, 0.15),
            rgba(72, 198, 239, 0.15),
            transparent 70%);
    z-index: -1;
    animation: aurora 20s linear infinite;
    pointer-events: none;
}

@keyframes aurora {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

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;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* NAVBAR */
.navbar {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(var(--blur));
    border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav-links a:hover {
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.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;
    line-height: 1.1;
}

.hero-text h1 span {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-mid));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 24px;
    color: var(--text-secondary);
}

.tagline {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--text-secondary);
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.btn {
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    cursor: pointer;
    border: none;
    transition: 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    color: white;
    box-shadow: 0 0 20px rgba(63, 94, 251, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(63, 94, 251, 0.6);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gradient-mid);
    box-shadow: 0 0 15px rgba(159, 107, 255, 0.3);
}

.hero-img-wrapper {
    position: relative;
}

.profile-pic {
    width: 100%;
    max-width: 400px;
    border-radius: 24px;
    display: block;
    margin: 0 auto;
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 40px rgba(63, 94, 251, 0.2);
}

/* GLASS CARD STYLE */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 30px;
    transition: 0.3s ease;
}

.glass-card:hover {
    border-color: var(--gradient-mid);
    box-shadow: 0 0 20px rgba(159, 107, 255, 0.2);
    transform: translateY(-5px);
}

/* ABOUT */
.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* SKILLS */
.skills-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.skill-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-primary);
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
}

.skill-card:hover {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    border-color: transparent;
    box-shadow: 0 0 20px rgba(63, 94, 251, 0.4);
    transform: translateY(-3px);
}

/* EXPERIENCE & EDUCATION */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-item {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 24px;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
}

.timeline-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(63, 94, 251, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.timeline-item h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: linear-gradient(to right, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.company {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 16px;
    color: var(--gradient-end);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.description {
    color: var(--text-secondary);
}

/* CONTACT */
.contact-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(63, 94, 251, 0.1), rgba(72, 198, 239, 0.1));
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--blur));
    border-radius: var(--radius);
    padding: 80px 24px;
    max-width: 900px;
    margin: 0 auto 100px;
}

.contact-section h2 {
    margin-bottom: 24px;
}

.contact-section p {
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
    font-size: 0.9rem;
    color: var(--text-secondary);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
}

/* 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;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px;
        border-bottom: 1px solid var(--glass-border);
        gap: 20px;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .profile-pic {
        max-width: 300px;
    }
}

/* WATERMARK - YUGATA LABS @yugata.labs */