/* Tobacco Hero Section Styles - 100% Clone */
.tobacco-hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.tobacco-hero-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    padding: 0 1.25rem;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .tobacco-hero-container {
        padding: 0 calc(100vw / 24);
    }
}

.tobacco-hero-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video Background */
.tobacco-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

/* Text Styling */
.tobacco-hero-text-main,
.tobacco-hero-text-border {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    color: #ffffff;
    z-index: 3;
    opacity: 0.7;
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 700;
    line-height: 0.9;
    text-align: center;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    visibility: visible;
}

.tobacco-hero-text-border {
    color: transparent;
    -webkit-text-stroke: 2px #ffffff;
    text-stroke: 2px #ffffff;
}

.tobacco-hero-word {
    position: relative;
    display: inline-block;
    margin: 0 0.5rem;
}

.tobacco-hero-char {
    position: relative;
    display: inline-block;
    transform: translate(0px, 0px);
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Spotlight Effect */
.tobacco-hero-spotlight-container {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 2;
}

@media (min-width: 640px) {
    .tobacco-hero-spotlight-container {
        height: 200vh;
    }
}

.tobacco-hero-spotlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    color: #000000;
    cursor: pointer;
    z-index: 2;
}

@media (min-width: 640px) {
    .tobacco-hero-spotlight {
        position: sticky;
    }
}

.tobacco-hero-spotlight-icon {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10;
    opacity: 1;
    will-change: transform;
    transform: translate(-50%, -50%) scale(1, 1);
    transition: transform 0.1s ease-out, opacity 0.3s ease;
}

.tobacco-hero-spotlight-circle {
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tobacco-hero-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1.25rem;
    height: 1.25rem;
    color: #000000;
    display: inline-block;
}

.tobacco-hero-icon svg {
    width: 100%;
    height: 100%;
}

.tobacco-hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Animation Classes */
.tobacco-hero-char.animate {
    animation: charReveal 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

@keyframes charReveal {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .tobacco-hero-text-main,
    .tobacco-hero-text-border {
        font-size: clamp(2rem, 6vw, 4rem);
    }
    
    .tobacco-hero-container {
        padding: 0 1rem;
    }
}

/* Hover Effects */
.tobacco-hero-spotlight:hover .tobacco-hero-spotlight-circle {
    background-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.tobacco-hero-spotlight:hover ~ .tobacco-hero-text-main,
.tobacco-hero-spotlight:hover ~ .tobacco-hero-text-border {
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(1) !important;
}

/* Spotlight Active State */
.tobacco-hero-section.spotlight-active .tobacco-hero-text-main,
.tobacco-hero-section.spotlight-active .tobacco-hero-text-border {
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.tobacco-hero-section.spotlight-active .tobacco-hero-canvas {
    opacity: 1 !important;
}

.tobacco-hero-section.spotlight-active .tobacco-hero-spotlight-circle {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* Loading States */
.tobacco-hero-video[data-loading="true"] {
    opacity: 0.5;
}

.tobacco-hero-section.loaded .tobacco-hero-char {
    animation-delay: calc(var(--char-index) * 0.1s);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .tobacco-hero-char,
    .tobacco-hero-spotlight-icon,
    .tobacco-hero-canvas {
        transition: none;
        animation: none;
    }
}

/* Print Styles */
@media print {
    .tobacco-hero-section {
        display: none;
    }
}