body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #0d0d0d;
    color: #ffffff;
}

.hero {
    background: url('banner.jpg') center/cover no-repeat;
    height: 100vh;
    position: relative;
}

.overlay {
    background: rgba(0,0,0,0.6);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.overlay h1 {
    font-size: 3rem;
    letter-spacing: 3px;
}

.overlay p {
    color: #c40000;
}

nav {
    background: #111;
    text-align: center;
    padding: 15px;
}

nav a {
    color: white;
    margin: 0 20px;
    text-decoration: none;
    font-weight: 600;
}

nav a:hover {
    color: #c40000;
}

.portfolio {
    padding: 60px 10%;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: #1a1a1a;
    overflow: hidden;
    transition: 0.3s;
}

.card img {
    width: 100%;
    display: block;
}

.card-content {
    padding: 20px;
}

.card a {
    color: #c40000;
    text-decoration: none;
}

.card:hover {
    transform: scale(1.03);
}

footer {
    text-align: center;
    padding: 30px;
    background: #111;
    font-size: 0.9rem;
}
/* ===== ARTICLE PAGE ===== */

.article-container {
    padding: 60px 15%;
}

.article-container h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.article-subtitle {
    color: #c40000;
    margin-bottom: 30px;
}

.article-hero {
    width: 100%;
    margin: 30px 0;
    border-radius: 4px;
}

.article-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ddd;
}

.article-content h2 {
    margin-top: 40px;
    color: #ffffff;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.gallery img {
    width: 100%;
    border-radius: 4px;
    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.03);
}
