@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@300;400;700;900&family=Playfair+Display:ital,wght@0,400;0,900;1,400&display=swap');

:root {
    --bg: #000000;
    --fg: #ffffff;
    --grey: #1a1a1a;
    --light-grey: #333333;
    --accent: #f2f2f2;
    --transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    --cursor: url('cursor.png') 32 32, auto;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url('cursor.png') 32 32, auto !important;
}

body {
    font-family: 'Unbounded', sans-serif;
    background-color: var(--bg);
    color: var(--fg);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

/* Custom Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    z-index: 1000;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.logo {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.nav-link {
    font-size: 0.7rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--fg);
    letter-spacing: 0.2em;
    margin-left: 2rem;
}

/* Hero Section - High Fidelity Chic */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 5%;
    text-align: center;
    background: #000;
    overflow: hidden;
}

.hero-title {
    font-size: clamp(5rem, 20vw, 24rem);
    font-weight: 900;
    line-height: 0.75;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 40px rgba(0,0,0,1));
}

.hero-image-container {
    position: absolute;
    width: 28vw;
    z-index: 10;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-image-container img {
    width: 100%;
    mix-blend-mode: color-dodge; /* Chic monochrome overlap */
    filter: grayscale(100%) contrast(1.1);
    animation: floating 12s ease-in-out infinite;
}



@keyframes floating {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10px, -20px) scale(1.02); }
}

.hero-sub {
    font-size: 0.9rem;
    max-width: 400px;
    margin-top: 2rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    font-weight: 300;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

/* Buttons - "Cute but Chic" */
.btn-chic {
    margin-top: 2rem;
    padding: 1.2rem 3rem;
    background: var(--fg);
    color: var(--bg);
    border: none;
    font-size: 0.9rem;
    font-weight: 900;
    border-radius: 4px;
    transition: var(--transition);
    transform-origin: center;
}

.btn-chic:active {
    transform: scale(0.9) rotate(-2deg);
}

.btn-chic:hover {
    background: transparent;
    color: var(--fg);
    box-shadow: inset 0 0 0 2px var(--fg);
}

/* Background Stickers Overlay */
.bg-sticker {
    position: fixed;
    width: 15vw;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

/* Chatbot UI */
#chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
}

.chat-bubble {
    width: 60px;
    height: 60px;
    background: var(--fg);
    color: var(--bg);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: var(--transition);
}

.chat-bubble:active {
    transform: scale(0.85);
}

.chat-bubble img {
    width: 32px;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    height: 450px;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

.chat-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}


.chat-header .dot {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.msg {
    padding: 0.8rem 1rem;
    border-radius: 8px;
    max-width: 80%;
    font-size: 0.85rem;
}

.msg.bot { background: var(--grey); align-self: flex-start; }
.msg.user { background: var(--fg); color: var(--bg); align-self: flex-end; }

.chat-input {
    padding: 1rem;
    background: var(--bg);
    display: flex;
}

.chat-input input {
    background: transparent;
    border: none;
    color: var(--fg);
    flex: 1;
    font-family: inherit;
    font-size: 0.85rem;
}

.chat-input input:focus { outline: none; }

/* Chic Profile Section */
.profile-section {
    padding: 10% 5%;
    border-top: 1px solid var(--border);
}

.profile-card {
    text-align: center;
    border: 1px solid var(--border);
    padding: 3rem;
    border-radius: 8px;
    transition: var(--transition);
}

.profile-card:hover {
    background: var(--grey);
}
