/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BASE */
html, body {
    height: 100%;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: #ffffff;
    color: #000;
}

/* LAYOUT */
.container {
    min-height: 100vh;
    max-width: 1100px;
    margin: 0 auto;
    padding: 28px 24px 22px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* HEADER */
.header {
    margin-bottom: 26px;
}

.logo {
    width: 135px;
    height: auto;
    display: block;
}

.tagline {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.6px;
    color: #666;
    text-transform: uppercase;
}

/* PROJECTS GRID */
.projects {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 40px;
}

/* PROJECT */
.project {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.project:hover {
    opacity: 0.6;
}

.project h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}

/* DOMAIN */
.domain {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #999;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

/* DESCRIPTION */
.project p {
    font-size: 13.5px;
    line-height: 1.5;
    color: #555;
}

/* COMING SOON */
.project.coming {
    opacity: 0.45;
    cursor: default;
}

.project.coming:hover {
    opacity: 0.45;
}

/* FOOTER */
footer {
    font-size: 12px;
    color: #777;
    margin-top: 22px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .projects {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px;
    }
}

@media (max-width: 600px) {
    .projects {
        grid-template-columns: 1fr;
    }
}
