
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #121212;
    color: white;
    line-height: 1.6;
}


header {
    background: #000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #ff8c00;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo { font-weight: bold; font-size: 1.5rem; letter-spacing: 2px; }
.logo span { color: #ff8c00; }

nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: 0.3s;
}

nav a:hover, nav a.active { color: #ff8c00; }


.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1508103861931-7582200455ec?w=1200');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 4px solid #ff8c00;
}

.hero-content h1 { font-size: 3rem; color: #ff8c00; margin-bottom: 10px; }


.container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}


.card {
    background: #1e1e1e;
    padding: 20px;
    border-left: 5px solid #ff8c00;
    transition: 0.3s;
}

.card:hover { transform: translateY(-5px); }

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 15px;
}


form { background: #1e1e1e; padding: 20px; border-radius: 5px; }

input, textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background: #2c2c2c;
    border: 1px solid #444;
    color: white;
}

button {
    background: #ff8c00;
    color: black;
    border: none;
    padding: 12px;
    width: 100%;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}

button:hover { background: #e67e00; }