@font-face {
    font-family: "Built Titling";
    src: url("fonts/BuiltTitling-rg.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Built Titling";
    src: url("fonts/BuiltTitling-bd.otf") format("opentype");
    font-weight: bold;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Built Titling", sans-serif;
    background: #111;
    color: #fff;
    line-height: 1.4;
}

header {
    text-align: center;
    padding: 15px 20px 10px;
}

header h1 {
    margin: 0;
    padding: 0;
    font-size: 2.5rem;
    letter-spacing: 3px;
    line-height: 0.8;
    font-weight: bold;
}

.tagline {
    margin-top: 8px;
    color: #bbb;
    font-size: 1rem;
    line-height: 1.2;
}

section {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 40px 0;
}

.about p {
    display: block;
    margin: 0 0 24px 0;
}

.about p:last-child {
    margin-bottom: 0;
}

h2 {
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.card {
    background: #1d1d1d;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
    display: block;
    color: #fff;
    text-decoration: none;
}

.card:visited {
    color: #fff;
    text-decoration: none;
}

.card:hover {
    transform: translateY(-6px);
    color: #fff;
    text-decoration: none;
}

.card:active {
    color: #fff;
    text-decoration: none;
}

.card img {
    width: 100%;
    display: block;
}

.card h3 {
    padding: 15px 20px 5px;
}

.card p {
    padding: 0 20px 20px;
    color: #ccc;
}

.cta {
    text-align: center;
}

.button {
    display: inline-block;
    padding: 14px 28px;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-weight: bold;
    border-radius: 40px;
    transition: 0.3s;
}
.social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-buttons .button {
    margin-top: 25px;
}

.button:hover {
    background: #d7d7d7;
}

footer {
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #333;
}

footer img {
    width: 100px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

footer a:hover {
    opacity: 0.8;
}
