/* ===================================
   HERO TWO-COLUMN LAYOUT
   Left: Content | Right: PDF Preview
   =================================== */

/* Override single column from backup-inspired-clean.css */
.hero-content-grid {
    display: grid !important;
    grid-template-columns: 60% 40% !important;
    gap: 3rem !important;
    align-items: center !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    text-align: left !important;
}

/* Left column */
.hero-left {
    text-align: left !important;
}

.hero-title {
    text-align: left !important;
    margin-bottom: 1.5rem !important;
}

.hero-subtitle {
    text-align: left !important;
}

/* Right column - PDF preview */
.hero-right {
    position: relative;
}

.pdf-preview-slideshow {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.preview-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-text);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.preview-icon {
    width: 16px;
    height: 16px;
}

.slideshow-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.slideshow-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Slideshow navigation */
.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slideshow-nav:hover {
    background: rgba(0, 0, 0, 0.7);
}

.slideshow-nav svg {
    width: 20px;
    height: 20px;
}

.slideshow-nav-prev {
    left: 10px;
}

.slideshow-nav-next {
    right: 10px;
}

/* Slideshow dots */
.slideshow-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slideshow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slideshow-dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

.slideshow-caption {
    position: absolute;
    bottom: 50px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.875rem;
    text-align: center;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hero-content-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    .hero-left {
        text-align: center !important;
    }
    
    .hero-title {
        text-align: center !important;
    }
    
    .hero-subtitle {
        text-align: center !important;
    }
    
    /* Hide PDF slideshow on mobile */
    .hero-right {
        display: none !important;
    }
}