/**
 * Placeholder Image Styles
 * 
 * These styles create colored placeholder boxes with text that can be used
 * until actual images are available for the website.
 */

.placeholder-image {
    position: relative;
    background-color: #f0f0f0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: bold;
    font-size: 1.25rem;
    text-align: center;
    padding: 1rem;
}

.placeholder-image.primary {
    background-color: #0056b3;
    color: white;
}

.placeholder-image.secondary {
    background-color: #e9ecef;
    color: #343a40;
}

.placeholder-image.accent {
    background-color: #ff6b6b;
    color: white;
}

.placeholder-image.dark {
    background-color: #343a40;
    color: white;
}

.placeholder-image.light {
    background-color: #f8f9fa;
    color: #343a40;
}

.placeholder-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
}

/* Common aspect ratios */
.placeholder-image.ratio-16x9 {
    aspect-ratio: 16/9;
}

.placeholder-image.ratio-4x3 {
    aspect-ratio: 4/3;
}

.placeholder-image.ratio-1x1 {
    aspect-ratio: 1/1;
}

.placeholder-image.ratio-3x2 {
    aspect-ratio: 3/2;
}

.placeholder-image.icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.75rem;
} 