/* Reset styles for the hero section only */
.lighting-hero-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Main Hero Container */
.lighting-hero-container {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Enhanced Hero Section */
.lighting-hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 26, 0.8) 50%, rgba(45, 45, 45, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Store Image Background */
.lighting-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/images/store-image.jpg') center/cover no-repeat;
    opacity: 0.6;
    z-index: 1;
}

/* Dark Overlay for better text readability */
.lighting-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

/* Particle Canvas */
#lighting-particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

/* Geometric Shapes */
.lighting-geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
}

.lighting-shape {
    position: absolute;
    border: 2px solid rgba(244, 208, 63, 0.3);
    animation: lighting-float-rotate 20s linear infinite;
}

.lighting-shape.circle {
    border-radius: 50%;
}

.lighting-shape.triangle {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid rgba(244, 208, 63, 0.2);
    border-radius: 0;
    animation: lighting-triangle-spin 15s linear infinite;
}

.lighting-shape.hexagon {
    width: 60px;
    height: 34.64px;
    background: rgba(244, 208, 63, 0.1);
    position: relative;
    border: none;
}

.lighting-shape.hexagon:before,
.lighting-shape.hexagon:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
}

.lighting-shape.hexagon:before {
    bottom: 100%;
    border-bottom: 17.32px solid rgba(244, 208, 63, 0.1);
}

.lighting-shape.hexagon:after {
    top: 100%;
    border-top: 17.32px solid rgba(244, 208, 63, 0.1);
}

/* Lightning Effects */
.lighting-lightning {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, #f4d03f, transparent);
    opacity: 0;
    z-index: 5;
    box-shadow: 0 0 10px #f4d03f, 0 0 20px #f4d03f, 0 0 30px #f4d03f;
}

/* Enhanced Hero Content */
.lighting-hero-content {
    position: relative;
    z-index: 10;
    color: white;
    max-width: 900px;
    padding: 0 2rem;
}

.lighting-hero-title {
    font-size: 5rem;
    margin-bottom: 1rem;
    font-weight: 900;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

.lighting-hero-title .lighting-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100px) rotateX(90deg);
}

.lighting-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(50px);
    color: #f4f4f4;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.lighting-hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    line-height: 1.8;
    color: #f4f4f4;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}

/* Enhanced CTA Button */
.lighting-cta-container {
    opacity: 0;
    transform: translateY(50px);
}

.lighting-cta-button {
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(45deg, #f4d03f, #f7dc6f, #f4d03f);
    background-size: 200% 200%;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: lighting-gradient-shift 3s ease-in-out infinite;
}

.lighting-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.lighting-cta-button:hover::before {
    left: 100%;
}

.lighting-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Floating Elements */
.lighting-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 6;
    pointer-events: none;
}

.lighting-floating-bulb {
    position: absolute;
    font-size: 2rem;
    opacity: 0.7;
    animation: lighting-float-bulb 8s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(244, 208, 63, 0.8));
}

.lighting-energy-wave {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(244, 208, 63, 0.3);
    border-radius: 50%;
    animation: lighting-energy-pulse 4s ease-in-out infinite;
}

/* Spotlight Effect */
.lighting-spotlight {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(244, 208, 63, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 7;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Text Glow Effect */
.lighting-glow-text {
    animation: lighting-text-glow 2s ease-in-out infinite alternate;
}

/* Scroll Indicator */
.lighting-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    animation: lighting-bounce 2s infinite;
}

.lighting-scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid #f4d03f;
    border-bottom: 3px solid #f4d03f;
    transform: rotate(45deg);
    margin: 0 auto 10px;
}

.lighting-scroll-text {
    color: #f4d03f;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Animations */
@keyframes lighting-float-rotate {
    0% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
    75% { transform: translateY(-30px) rotate(270deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

@keyframes lighting-triangle-spin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes lighting-float-bulb {
    0%, 100% { transform: translateY(0px) rotate(-5deg); }
    25% { transform: translateY(-30px) rotate(5deg); }
    50% { transform: translateY(-15px) rotate(-3deg); }
    75% { transform: translateY(-25px) rotate(3deg); }
}

@keyframes lighting-energy-pulse {
    0% { transform: scale(0.8); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.5; }
    100% { transform: scale(0.8); opacity: 1; }
}

@keyframes lighting-text-glow {
    0% { text-shadow: 0 0 20px rgba(0, 0, 0, 0.8), 0 0 30px rgba(244, 208, 63, 0.5); }
    100% { text-shadow: 0 0 30px rgba(0, 0, 0, 0.8), 0 0 40px rgba(244, 208, 63, 0.8); }
}

@keyframes lighting-gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes lighting-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes lighting-lightning-flash {
    0% { opacity: 0; }
    10% { opacity: 1; }
    20% { opacity: 0; }
    100% { opacity: 0; }
}

/* Responsive */
@media (max-width: 768px) {
    .lighting-hero-title { font-size: 3rem; }
    .lighting-hero-subtitle { font-size: 1.2rem; }
    .lighting-hero-description { font-size: 1rem; }
}