/* Vulpes Solar Tech (VST) - Main Stylesheet */

body {
    font-family: 'Prompt', sans-serif;
    color: #2d2d2d;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 40%, #0f3460 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.1;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-image-placeholder {
    position: relative;
    display: inline-block;
}

.hero-product-showcase {
    animation: floatUp 3s ease-in-out infinite alternate;
}

@keyframes floatUp {
    from { transform: translateY(0); }
    to { transform: translateY(-12px); }
}

.ls-wide {
    letter-spacing: 3px;
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 16px !important;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.08) !important;
}

/* Product Cards */
.product-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08) !important;
}

/* Step Circle */
.step-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    background: #ffc107;
    color: #212529;
}

/* Chat Widget */
#chat-widget {
    z-index: 1050;
}

#chat-box {
    border-radius: 16px;
    overflow: hidden;
}

#chat-toggle-btn {
    transition: transform 0.3s ease;
}

#chat-toggle-btn:hover {
    transform: scale(1.1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #d4a800;
    border-radius: 3px;
}

/* Navbar */
.navbar-dark .nav-link {
    font-weight: 400;
    transition: color 0.2s;
    font-size: 0.9rem;
}

.navbar-dark .nav-link:hover {
    color: #ffc107 !important;
}

/* Footer */
footer a:hover {
    color: #ffc107 !important;
}

/* Cards */
.card {
    border-radius: 16px;
    overflow: hidden;
}

/* Rounded */
.rounded-4 {
    border-radius: 16px !important;
}

/* Buttons */
.btn-warning {
    color: #212529;
    font-weight: 500;
    border-radius: 8px;
}

.btn-warning:hover {
    background-color: #e0a800;
    color: #212529;
}

.btn-outline-light {
    border-radius: 8px;
}

.btn-outline-dark {
    border-radius: 8px;
}

.btn-lg {
    border-radius: 10px;
}

/* Badge */
.badge {
    font-weight: 500;
}

/* Table */
.table > thead > tr > th {
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Toast auto-hide */
.toast {
    animation: slideIn 0.3s ease, fadeOut 0.3s ease 4s forwards;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* Article Body */
.article-body {
    line-height: 1.8;
    color: #333;
}

/* Bg opacity helper */
.bg-opacity-10 {
    background-color: rgba(255, 193, 7, 0.1) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-image-placeholder {
        display: none;
    }

    .display-3 {
        font-size: 2.2rem;
    }

    .display-5 {
        font-size: 1.6rem;
    }

    .display-6 {
        font-size: 1.4rem;
    }
}
