/*
Theme Name: Cloud Architect Future
Theme URI: https://example.com/cloud-architect
Author: Umesh Rathore
Description: A Light Mode, Video-Background WordPress Theme for Cloud Engineers. Features Glassmorphism and Tailwind CSS.
Version: 1.3
License: GNU General Public License v2 or later
Text Domain: cloud-architect
*/

/* * NOTE: Main styling is handled by Tailwind CSS (loaded via CDN in functions.php).
 * This file is primarily for WordPress theme recognition.
 */

body {
    overflow-x: hidden;
}

/* 1. LENIS COMPATIBILITY */
/* We set this to auto because Lenis handles the smoothing via JavaScript. */
html {
    scroll-behavior: auto !important;
}

/* 2. CUSTOM SCROLLBAR (Existing Feature) */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* 3. SEAMLESS VIDEO OVERLAY */
/* This gradient ensures the video background blends perfectly into the solid white footer. */
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-bg video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom, 
        rgba(255, 255, 255, 0.7) 0%, 
        rgba(255, 255, 255, 0.9) 80%, 
        rgba(255, 255, 255, 1) 100%
    ) !important;
    backdrop-filter: blur(2px);
}

/* 4. GLASSMORPHISM HELPERS */
.glass {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
}

.glass-card {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
}

/* WhatsApp Pulse Animation */
@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.fa-whatsapp {
    animation: whatsapp-pulse 2s infinite;
}