.placeholder-image {
    background-color: #0077b6;
    background-image: linear-gradient(135deg, #0077b6 0%, #2a9d8f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    text-align: center;
    border-radius: var(--border-radius-md);
    height: 200px;
    width: 100%;
    font-size: 1rem;
    padding: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.placeholder-image::before {
    content: "📷";
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 1.5rem;
}

.placeholder-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
    opacity: 0.3;
}

.beach-image .placeholder-image {
    background-image: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
    height: 350px;
}

.park-image .placeholder-image {
    background-image: linear-gradient(135deg, #2a9d8f 0%, #52b788 100%);
    height: 350px;
}

.intro-image .placeholder-image {
    background-image: linear-gradient(135deg, #e9c46a 0%, #f4a261 100%);
}

.card .placeholder-image {
    height: 200px;
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
}
