* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #222;
    line-height: 1.6;
}

h1, h2 {
    font-weight: 700;
}

section {
    padding: 80px 10%;
}

/* HERO */

.hero {
    height: 100vh;
    background: url('../images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: white;
}

.hero-content {
    max-width: 600px;
}

.signature {
    font-style: italic;
    font-size: 24px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    margin-bottom: 30px;
}

.scroll-btn {
    text-decoration: none;
    color: white;
    border-bottom: 2px solid white;
    padding-bottom: 5px;
}

/* PORTFOLIO */

.portfolio h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.portfolio span {
    color: #e63946;
}

.filters {
    margin-bottom: 30px;
}

.filters button {
    padding: 8px 16px;
    border: none;
    background: #eee;
    margin-right: 10px;
    cursor: pointer;
}

.filters button.active {
    background: black;
    color: white;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.item img {
    width: 100%;
    display: block;
}

/* AWARDS */

.awards {
    background: #111;
    color: white;
    display: flex;
    flex-wrap: wrap;
}

.awards-left {
    flex: 1;
    min-width: 300px;
    margin-bottom: 30px;
}

.awards-right {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.award {
    background: #222;
    padding: 30px;
    text-align: center;
}

/* CLIENTS */

.clients h2 {
    margin-bottom: 40px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.client {
    border: 1px solid #ddd;
    padding: 40px;
    text-align: center;
    font-weight: 600;
    background: #f9f9f9;
}

/* FOOTER */

footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: white;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    section {
        padding: 60px 5%;
    }
}
