/* Booth Brochures Shortcode Styles */

.booth-brochures {
    margin: 20px 0;
    font-family: inherit;
}

.booth-brochures-error,
.booth-brochures-empty {
    padding: 20px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    color: #6c757d;
    text-align: center;
    margin: 20px 0;
}

.booth-brochures-empty {
    background-color: #e9ecef;
    border-color: #ced4da;
}

/* Brochure List - Flexible 3 Column Layout */
.brochure-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

/* Ensure 3 columns on larger screens */
@media (min-width: 768px) {
    .brochure-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Individual Brochure Items */
.brochure-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.brochure-item:hover {
    transform: translateY(-2px);
}

/* Brochure Link Wrapper */
.brochure-link-wrapper {
    margin-bottom: 15px;
}

/* Brochure Link */
.brochure-link {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.brochure-link:hover {
    text-decoration: none;
    transform: scale(1.05);
}

.brochure-link:focus {
    outline: 2px solid #145A7B;
    outline-offset: 4px;
    border-radius: 8px;
}

/* Brochure Icon */
.brochure-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.brochure-item:hover .brochure-icon {
    background: #e9ecef;
    transform: scale(1.1);
}

/* PDF Icon */
.pdf-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Brochure Title */
.brochure-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    line-height: 1.1;
    margin: 0;
    word-wrap: break-word;
    hyphens: auto;
}

.brochure-item:hover .brochure-title {
    color: #145A7B;
}

/* Responsive Design */
@media (max-width: 768px) {
    .brochure-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .brochure-item {
        padding: 15px;
    }
    
    .brochure-icon {
        width: 70px;
        height: 70px;
    }
    
    .pdf-icon {
        width: 35px;
        height: 35px;
    }
    
    .brochure-title {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .booth-brochures {
        margin: 15px 0;
    }
    
    .brochure-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .brochure-item {
        padding: 12px;
    }
    
    .brochure-icon {
        width: 60px;
        height: 60px;
    }
    
    .pdf-icon {
        width: 30px;
        height: 30px;
    }
    
    .brochure-title {
        font-size: 0.85rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .booth-brochures-error,
    .booth-brochures-empty {
        background-color: #343a40;
        border-color: #495057;
        color: #adb5bd;
    }
    
    .brochure-item {
        background: #2d3748;
        color: #e2e8f0;
    }
    
    .brochure-icon {
        background: #4a5568;
    }
    
    .brochure-item:hover .brochure-icon {
        background: #2d3748;
    }
    
    .brochure-title {
        color: #f7fafc;
    }
    
    .brochure-item:hover .brochure-title {
        color: #63b3ed;
    }
}

/* Print Styles */
@media print {
    .booth-brochures {
        margin: 0;
    }
    
    .brochure-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .brochure-item {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #000;
        background: transparent;
    }
    
    .brochure-icon {
        background: transparent;
    }
    
    .brochure-title {
        color: #000;
    }
}
