/*
Theme Name: SSI Playground
Theme URI: https://example.com
Author: You
Description: Simple playground theme to learn WordPress
Version: 1.0
*/

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #0f172a;
    background: #f8fafc;
}

header {
    background: #0f172a;
    color: white;
    padding: 20px;
    text-align: center;
}

.hero {
    background-image: url("images/hero.jpg");
    background-size: cover;
    background-position: center;
    padding: 120px 20px;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
}

.section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}

.service img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

footer {
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: 80px;
}
