@font-face {
    font-family: "0xProto";
    src: url("assets/font/0xProtoNerdFont-Regular.ttf") format("truetype");
}
html {
  scroll-behavior: smooth;
}
body {
    background-color: #111111;
    color: #ffffff;
    font-family: "0xProto", monospace;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.70);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

.brand {
    font-size: 1.9rem;
    font-weight: 700;
    color: #ff4444;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-right a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 10px;
    font-weight: 500;
    transition: 0.2s;
}

.nav-right a:hover {
    color: #ff4444;
}

/* ===== HERO ===== */

.hero {
    height: 100vh;

    background:
        linear-gradient(
            rgba(0,0,0,0.65),
            rgba(0,0,0,0.65)
        ),
        url("assets/newton-BG.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;

    padding-top: 60px;
}

.hero-content {
    max-width: 900px;
    padding: 20px;
}

.hero-content h1 {
    color: #ff4444;
    font-size: 5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 30px;
}

/* ===== CONTENT ===== */

.container {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}

h2 {
    font-size: 35px;
    margin-top: 50px;
    margin-bottom: 15px;
}

p {
    color: #cccccc;
    width: 70%;
    margin: auto;
    margin-bottom: 20px;
}

img {
    width: 400px;
    max-width: 90%;
    border: 2px solid #333;
    border-radius: 10px;
}
.links {
    margin-top: 20px;
}

.links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.links img {
    width: 24px;
    height: 24px;
    border: none;
}
hr {
    border: none;
    border-top: 1px solid #333;
    margin: 50px auto;
    width: 80%;
}
.previous-project {
    max-width: 600px;
    margin: 30px auto;
    padding: 25px;
    background-color: #181818;
    border: 1px solid #333;
    border-radius: 12px;
}

.previous-project img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.previous-project h3 {
    color: #ff4444;
    margin-bottom: 15px;
}
.award-text {
    color: #ff4444;
    font-weight: 700;
    margin-bottom: 15px;
}
/* ===== BUTTONS ===== */

a {
    display: inline-block;
    background-color: #ff4444;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 5px;
    font-weight: 500;
    transition: 0.2s;
}

a:hover {
    background-color: #cc3333;
}

.gallery {
    margin-top: 20px;
}

.gallery img {
    width: 280px;
    margin: 10px;
    border-radius: 10px;
}

i {
    margin-right: 8px;
}
.subtitle {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 5px;
}
.names {
    font-size: 1.1rem;
    color: #cccccc;
    font-style: italic;
    font-weight: bold;
    margin-bottom: 25px;
}
.down-arrow {
    margin-top: 35px;
    color: #ff4444;
    font-size: 1.5rem;
}
