:root {
    --primary: #d4af37; /* Golden accent */
    --primary-hover: #b8962e;
    --bg-dark: #0a0a0a;
    --card-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #f0f0f0;
    --text-dim: #a0a0a0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #0a0a0a 100%);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
nav {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    width: 100%;
    z-index: 10;
}

.logo {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary);
    padding-left: 20px; /* Added indentation */
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)), url('assets/images/hero-bg.jpg'); /* We'll generate this */
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 800px;
}

#hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

#hero h1 span {
    display: block;
    color: var(--primary);
    background: linear-gradient(90deg, #d4af37, #f1e5ac);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#hero p {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: #000;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    transform: translateY(-5px);
    background-color: var(--primary-hover);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

/* Benefits Section */
#benefits {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.benefit-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.benefit-card p {
    color: var(--text-dim);
}

/* Assistant Section */
#assistant {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.assistant-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.assistant-header {
    background: rgba(212, 175, 55, 0.1);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.assistant-header h3 {
    font-size: 1.1rem;
    color: var(--primary);
}

.assistant-header p {
    font-size: 0.8rem;
    color: #4CAF50; /* Online green */
}

#chat-container {
    padding: 2rem;
    height: 450px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow-y: auto;
}

.message {
    max-width: 80%;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    font-size: 1rem;
    animation: fadeIn 0.4s ease forwards;
}

.message.bot {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.1);
    border-bottom-left-radius: 5px;
}

.message.user {
    align-self: flex-end;
    background: var(--primary);
    color: #000;
    border-bottom-right-radius: 5px;
    font-weight: 500;
}

.chat-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.btn-option {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}

.btn-option:hover {
    background: var(--primary);
    color: #000;
}

/* Footer */
footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

footer p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    #hero {
        text-align: center;
    }
    #hero p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta {
        display: flex;
        justify-content: center;
    }
    .assistant-wrapper {
        margin: 0 1rem;
    }
}
/* Lifestyle Section */
#lifestyle {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lifestyle-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
}

.lifestyle-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.phrase-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    border-left: 4px solid var(--primary);
    backdrop-filter: blur(10px);
}

.phrase-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.phrase-item p {
    color: var(--text-dim);
    font-size: 1rem;
}

@media (max-width: 992px) {
    .lifestyle-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .phrase-item {
        text-align: left;
    }
}
