/* LUMA Luxury Theme for Bootstrap 5 */

:root {
    --luma-gold: #c9a55a;
    --luma-gold-light: #d4af37;
    --luma-gold-dark: #9d7f3c;
    --luma-gold-subtle: #f5ead5;
    --luma-cream: #fdfcfa;
    --luma-dark: #1a1a1a;
    --luma-gray: #6b7280;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.9);
}

body {
    font-family: var(--font-body);
    color: var(--luma-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.luma-heading {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.text-gold {
    color: var(--luma-gold) !important;
}

.bg-cream {
    background-color: var(--luma-cream) !important;
}

.bg-gold {
    background-color: var(--luma-gold) !important;
}

.bg-gold-light {
    background-color: var(--luma-gold-subtle) !important;
}

/* Buttons */
.btn-gold {
    background: linear-gradient(135deg, #c9a55a 0%, #d4af37 100%);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#footer .btn-gold {
    color: #1a1a1a;
}

.btn-gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-gold:hover::after {
    left: 100%;
    transition: all 0.6s ease;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #d4af37 0%, #e6c35c 100%);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(201, 165, 90, 0.25);
}

.hover-up {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .1) !important;
}

/* Navbar */
.blurred-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.luma-logo {
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--luma-gold);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: 80px;
    /* Offset for navbar */
    background: url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?auto=format&fit=crop&q=80&w=2000') center/cover no-repeat;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 45%, rgba(255, 255, 255, 0.4) 100%);
    z-index: 1;
}

/* Chat Mockup */
.chat-mockup {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    max-width: 380px;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.chat-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.chat-msg {
    position: relative;
    max-width: 85%;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Problem Cards */
.card-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* Helpers */
.shrink-0 {
    flex-shrink: 0;
}

.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.max-w-600 {
    max-width: 600px;
}

/* Dashboard Mockup */
.dashboard-mockup {
    transform: perspective(1000px) rotateY(2deg);
    transition: all 0.5s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

/* Floating Try It */
.floating-try {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1040;
    cursor: pointer;
    animation: float 3s ease-in-out infinite;
}

.floating-try-content {
    background: linear-gradient(135deg, #c9a55a 0%, #d4af37 100%);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(201, 165, 90, 0.4);
    border: none;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.floating-try:hover .floating-try-content {
    background: var(--luma-gold);
    color: white;
    transform: scale(1.05);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .section-padding {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .hero-bg-overlay {
        background: rgba(255, 255, 255, 0.92);
        /* More opaque on mobile for readability */
    }

    .chat-mockup,
    .dashboard-mockup {
        transform: none !important;
        max-width: 100%;
        margin-top: 2rem;
    }

    .display-4 {
        font-size: 2.5rem;
    }

    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 0 0 1rem 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
}

/* iPhone SE Specific (Small Screens) */
@media (max-width: 380px) {
    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    h1.display-4 {
        font-size: 2rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }

    .pricing-card {
        padding: 1.5rem !important;
    }

    .floating-try {
        display: none;
    }

    /* Hide on very small screens to avoid obstruction */
}