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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #141419;
    color: #DCDCDC;
}

/* Navbar Styles */
nav {
    background-color: #1414195f;
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: right;
}

nav ul li {
    margin: 0 7px;
}

nav ul li a {
    padding: 15px;
    color: #DCDCDC;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.5s;
    border-radius: 8px;
}

nav ul li a:hover {
    background-color:#191e28db;
    color: #966E50;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero img{
    padding-right: 20px;
    max-width: 25%;
    height: auto;
}

.hero-content {
    padding-left: 15px;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    color: #DCDCDC;
}

.hero .highlight {
    padding: 4px;
    border-radius: 8px;
    border: 2px solid #1E232D;
    background-color: #1E1E23;
    color: #DCDCDC;
}

.hero p {
    font-size: 1.5rem;
    margin-top: 20px;
}

 /* About Section */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 100px 0;
    height: 70vh;
    text-align: center;
    background-color: #141419;
}

.about h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.25rem;
    margin: 0 auto;
    width: 80%;
}

.about-grid {
    display: grid;
    justify-content: center;
}

.about-card {
    color: #DCDCDC;
    background-color: #1E1E23;
    padding-top: 20px;
    width: 300px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-card h3{
    font-size: 1.25rem;
    color: #966E50;
}

.about-grid2 {
    display: grid;
    justify-content: center;
    gap: 20px;
    padding-top: 15px;
}


/* Projects Section */
.projects {
    padding: 100px 0;
    height: 85vh;
    background-color: #141419;
    text-align: center;
}

.projects h2 {
    font-size: 2.5rem;
    margin-bottom: 35px;
}

.project-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.project-card {
    background-color: #1E1E23;
    padding: 20px;
    width: 300px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.project-card a{
    text-decoration: none;
    color: #DCDCDC;
}
.project-card a:hover{
    transition: 0.4s;
    text-decoration: underline;
    color: #966E50;
}

.project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.project-card img {
    max-width: 100%;
    height: auto;
}

/* Contact Section */
.contact {
    height: 50vh;
    padding: 100px 0;
    background-color: #141419;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    color: #DCDCDC;
}

.contact a:hover {
    color: #966E50;
    transition: 0.4s;
    text-decoration: underline;
}
