/* style.css - Shared styles for Grafix Promotion */

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://via.placeholder.com/1920x800?text=Creative+Graphics') center/cover no-repeat;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.specialties {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.specialties h2 {
    text-align: center;
    margin-bottom: 40px;
}

.card {
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

footer {
    background-color: #343a40;
    color: white;
}

.placeholder-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}