/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Arial", sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.6;
}

nav {
    background-color: #1a1a1a;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #d00101;
    font-size: 1.8rem;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #d00101;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column; /* Stack items vertically */
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

h1 {
    margin-bottom: 10px; /* Space between h1 and h2 */
    font-size: 2.5em; /* Example size for h1 */
}

h2 {
    margin-top: 0; /* Reset top margin if needed */
    font-size: 1.5em; /* Example size for h2 */
}



.hero h1 {
    font-size: 4rem;
    color: #d00101;
}

.hero p {
    font-size: 1.4rem;
    color: #e0e0e0;
    margin: 20px 0;
}

.hero .btn {
    padding: 12px 30px;
    background-color: #d00101;
    color: #121212;
    border: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
    font-weight: bold;
}

.hero .btn:hover {
    background-color: #d00101;
}

/* About Section */
.about {
    padding: 60px 20px;
    background-color: #1a1a1a;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    color: #d00101;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.2rem;
    color: #b3b3b3;
}

/* Tools/Projects Section */
.projects {
    padding: 60px 20px;
    background-color: #121212;
    text-align: center;
}

.projects h2 {
    font-size: 2.5rem;
    color: #d00101;
    margin-bottom: 20px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.project-card {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: scale(1.05);
}

.project-card h3 {
    color: #d00101;
    margin-top: 10px;
}

.project-card p {
    color: #b3b3b3;
}

footer {
    padding: 20px;
    background-color: #000;
    color: #999;
    text-align: center;
}


.footer h1 {
    color: #d00101;
    font-weight: 5;
}