/* Placeholders and No-Image Design System */

/* Logo */
.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text::before {
    content: "🚛";
    font-size: 2rem;
}

/* Hero Section Placeholder */
.hero-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.hero-placeholder::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255,255,255,0.1) 25%, 
        transparent 25%, 
        transparent 50%, 
        rgba(255,255,255,0.1) 50%, 
        rgba(255,255,255,0.1) 75%, 
        transparent 75%, 
        transparent);
    background-size: 100px 100px;
    animation: move-bg 30s linear infinite;
    opacity: 0.3;
}

@keyframes move-bg {
    0% { background-position: 0 0; }
    100% { background-position: 1000px 0; }
}

/* Service Icons */
.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    position: relative;
    overflow: hidden;
}

.service-icon::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255,255,255,0.1) 25%, 
        transparent 25%, 
        transparent 50%, 
        rgba(255,255,255,0.1) 50%, 
        rgba(255,255,255,0.1) 75%, 
        transparent 75%, 
        transparent);
    background-size: 20px 20px;
    opacity: 0.2;
}

.service-icon.house::before { content: "🏠"; }
.service-icon.office::before { content: "🏢"; }
.service-icon.packing::before { content: "📦"; }
.service-icon.storage::before { content: "🏪"; }

/* Generic Image Placeholders */
.image-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--bg-light), var(--border-light));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-light);
    border: 2px dashed var(--border-light);
    position: relative;
    overflow: hidden;
}

.image-placeholder::after {
    content: "📷";
    position: absolute;
    font-size: 2rem;
}

/* About Section Placeholder */
.about-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.about-placeholder::after {
    content: "👥";
}

/* Team Member Placeholder */
.team-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    margin: 0 auto 1rem;
}

.team-placeholder::after {
    content: "👤";
}

/* Gallery Placeholder */
.gallery-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--bg-light), var(--border-light));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-light);
    border: 2px dashed var(--border-light);
    margin-bottom: 1rem;
}

/* Testimonial Avatar Placeholder */
.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.testimonial-avatar::after {
    content: "👤";
}

/* Feature Icons */
.feature-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-placeholder {
        height: 300px;
        font-size: 3rem;
    }
    
    .image-placeholder,
    .gallery-placeholder {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero-placeholder {
        height: 250px;
        font-size: 2.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
} 