body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0e0e0e;
    color: #fff;
}

.section {
    padding: 80px 10%;
}

h1, h2 {
    letter-spacing: 2px;
}

.hero {
    height: 100vh;
    background: url("images/hero.jpg") center/cover no-repeat;
    position: relative;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.btn {
    margin-top: 20px;
    padding: 12px 28px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
}

.card {
    background: #161616;
    padding: 20px;
}

.image-card img {
    width: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
}

.gallery-grid img {
    width: 100%;
}

.footer {
    padding: 40px;
    text-align: center;
    background: #000;
}
