/* ============================================
   Bold Booth - Emergency Fixes
   Quick fixes for display issues
   ============================================ */

/* IMAGE-HEAVY SECTIONS NOW VISIBLE - ALL IMAGES UPLOADED! ✅ */
/*
.section-booth-interface,
.section-fishbowl-booth,
.section-guest-journey,
.section-scoreboard,
.game-screenshots {
    display: none;
}
*/

/* Ensure all images have max sizes */
.fishbowl-image-card img,
.fishbowl-img {
    max-width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.booth-interface-image {
    max-width: 300px !important;
}

/* Fix fishbowl video size */
.fishbowl-video {
    max-height: 400px;
    object-fit: contain;
}

/* Center and constrain large images */
.fishbowl-showcase,
.booth-showcase {
    max-width: 1000px;
    margin: 0 auto;
}

/* Handle missing images gracefully */
img {
    max-width: 100%;
    height: auto;
}

/* Fix navigation structure */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-primary, #FF1744);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl, 2rem);
    align-items: center;
    margin: 0;
    padding: 0;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px var(--spacing-xl, 2rem) var(--spacing-xl, 2rem);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    
    .nav-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }
    
    .btn-nav-cta {
        width: 100%;
        text-align: center;
        padding: var(--spacing-md, 1rem) var(--spacing-xl, 2rem);
        margin-top: var(--spacing-md, 1rem);
    }
}

.logo-image {
    max-height: 40px;
    width: auto;
}

/* Make logo text bigger when no image */
.logo-text {
    font-size: 1.5rem !important;
}

/* Ensure sections don't overflow */
section {
    overflow-x: hidden;
}

/* Fix large content */
.section-fishbowl-booth img,
.section-booth-interface img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Ensure booth interface image loads */
.booth-interface-image {
    display: block;
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
}

/* Ensure scoreboard image loads */
.scoreboard-image {
    display: block;
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 0 auto;
}

/* Fix fishbowl images */
.fishbowl-img {
    display: block;
    width: 100%;
    height: auto;
}

/* Prevent video duplication - hide any duplicate video elements */
.section-fishbowl-booth .fishbowl-video-container {
    position: relative;
    margin-bottom: var(--spacing-xl, 2rem);
}

.fishbowl-video {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: var(--radius-lg, 12px);
}

/* Image loading fallback */
img[src*="booth-interface.png"],
img[src*="scoreboard-display.png"],
img[src*="fishbowl-booth"] {
    background: #f5f5f5;
    min-height: 200px;
}

img[src*="booth-interface.png"]:after,
img[src*="scoreboard-display.png"]:after {
    content: 'Loading image...';
    display: block;
    text-align: center;
    padding: var(--spacing-xl, 2rem);
    color: #999;
}

/* ===== COMPARISON SECTION UPDATES ===== */
.complementary-notice {
    background: linear-gradient(135deg, #FFF9E6 0%, #E8F5E9 100%);
    border: 2px solid #FFD700;
    border-radius: var(--radius-lg, 12px);
    padding: var(--spacing-xl, 2rem);
    margin-bottom: var(--spacing-3xl, 3.5rem);
    display: flex;
    gap: var(--spacing-lg, 1.5rem);
    align-items: flex-start;
}

.notice-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.notice-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm, 0.75rem);
    color: var(--color-text-primary, #1A1A2E);
}

.notice-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    color: var(--color-text-secondary, #4A4A68);
}

.comparison-subtitle {
    font-size: 0.9rem;
    color: var(--color-text-light, #8E8EA9);
    margin-top: var(--spacing-xs, 0.5rem);
    font-weight: 500;
}

.comparison-plus {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm, 0.75rem);
}

.plus-symbol {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-success, #10B981);
    background: rgba(16, 185, 129, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plus-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-success, #10B981);
    text-align: center;
}

.complementary-benefits {
    margin-top: var(--spacing-3xl, 3.5rem);
    padding: var(--spacing-2xl, 2.75rem);
    background: var(--color-bg-secondary, #F8F9FA);
    border-radius: var(--radius-lg, 12px);
}

.complementary-benefits h3 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: var(--spacing-2xl, 2.75rem);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl, 2rem);
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md, 1rem);
}

.benefit-item h4 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm, 0.75rem);
    color: var(--color-text-primary, #1A1A2E);
}

.benefit-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-secondary, #4A4A68);
    margin: 0;
}

.standalone-notice {
    margin-top: var(--spacing-2xl, 2.75rem);
    padding: var(--spacing-2xl, 2.75rem);
    background: linear-gradient(135deg, #FF1744 0%, #D50000 100%);
    border: 3px solid #D50000;
    border-radius: var(--radius-lg, 12px);
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 23, 68, 0.3);
}

.standalone-notice h4 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-lg, 1.5rem);
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.standalone-notice p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: white;
    margin: 0;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 500;
}

.standalone-notice p strong {
    font-weight: 800;
    color: #FFD700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.standalone-notice p em {
    font-style: italic;
    color: #FFD700;
}

/* Simple description for photo booth column */
.simple-description {
    padding: var(--spacing-lg, 1.5rem);
}

.simple-description p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-secondary, #4A4A68);
    margin-bottom: var(--spacing-md, 1rem);
}

.simple-description ul {
    list-style: none;
    padding-left: var(--spacing-md, 1rem);
    margin: var(--spacing-md, 1rem) 0;
}

.simple-description li {
    font-size: 0.95rem;
    color: var(--color-text-secondary, #4A4A68);
    margin-bottom: var(--spacing-xs, 0.5rem);
    padding-left: var(--spacing-sm, 0.75rem);
    position: relative;
}

.simple-description li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary, #FF1744);
}

.highlight-text {
    font-weight: 600;
    color: var(--color-primary, #FF1744);
    font-size: 1.05rem;
    margin-top: var(--spacing-lg, 1.5rem);
}

@media (max-width: 768px) {
    .complementary-notice {
        flex-direction: column;
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-plus {
        margin: var(--spacing-lg, 1.5rem) 0;
    }
}
