@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --emerald: #10b981;
    --ocean: #0ea5e9;
    --cow: #8b5e3c;
    --monkey: #5c3a21;
    --glass: rgba(255,255,255,0.08);
    --glass-border: rgba(255,255,255,0.2);
}

/* GLOBAL */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding-top: 80px;
    background: linear-gradient(135deg, #0ea5e9, #10b981, #5c3a21);
    background-size: 300% 300%;
    animation: gradientMove 15s ease infinite;
    color: white;
    overflow-x: hidden;
}

@keyframes gradientMove {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}

/* GLASS EFFECT */
.glass {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* NAVBAR */
.navbar {
    background: rgba(0,0,0,0.4) !important;
    backdrop-filter: blur(15px);
}

.nav-link {
    color: white !important;
    margin-left: 15px;
}

.nav-link:hover {
    color: var(--emerald) !important;
}

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* BIG SPOTLIGHT LOGO */
.hero-logo {
    width: 220px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 40px rgba(255,255,255,0.9))
            drop-shadow(0 0 80px rgba(16,185,129,0.8));
    animation: pulseLogo 3s ease-in-out infinite;
}

@keyframes pulseLogo {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* BUTTON */
.btn-lux {
    background: linear-gradient(45deg, var(--emerald), var(--ocean));
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    color: white;
    font-weight: 600;
    transition: 0.4s;
}

.btn-lux:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(16,185,129,0.5);
}

/* CARDS */
.lux-card {
    padding: 30px;
    transition: 0.4s;
}

.lux-card:hover {
    transform: translateY(-10px);
}

/* CHAT */
.chat-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--emerald);
    padding: 15px 18px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    z-index: 999;
}

.chat-box {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 320px;
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-header {
    background: var(--emerald);
    padding: 10px;
}

.chat-body {
    height: 200px;
    padding: 10px;
    overflow-y: auto;
}

.chat-input {
    border: none;
    padding: 10px;
    width: 100%;
}

/* FORM */
input, select, textarea {
    border-radius: 12px;
    border: none;
    padding: 12px;
}

textarea { resize: none; }
