/* Hi Class this is just a sample, feel free to edit as you wish */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f9f9f9;
    line-height: 1.6;
}

/* Header */
header {
    background: #222;
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
}

nav {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    font-size: 1.5em;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff9800;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #222, #555);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero .highlight {
    color: #ff9800;
}

.hero::hover {
    color: #ff9800;
}

.hero .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #ff9800;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.hero .btn:hover {
    background: #e68900
}

/* About Section */
.about {
    padding: 50px 20px;
    text-align: center;
}

/* Projects Section */
.projects {
    background: #eee;
    padding: 50px 20px;
    text-align: center;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.project-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.project-card:hover{
    /*transform: translateY(+10px)*/
    transform: scale(1.5);
}

/* Contact Section */
.contact {
    padding: 50px 20px;
    text-align: center;
}

.contact a {
    color: #ff9800;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 0.9em;
    margin-top: 20px;
}