/*
=============================================================================
CHINTAN LAD - PORTFOLIO WEBSITE STYLES
=============================================================================
Custom CSS for personal portfolio website
Maintains design consistency with Tailwind CSS
=============================================================================
*/

/* =============================================================================
   BASE STYLES
   ============================================================================= */

body {
    background-color: rgb(248, 247, 255);
    color: rgb(29, 61, 60);
    font-family: 'Inter', system-ui, sans-serif;
}

.section-padding {
    padding: 5rem 0;
}

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

.smooth-scroll {
    scroll-behavior: smooth;
}

/* =============================================================================
   GRADIENT & SHADOW UTILITIES
   ============================================================================= */

.hero-gradient {
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.05) 0%, rgba(65, 90, 119, 0.05) 100%);
}

.card-shadow {
    box-shadow: 0 10px 25px rgba(13, 27, 42, 0.1);
}

/* =============================================================================
   LINKEDIN-STYLE PROFILE SECTION
   ============================================================================= */

.profile-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(13, 27, 42, 0.1);
}

/* =============================================================================
   NAVIGATION STYLES & HOVER EFFECTS
   ============================================================================= */

.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #415a77;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* =============================================================================
   VIDEO BACKGROUND STYLES
   ============================================================================= */

.header_background-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

#myVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* =============================================================================
   VIDEO OVERLAY OPTIONS
   ============================================================================= */

/* Primary overlay for better text readability - matching color scheme */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(248, 247, 255, 0.92) 0%, 
        rgba(224, 225, 221, 0.88) 25%,
        rgba(65, 90, 119, 0.15) 50%,
        rgba(27, 38, 59, 0.25) 75%,
        rgba(248, 247, 255, 0.9) 100%);
    z-index: 1;
}

/* Alternative subtle overlay option */
.video-overlay-alt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(248, 247, 255, 0.95) 0%, 
        rgba(119, 141, 169, 0.08) 30%,
        rgba(65, 90, 119, 0.12) 70%,
        rgba(248, 247, 255, 0.92) 100%);
    z-index: 1;
}

/* Ensure content is above overlay */
.hero-content {
    position: relative;
    z-index: 2;
}

/* =============================================================================
   RESPONSIVE DESIGN & MOBILE OPTIMIZATIONS
   ============================================================================= */

/* Additional responsive utilities can be added here if needed */

/* =============================================================================
   HOVER EFFECTS & INTERACTIONS
   ============================================================================= */

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

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(13, 27, 42, 0.15);
}

/* =============================================================================
   END OF STYLES
   ============================================================================= */
