/* Samples Page Styles */

.samples-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/samples-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.samples-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.samples-intro {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.samples-intro h2 {
    color: #333;
    margin-bottom: 20px;
}

.samples-intro p {
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.6;
    color: #555;
}

.samples-gallery {
    padding: 60px 0;
    background-color: #fff;
}

.sample-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sample-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.sample-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.sample-thumbnail {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    color: #999;
}

.placeholder-image i {
    font-size: 4rem;
}

.sample-info {
    padding: 20px;
}

.sample-info h3 {
    margin-bottom: 10px;
    color: #333;
    font-size: 1.2rem;
}

.sample-info p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.sample-button {
    display: inline-block;
    padding: 8px 20px;
    background-color: #4a6de5;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.sample-button:hover {
    background-color: #3a5bd5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sample-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .samples-hero {
        padding: 60px 0;
    }
    
    .samples-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .sample-grid {
        grid-template-columns: 1fr;
    }
    
    .samples-hero h1 {
        font-size: 2rem;
    }
}
