/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;600&family=Playfair+Display:ital,wght@1,400;1,700&display=swap');

:root {
    --bg-color: #050505;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --accent: #3b82f6; /* Azure Blue */
    --accent-glow: #6366f1; /* Indigo */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* We will make a custom cursor */
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    height: 100vh;
    overflow: hidden; /* No scrolling for a slick feel */
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

/* The Moving Aurora Background */
.background-gradient {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, #1e1b4b 0%, #000000 50%);
    z-index: -1;
    animation: pulse 10s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.1); opacity: 0.8; }
}

/* Typography */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-style: italic;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeUp 1.2s cubic-bezier(0.2, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

p.subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-secondary);
    margin-top: 20px;
    animation: fadeUp 1.2s cubic-bezier(0.2, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
    transform: translateY(20px);
}

/* The Button */
.cta-btn {
    margin-top: 50px;
    padding: 15px 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    animation: fadeUp 1.2s cubic-bezier(0.2, 1, 0.3, 1) 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.cta-btn:hover {
    background: white;
    color: black;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 1px solid white;
    border-radius: 50%;
    position: absolute;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    z-index: 9999;
}

.cursor.hovered {
    transform: translate(-50%, -50%) scale(2);
    background: rgba(255, 255, 255, 0.1);
    border-color: transparent;
}

/* Animations */
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Page 2 Specifics */
.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    width: 80%;
    align-items: center;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    transition: all 0.5s ease;
}

.card:hover {
    border-color: var(--accent-glow);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px -10px rgba(99, 102, 241, 0.2);
}

.skill-tag {
    font-size: 0.75rem;
    border: 1px solid #333;
    padding: 5px 15px;
    border-radius: 50px;
    margin-right: 10px;
    color: #aaa;
    display: inline-block;
    margin-top: 10px;
}
